| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986 |
- ##############################################
- #
- # fhem bridge to mqtt (see http://mqtt.org)
- #
- # Copyright (C) 2017 Stephan Eisler
- # Copyright (C) 2014 - 2016 Norbert Truchsess
- #
- # This file is part of fhem.
- #
- # Fhem is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 2 of the License, or
- # (at your option) any later version.
- #
- # Fhem is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with fhem. If not, see <http://www.gnu.org/licenses/>.
- #
- # $Id: 00_MQTT.pm 16252 2018-02-23 21:32:59Z eisler $
- #
- ##############################################
- my %sets = (
- "connect" => "",
- "disconnect" => "",
- "publish" => "",
- );
- my %gets = (
- "version" => ""
- );
- my @clients = qw(
- MQTT_DEVICE
- MQTT_BRIDGE
- );
- sub MQTT_Initialize($) {
- my $hash = shift @_;
- require "$main::attr{global}{modpath}/FHEM/DevIo.pm";
- # Provider
- $hash->{Clients} = join (':',@clients);
- $hash->{ReadyFn} = "MQTT::Ready";
- $hash->{ReadFn} = "MQTT::Read";
- # Consumer
- $hash->{DefFn} = "MQTT::Define";
- $hash->{UndefFn} = "MQTT::Undef";
- $hash->{DeleteFn} = "MQTT::Delete";
- $hash->{ShutdownFn} = "MQTT::Shutdown";
- $hash->{SetFn} = "MQTT::Set";
- $hash->{NotifyFn} = "MQTT::Notify";
- $hash->{AttrFn} = "MQTT::Attr";
- $hash->{AttrList} = "keep-alive "."last-will client-id "."on-connect on-disconnect on-timeout ".$main::readingFnAttributes;
- }
- package MQTT;
- use Exporter ('import');
- @EXPORT = ();
- @EXPORT_OK = qw(send_publish send_subscribe send_unsubscribe client_attr client_subscribe_topic client_unsubscribe_topic topic_to_regexp parseParams);
- %EXPORT_TAGS = (all => [@EXPORT_OK]);
- use strict;
- use warnings;
- use GPUtils qw(:all);
- use Net::MQTT::Constants;
- use Net::MQTT::Message;
- our %qos = map {qos_string($_) => $_} (MQTT_QOS_AT_MOST_ONCE,MQTT_QOS_AT_LEAST_ONCE,MQTT_QOS_EXACTLY_ONCE);
- BEGIN {GP_Import(qw(
- gettimeofday
- readingsSingleUpdate
- DevIo_OpenDev
- DevIo_SimpleWrite
- DevIo_SimpleRead
- DevIo_CloseDev
- RemoveInternalTimer
- InternalTimer
- AttrVal
- ReadingsVal
- Log3
- AssignIoPort
- getKeyValue
- setKeyValue
- CallFn
- defs
- modules
- looks_like_number
- fhem
- ))};
- sub Define($$) {
- my ( $hash, $def ) = @_;
- $hash->{NOTIFYDEV} = "global";
- $hash->{msgid} = 1;
- $hash->{timeout} = 60;
- $hash->{messages} = {};
- my ($host,$username,$password) = split("[ \t]+", $hash->{DEF});
- $hash->{DeviceName} = $host;
-
- my $name = $hash->{NAME};
- my $user = getKeyValue($name."_user");
- my $pass = getKeyValue($name."_pass");
- setKeyValue($name."_user",$username) unless(defined($user));
- setKeyValue($name."_pass",$password) unless(defined($pass));
- $hash->{DEF} = $host;
-
- #readingsSingleUpdate($hash,"connection","disconnected",0);
- if ($main::init_done) {
- return Start($hash);
- } else {
- return undef;
- }
- }
- sub Undef($) {
- my $hash = shift;
- Stop($hash);
- return undef;
- }
- sub Delete($$) {
- my ($hash, $name) = @_;
- setKeyValue($name."_user",undef);
- setKeyValue($name."_pass",undef);
- return undef;
- }
- sub Shutdown($) {
- my $hash = shift;
- Stop($hash);
- my $name = $hash->{NAME};
- Log3($name,1,"Shutdown executed");
- return undef;
- }
- sub onConnect($) {
- my $hash = shift;
- my $name = $hash->{NAME};
- my $cmdstr = AttrVal($name,"on-connect",undef);
- return process_event($hash,$cmdstr);
- }
- sub onDisconnect($) {
- my $hash = shift;
- my $name = $hash->{NAME};
- my $cmdstr = AttrVal($name,"on-disconnect",undef);
- return process_event($hash,$cmdstr);
- }
- sub onTimeout($) {
- my $hash = shift;
- my $name = $hash->{NAME};
- my $cmdstr = AttrVal($name,"on-timeout",undef);
- if($cmdstr) {
- return eval($cmdstr);
- }
- }
- sub process_event($$) {
- my $hash = shift;
- my $str = shift;
- my ($qos, $retain,$topic, $message, $cmd) = parsePublishCmdStr($str);
-
- my $do=1;
- if($cmd) {
- my $name = $hash->{NAME};
- $do=eval($cmd);
- $do=1 if (!defined($do));
- #no strict "refs";
- #my $ret = &{$hash->{WBCallback}}($hash);
- #use strict "refs";
- }
-
- if($do && defined($topic)) {
- $qos = MQTT_QOS_AT_MOST_ONCE unless defined($qos);
- send_publish($hash, topic => $topic, message => $message, qos => $qos, retain => $retain);
- }
- }
- sub Set($@) {
- my ($hash, @a) = @_;
- return "Need at least one parameters" if(@a < 2);
- return "Unknown argument $a[1], choose one of " . join(" ", sort keys %sets)
- if(!defined($sets{$a[1]}));
- my $command = $a[1];
- my $value = $a[2];
- COMMAND_HANDLER: {
- $command eq "connect" and do {
- Start($hash);
- last;
- };
- $command eq "disconnect" and do {
- Stop($hash);
- last;
- };
- $command eq "publish" and do {
- shift(@a);
- shift(@a);
- #if(scalar(@a)<2) {return "not enough parameters. usage: publish [qos [retain]] topic value";}
- #my $qos=0;
- #my $retain=0;
- #if(looks_like_number ($a[0])) {
- # $qos = int($a[0]);
- # $qos = 0 if $qos>1;
- # shift(@a);
- # if(looks_like_number ($a[0])) {
- # $retain = int($a[0]);
- # $retain = 0 if $retain>2;
- # shift(@a);
- # }
- #}
- #if(scalar(@a)<2) {return "missing parameters. usage: publish [qos [retain]] topic value";}
- #my $topic = shift(@a);
- #my $value = join (" ", @a);
-
- my ($qos, $retain,$topic, $value) = parsePublishCmd(@a);
- return "missing parameters. usage: publish [qos:?] [retain:?] topic value1 [value2]..." if(!$topic);
- return "wrong parameter. topic may nob be '#' or '+'" if ($topic eq '#' or $topic eq '+');
- $qos = MQTT_QOS_AT_MOST_ONCE unless defined($qos);
- my $msgid = send_publish($hash, topic => $topic, message => $value, qos => $qos, retain => $retain);
- last;
- }
- };
- }
- sub parseParams($;$$) {
- my ( $cmd, $separator, $joiner ) = @_;
- $separator = ' ' if ( !$separator );
- $joiner = $separator if ( !$joiner ); # needed if separator is a regexp
- my ( @a, %h );
- my @params;
- if ( ref($cmd) eq 'ARRAY' ) {
- @params = @{$cmd};
- }
- else {
- @params = split( $separator, $cmd );
- }
- while (@params) {
- my $param = shift(@params);
- next if ( $param eq "" );
- my ( $key, $value ) = split( ':', $param, 2 );
- if ( !defined($value) ) {
- $value = $key;
- $key = undef;
- # the key can not start with a { -> it must be a perl expression # vim:}
- }
- elsif ( $key =~ m/^\s*{/ ) { # for vim: }
- $value = $param;
- $key = undef;
- }
- #collect all parts until the closing ' or "
- while ( $param && $value =~ m/^('|")/ && $value !~ m/$1$/ ) {
- my $next = shift(@params);
- last if ( !defined($next) );
- $value .= $joiner . $next;
- }
- #remove matching ' or " from the start and end
- if ( $value =~ m/^('|")/ && $value =~ m/$1$/ ) {
- $value =~ s/^.(.*).$/$1/;
- }
- #collect all parts until opening { and closing } are matched
- if ( $value =~ m/^\s*{/ ) { # } for match
- my $count = 0;
- for my $i ( 0 .. length($value) - 1 ) {
- my $c = substr( $value, $i, 1 );
- ++$count if ( $c eq '{' );
- --$count if ( $c eq '}' );
- }
- while ( $param && $count != 0 ) {
- my $next = shift(@params);
- last if ( !defined($next) );
- $value .= $joiner . $next;
- for my $i ( 0 .. length($next) - 1 ) {
- my $c = substr( $next, $i, 1 );
- ++$count if ( $c eq '{' );
- --$count if ( $c eq '}' );
- }
- }
- }
- if ( defined($key) ) {
- $h{$key} = $value;
- }
- else {
- push @a, $value;
- }
- }
- return ( \@a, \%h );
- }
- sub parsePublishCmdStr($) {
- my ($str) = @_;
- if(defined($str) && $str=~m/\s*(?:({.*})\s+)?(.*)/) {
- my $exp = $1;
- my $rest = $2;
- if ($rest){
- my @lwa = split("[ \t]+",$rest);
- unshift (@lwa,$exp) if($exp);
- return parsePublishCmd(@lwa);
- }
- }
- return undef;
- }
- sub parsePublishCmd(@) {
- my @a = @_;
- my ( $aa, $bb ) = parseParams(\@a);
- my $qos = 0;
- my $retain = 0;
- my $topic = undef;
- my $value = "\0";
- my $expression = undef;
- if ( exists( $bb->{'qos'} ) ) {
- $qos = $bb->{'qos'};
- }
- if ( exists $bb->{'retain'} ) {
- $retain = $bb->{'retain'};
- }
- my @aaa = ();
- my @xaa = @{$aa};
- while ( scalar(@xaa) > 0 ) {
- my $av = shift @xaa;
- if ( $av =~ /\{.*\}/ ) {
- $expression = $av;
- next;
- }
- else {
- push @aaa, $av;
- }
- }
- $topic = shift(@aaa);
- if ( scalar(@aaa) > 0 ) {
- $value = join( " ", @aaa );
- }
- return undef unless $topic || $expression;
- return ( $qos, $retain, $topic, $value, $expression );
- }
- sub Notify($$) {
- my ($hash,$dev) = @_;
- if( grep(m/^(INITIALIZED|REREADCFG)$/, @{$dev->{CHANGED}}) ) {
- Start($hash);
- } elsif( grep(m/^SAVE$/, @{$dev->{CHANGED}}) ) {
- }
- }
- sub Attr($$$$) {
- my ($command,$name,$attribute,$value) = @_;
- my $hash = $main::defs{$name};
- ATTRIBUTE_HANDLER: {
- $attribute eq "keep-alive" and do {
- if ($command eq "set") {
- $hash->{timeout} = $value;
- } else {
- $hash->{timeout} = 60;
- }
- if ($main::init_done) {
- $hash->{ping_received}=1;
- Timer($hash);
- };
- last;
- };
- $attribute eq "last-will" and do {
- if($hash->{STATE} ne "disconnected") {
- Stop($hash);
- InternalTimer(gettimeofday()+1, "MQTT::Start", $hash, 0);
- }
- last;
- };
- };
- }
- #sub Reconnect($){
- # my $hash = shift;
- # Stop($hash);
- # Start($hash);
- #}
- sub Start($) {
- my $hash = shift;
- my $firsttime = $hash->{".cinitmark"};
-
- if(defined($firsttime)) {
- my $cstate=ReadingsVal($hash->{NAME},"connection","");
- if($cstate ne "disconnected" && $cstate ne "timed-out") {
- return undef;
- }
- } else {
- $hash->{".cinitmark"} = 1;
- }
-
- DevIo_CloseDev($hash);
- return DevIo_OpenDev($hash, 0, "MQTT::Init");
- }
- sub Stop($) {
- my $hash = shift;
-
- my $cstate=ReadingsVal($hash->{NAME},"connection","");
- if($cstate eq "disconnected" || $cstate eq "timed-out") {
- return undef;
- }
-
- send_disconnect($hash);
- DevIo_CloseDev($hash);
- RemoveInternalTimer($hash);
- readingsSingleUpdate($hash,"connection","disconnected",1);
- }
- sub Ready($) {
- my $hash = shift;
- return DevIo_OpenDev($hash, 1, "MQTT::Init") if($hash->{STATE} eq "disconnected");
- }
- sub Rename() {
- my ($new,$old) = @_;
- setKeyValue($new."_user",getKeyValue($old."_user"));
- setKeyValue($new."_pass",getKeyValue($old."_pass"));
-
- setKeyValue($old."_user",undef);
- setKeyValue($old."_pass",undef);
- return undef;
- }
- sub Init($) {
- my $hash = shift;
- send_connect($hash);
- readingsSingleUpdate($hash,"connection","connecting",1);
- $hash->{ping_received}=1;
- Timer($hash);
- return undef;
- }
- sub Timer($) {
- my $hash = shift;
- RemoveInternalTimer($hash);
- unless ($hash->{ping_received}) {
- onTimeout($hash);
- readingsSingleUpdate($hash,"connection","timed-out",1) ;#unless $hash->{ping_received};
- }
- $hash->{ping_received} = 0;
- InternalTimer(gettimeofday()+$hash->{timeout}, "MQTT::Timer", $hash, 0);
- send_ping($hash);
- }
- sub Read {
- my ($hash) = @_;
- my $name = $hash->{NAME};
- my $buf = DevIo_SimpleRead($hash);
- return undef unless $buf;
- $hash->{buf} .= $buf;
- while (my $mqtt = Net::MQTT::Message->new_from_bytes($hash->{buf},1)) {
- my $message_type = $mqtt->message_type();
- Log3($name,5,"MQTT $name message received: ".$mqtt->string());
- MESSAGE_TYPE: {
- $message_type == MQTT_CONNACK and do {
- readingsSingleUpdate($hash,"connection","connected",1);
- onConnect($hash);
- GP_ForallClients($hash,\&client_start);
- foreach my $message_id (keys %{$hash->{messages}}) {
- my $msg = $hash->{messages}->{$message_id}->{message};
- $msg->{dup} = 1;
- DevIo_SimpleWrite($hash,$msg->bytes,undef);
- }
- last;
- };
- $message_type == MQTT_PUBLISH and do {
- my $topic = $mqtt->topic();
- GP_ForallClients($hash,sub {
- my $client = shift;
- Log3($client->{NAME},5,"publish received for $topic, ".$mqtt->message());
- if (grep { $topic =~ $_ } @{$client->{subscribeExpr}}) {
- readingsSingleUpdate($client,"transmission-state","incoming publish received",1);
- my $fn = $modules{$defs{$client->{NAME}}{TYPE}}{OnMessageFn};
- if($fn) {
- CallFn($client->{NAME},"OnMessageFn",($client,$topic,$mqtt->message()))
- } elsif ($client->{TYPE} eq "MQTT_DEVICE") {
- MQTT::DEVICE::onmessage($client,$topic,$mqtt->message());
- } elsif ($client->{TYPE} eq "MQTT_BRIDGE") {
- MQTT::BRIDGE::onmessage($client,$topic,$mqtt->message());
- } else {
- Log3($client->{NAME},1,"unexpected client or no OnMessageFn defined: ".$client->{TYPE});
- }
- };
- },undef);
- if (my $qos = $mqtt->qos() > MQTT_QOS_AT_MOST_ONCE) {
- my $message_id = $mqtt->message_id();
- if ($qos == MQTT_QOS_AT_LEAST_ONCE) {
- send_message($hash, message_type => MQTT_PUBACK, message_id => $message_id);
- } else {
- send_message($hash, message_type => MQTT_PUBREC, message_id => $message_id);
- }
- }
- last;
- };
- $message_type == MQTT_PUBACK and do {
- my $message_id = $mqtt->message_id();
- GP_ForallClients($hash,sub {
- my $client = shift;
- if ($client->{message_ids}->{$message_id}) {
- readingsSingleUpdate($client,"transmission-state","outgoing publish acknowledged",1);
- delete $client->{message_ids}->{$message_id};
- };
- },undef);
- delete $hash->{messages}->{$message_id}; #QoS Level 1: at_least_once handling
- last;
- };
- $message_type == MQTT_PUBREC and do {
- my $message_id = $mqtt->message_id();
- GP_ForallClients($hash,sub {
- my $client = shift;
- if ($client->{message_ids}->{$message_id}) {
- readingsSingleUpdate($client,"transmission-state","outgoing publish received",1);
- };
- },undef);
- send_message($hash, message_type => MQTT_PUBREL, message_id => $message_id); #QoS Level 2: exactly_once handling
- last;
- };
- $message_type == MQTT_PUBREL and do {
- my $message_id = $mqtt->message_id();
- GP_ForallClients($hash,sub {
- my $client = shift;
- if ($client->{message_ids}->{$message_id}) {
- readingsSingleUpdate($client,"transmission-state","incoming publish released",1);
- delete $client->{message_ids}->{$message_id};
- };
- },undef);
- send_message($hash, message_type => MQTT_PUBCOMP, message_id => $message_id); #QoS Level 2: exactly_once handling
- delete $hash->{messages}->{$message_id};
- last;
- };
- $message_type == MQTT_PUBCOMP and do {
- my $message_id = $mqtt->message_id();
- GP_ForallClients($hash,sub {
- my $client = shift;
- if ($client->{message_ids}->{$message_id}) {
- readingsSingleUpdate($client,"transmission-state","outgoing publish completed",1);
- delete $client->{message_ids}->{$message_id};
- };
- },undef);
- delete $hash->{messages}->{$message_id}; #QoS Level 2: exactly_once handling
- last;
- };
- $message_type == MQTT_SUBACK and do {
- my $message_id = $mqtt->message_id();
- GP_ForallClients($hash,sub {
- my $client = shift;
- if ($client->{message_ids}->{$message_id}) {
- readingsSingleUpdate($client,"transmission-state","subscription acknowledged",1);
- delete $client->{message_ids}->{$message_id};
- };
- },undef);
- delete $hash->{messages}->{$message_id}; #QoS Level 1: at_least_once handling
- last;
- };
- $message_type == MQTT_UNSUBACK and do {
- my $message_id = $mqtt->message_id();
- GP_ForallClients($hash,sub {
- my $client = shift;
- if ($client->{message_ids}->{$message_id}) {
- readingsSingleUpdate($client,"transmission-state","unsubscription acknowledged",1);
- delete $client->{message_ids}->{$message_id};
- };
- },undef);
- delete $hash->{messages}->{$message_id}; #QoS Level 1: at_least_once handling
- last;
- };
- $message_type == MQTT_PINGRESP and do {
- $hash->{ping_received} = 1;
- readingsSingleUpdate($hash,"connection","active",1);
- last;
- };
- Log3($hash->{NAME},4,"MQTT::Read '$hash->{NAME}' unexpected message type '".message_type_string($message_type)."'");
- }
- }
- return undef;
- };
- sub send_connect($) {
- my $hash = shift;
- my $name = $hash->{NAME};
- my $user = getKeyValue($name."_user");
- my $pass = getKeyValue($name."_pass");
-
- my $lw = AttrVal($name,"last-will",undef);
- my $clientId = AttrVal($name,"client-id",undef);
- my ($willqos, $willretain,$willtopic, $willmessage) = parsePublishCmdStr($lw);
-
- return send_message($hash, message_type => MQTT_CONNECT, keep_alive_timer => $hash->{timeout}, user_name => $user, password => $pass, client_id=>$clientId, will_topic => $willtopic, will_message => $willmessage, will_retain => $willretain, will_qos => $willqos);
- };
- sub send_publish($@) {
- my ($hash,%msg) = @_;
- if ($msg{qos} == MQTT_QOS_AT_MOST_ONCE) {
- send_message(shift, message_type => MQTT_PUBLISH, %msg);
- return undef;
- } else {
- my $msgid = $hash->{msgid}++;
- send_message(shift, message_type => MQTT_PUBLISH, message_id => $msgid, %msg);
- return $msgid;
- }
- };
- sub send_subscribe($@) {
- my $hash = shift;
- my $msgid = $hash->{msgid}++;
- send_message($hash, message_type => MQTT_SUBSCRIBE, message_id => $msgid, qos => MQTT_QOS_AT_LEAST_ONCE, @_);
- return $msgid;
- };
- sub send_unsubscribe($@) {
- my $hash = shift;
- my $msgid = $hash->{msgid}++;
- send_message($hash, message_type => MQTT_UNSUBSCRIBE, message_id => $msgid, qos => MQTT_QOS_AT_LEAST_ONCE, @_);
- return $msgid;
- };
- sub send_ping($) {
- return send_message(shift, message_type => MQTT_PINGREQ);
- };
- sub send_disconnect($) {
- my $hash = shift;
- onDisconnect($hash);
- return send_message($hash, message_type => MQTT_DISCONNECT);
- };
- sub send_message($$$@) {
- my ($hash,%msg) = @_;
- my $name = $hash->{NAME};
- my $message = Net::MQTT::Message->new(%msg);
- Log3($name,5,"MQTT $name message sent: ".$message->string());
- if (defined $msg{message_id}) {
- $hash->{messages}->{$msg{message_id}} = {
- message => $message,
- timeout => gettimeofday()+$hash->{timeout},
- };
- }
-
- DevIo_SimpleWrite($hash,$message->bytes,undef);
- };
- sub topic_to_regexp($) {
- my $t = shift;
- $t =~ s|#$|.\*|;
- $t =~ s|\/\.\*$|.\*|;
- $t =~ s|\/|\\\/|g;
- $t =~ s|(\+)([^+]*$)|(+)$2|;
- $t =~ s|\+|[^\/]+|g;
- return "^$t\$";
- }
- sub client_subscribe_topic($$;$$) {
- my ($client,$topic,$qos,$retain) = @_;
- push @{$client->{subscribe}},$topic unless grep {$_ eq $topic} @{$client->{subscribe}};
- my $expr = topic_to_regexp($topic);
- push @{$client->{subscribeExpr}},$expr unless grep {$_ eq $expr} @{$client->{subscribeExpr}};
- if ($main::init_done) {
- if (my $mqtt = $client->{IODev}) {;
- $qos = $client->{".qos"}->{"*"} unless defined $qos; # MQTT_QOS_AT_MOST_ONCE
- $retain = 0 unless defined $retain; # not supported yet
- my $msgid = send_subscribe($mqtt,
- topics => [[$topic => $qos || MQTT_QOS_AT_MOST_ONCE]],
- );
- $client->{message_ids}->{$msgid}++;
- readingsSingleUpdate($client,"transmission-state","subscribe sent",1)
- }
- }
- };
- sub client_unsubscribe_topic($$) {
- my ($client,$topic) = @_;
- $client->{subscribe} = [grep { $_ ne $topic } @{$client->{subscribe}}];
- my $expr = topic_to_regexp($topic);
- $client->{subscribeExpr} = [grep { $_ ne $expr} @{$client->{subscribeExpr}}];
- if ($main::init_done) {
- if (my $mqtt = $client->{IODev}) {;
- my $msgid = send_unsubscribe($mqtt,
- topics => [$topic],
- );
- $client->{message_ids}->{$msgid}++;
- readingsSingleUpdate($client,"transmission-state","unsubscribe sent",1)
- }
- }
- };
- sub Client_Define($$) {
- my ( $client, $def ) = @_;
- $client->{NOTIFYDEV} = $client->{DEF} if $client->{DEF};
- #$client->{qos} = MQTT_QOS_AT_MOST_ONCE; ### ALT
- $client->{".qos"}->{'*'} = 0;
- $client->{".retain"}->{'*'} = "0";
- $client->{subscribe} = [];
- $client->{subscribeExpr} = [];
- AssignIoPort($client);
- if ($main::init_done) {
- return client_start($client);
- } else {
- return undef;
- }
- };
- sub Client_Undefine($) {
- client_stop(shift);
- return undef;
- };
- #use Data::Dumper;
- sub client_attr($$$$$) {
- my ($client,$command,$name,$attribute,$value) = @_;
- ATTRIBUTE_HANDLER: {
- $attribute eq "qos" and do {
- #if ($command eq "set") {
- # $client->{qos} = $MQTT::qos{$value}; ### ALT
- #} else {
- # $client->{qos} = MQTT_QOS_AT_MOST_ONCE; ### ALT
- #}
-
- delete($client->{".qos"});
-
- if ($command ne "set") {
- delete($client->{".qos"});
- $client->{".qos"}->{"*"} = "0";
- } else {
-
- my @values = ();
- if(!defined($value) || $value=~/^[ \t]*$/) {
- return "QOS value may not be empty. Format: [<reading>|*:]0|1|2";
- }
- @values = split("[ \t]+",$value);
-
- foreach my $set (@values) {
- my($rname,$rvalue) = split(":",$set);
- if(!defined($rvalue)) {
- $rvalue=$rname;
- $rname="";
- $rname="*" if (scalar(@values)==1); # backward compatibility: single value without a reading name should be applied to all
- }
- #if ($command eq "set") {
- # Map constants
- #$rvalue = MQTT_QOS_AT_MOST_ONCE if($rvalue eq qos_string(MQTT_QOS_AT_MOST_ONCE));
- #$rvalue = MQTT_QOS_AT_LEAST_ONCE if($rvalue eq qos_string(MQTT_QOS_AT_LEAST_ONCE));
- #$rvalue = MQTT_QOS_EXACTLY_ONCE if($rvalue eq qos_string(MQTT_QOS_EXACTLY_ONCE));
- $rvalue=$MQTT::qos{$rvalue} if(defined($MQTT::qos{$rvalue}));
- if($rvalue ne "0" && $rvalue ne "1" && $rvalue ne "2") {
- return "unexpected QOS value $rvalue. use 0, 1 or 2. Constants may be also used (".MQTT_QOS_AT_MOST_ONCE."=".qos_string(MQTT_QOS_AT_MOST_ONCE).", ".MQTT_QOS_AT_LEAST_ONCE."=".qos_string(MQTT_QOS_AT_LEAST_ONCE).", ".MQTT_QOS_EXACTLY_ONCE."=".qos_string(MQTT_QOS_EXACTLY_ONCE)."). Format: [<reading>|*:]0|1|2";
- }
- #$rvalue="1" unless ($rvalue eq "0");
- $client->{".qos"}->{$rname} = $rvalue;
- #} else {
- # delete($client->{".qos"}->{$rname});
- # $client->{".qos"}->{"*"} = "0" if($rname eq "*");
- #}
- }
- }
-
- my $showqos = "";
- if(defined($client->{".qos"})) {
- foreach my $rname (sort keys %{$client->{".qos"}}) {
- my $rvalue = $client->{".qos"}->{$rname};
- $rname="[state]" if ($rname eq "");
- $showqos.=$rname.':'.$rvalue.' ';
- }
- }
- $client->{"qos"} = $showqos;
- last;
- };
- $attribute eq "retain" and do {
- delete($client->{".retain"});
-
- if ($command ne "set") {
- delete($client->{".retain"});
- $client->{".retain"}->{"*"} = "0";
- } else {
- my @values = ();
- if(!defined($value) || $value=~/^[ \t]*$/) {
- return "retain value may not be empty. Format: [<reading>|*:]0|1";
- }
- @values = split("[ \t]+",$value);
-
- foreach my $set (@values) {
- my($rname,$rvalue) = split(":",$set);
- if(!defined($rvalue)) {
- $rvalue=$rname;
- $rname="";
- $rname="*" if (scalar(@values)==1); # backward compatibility: single value without a reading name should be applied to all
- }
- if($rvalue ne "0" && $rvalue ne "1") {
- return "unexpected retain value. use 0 or 1. Format: [<reading>|*:]0|1";
- }
- $client->{".retain"}->{$rname} = $rvalue;
- }
- }
-
- my $showretain = "";
- if(defined($client->{".retain"})) {
- foreach my $rname (sort keys %{$client->{".retain"}}) {
- my $rvalue = $client->{".retain"}->{$rname};
- $rname="[state]" if ($rname eq "");
- $showretain.=$rname.':'.$rvalue.' ';
- }
- }
- $client->{"retain"} = $showretain;
- last;
- };
- $attribute eq "IODev" and do {
- if ($main::init_done) {
- if ($command eq "set") {
- client_stop($client);
- $main::attr{$name}{IODev} = $value;
- client_start($client);
- } else {
- client_stop($client);
- }
- }
- last;
- };
- }
- };
- sub client_start($) {
- my $client = shift;
- my $name = $client->{NAME};
- if (! (defined AttrVal($name,"stateFormat",undef))) {
- $main::attr{$name}{stateFormat} = "transmission-state";
- }
- if (@{$client->{subscribe}}) {
- my $msgid = send_subscribe($client->{IODev},
- topics => [map { [$_ => $client->{".qos"}->{$_} || MQTT_QOS_AT_MOST_ONCE] } @{$client->{subscribe}}],
- );
- $client->{message_ids}->{$msgid}++;
- readingsSingleUpdate($client,"transmission-state","subscribe sent",1);
- }
-
- return undef;
- };
- sub client_stop($) {
- my $client = shift;
- if (@{$client->{subscribe}}) {
- my $msgid = send_unsubscribe($client->{IODev},
- topics => [@{$client->{subscribe}}],
- );
- $client->{message_ids}->{$msgid}++;
- readingsSingleUpdate($client,"transmission-state","unsubscribe sent",1);
- }
- };
- 1;
- =pod
- =item [device]
- =item summary connects fhem to MQTT
- =begin html
- <a name="MQTT"></a>
- <h3>MQTT</h3>
- <ul>
- <p>connects fhem to <a href="http://mqtt.org">mqtt</a>.</p>
- <p>A single MQTT device can serve multiple <a href="#MQTT_DEVICE">MQTT_DEVICE</a> and <a href="#MQTT_BRIDGE">MQTT_BRIDGE</a> clients.<br/>
- Each <a href="#MQTT_DEVICE">MQTT_DEVICE</a> acts as a bridge in between an fhem-device and mqtt.<br/>
- Note: this module is based on <a href="https://metacpan.org/pod/distribution/Net-MQTT/lib/Net/MQTT.pod">Net::MQTT</a> which needs to be installed from CPAN first.</p>
- <a name="MQTTdefine"></a>
- <p><b>Define</b></p>
- <ul>
- <p><code>define <name> MQTT <ip:port> [<username>] [<password>]</code></p>
- <p>Specifies the MQTT device.</p>
- </ul>
- <a name="MQTTset"></a>
- <p><b>Set</b></p>
- <ul>
- <li>
- <p><code>set <name> connect</code><br/>
- (re-)connects the MQTT-device to the mqtt-broker</p>
- </li>
- <li>
- <p><code>set <name> disconnect</code><br/>
- disconnects the MQTT-device from the mqtt-broker</p>
- </li>
- <li>
- <p><code>set <name> publish [qos:?] [retain:?] <topic> <message></code><br/>
- sends message to the specified topic</p>
- </li>
- </ul>
- <a name="MQTTattr"></a>
- <p><b>Attributes</b></p>
- <ul>
- <li>
- <p>keep-alive<br/>
- sets the keep-alive time (in seconds).</p>
- </li>
- <li>
- <p><code>attr <name> last-will [qos:?] [retain:?] <topic> <message></code><br/>
- Support for MQTT feature "last will"
- </p>
- <p>example:<br/>
- <code>attr mqtt last-will /fhem/status crashed</code>
- </p>
- </li>
- <li>
- <p><code>attr <name> client-id client id</code><br/>
- redefines client id
- </p>
- <p>example:<br/>
- <code>attr mqtt client-id fhem1234567</code>
- </p>
- </li>
- <li>
- <p>on-connect, on-disconnect<br/>
- <code>attr <name> on-connect {Perl-expression} <topic> <message></code><br/>
- Publish the specified message to a topic at connect / disconnect (counterpart to lastwill) and / or evaluation of Perl expression<br/>
- If a Perl expression is provided, the message is sent only if expression returns true (for example, 1) or undef.<br/>
- The following variables are passed to the expression at evaluation: $hash, $name, $qos, $retain, $topic, $message.
- </p>
- <p>examples:<br/>
- <code>attr mqtt on-connect /topic/status connected</code><br/>
- <code>attr mqtt on-connect {Log3("abc",1,"on-connect")} /fhem/status connected</code>
- </p>
- </li>
- <li>
- <p>on-timeout<br/>
- <code>attr <name> on-timeout {Perl-expression}</code>
- evaluate the given Perl expression on timeout<br/>
- </p>
- </li>
- </ul>
- </ul>
- =end html
- =cut
|