| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- ##############################################
- #
- # fhem bridge to mqtt (see http://mqtt.org)
- #
- # Copyright (C) 2018 Alexander Schulz
- # 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: 10_MQTT_DEVICE.pm 17362 2018-09-17 12:57:29Z hexenmeister $
- #
- ##############################################
- use strict;
- use warnings;
- my %gets = (
- "version" => "",
- );
- sub MQTT_DEVICE_Initialize($) {
- my $hash = shift @_;
- require "$main::attr{global}{modpath}/FHEM/00_MQTT.pm";
- # Consumer
- $hash->{DefFn} = "MQTT::DEVICE::Define";
- $hash->{UndefFn} = "MQTT::Client_Undefine";
- $hash->{SetFn} = "MQTT::DEVICE::Set";
- $hash->{AttrFn} = "MQTT::DEVICE::Attr";
-
- #$hash->{OnMessageFn} = "MQTT::DEVICE::onmessage";
-
- $hash->{AttrList} =
- "IODev ".
- #"qos:".join(",",keys %MQTT::qos)." ".
- "qos ".
- "retain ".
- "publishSet ".
- "publishSet_.* ".
- "subscribeReading_.* ".
- "autoSubscribeReadings ".
- "useSetExtensions:1,0 ".
- $main::readingFnAttributes;
-
- main::LoadModule("MQTT");
- }
- package MQTT::DEVICE;
- use strict;
- use warnings;
- use GPUtils qw(:all);
- use Net::MQTT::Constants;
- use SetExtensions qw/ :all /;
- BEGIN {
- MQTT->import(qw(:all));
- GP_Import(qw(
- CommandDeleteReading
- CommandAttr
- readingsSingleUpdate
- Log3
- SetExtensions
- SetExtensionsCancel
- fhem
- defs
- AttrVal
- ReadingsVal
- ))
- };
- sub Define() {
- my ( $hash, $def ) = @_;
- $hash->{sets} = {};
- return MQTT::Client_Define($hash,$def);
- };
- sub Set($$$@) {
- my ($hash,$name,$command,@values) = @_;
- return "Need at least one parameters" unless defined $command;
- my $msgid;
- my $mark=0;
- if (AttrVal($name,"useSetExtensions",undef)) {
- if ($command =~ m/^(blink|intervals|(off-|on-)(for-timer|till(-overnight)?))(.+)?|toggle$/) {
- Log3($hash->{NAME},5,"calling SetExtensions(...) for $command");
- return SetExtensions($hash, join(" ", map {$hash->{sets}->{$_} eq "" ? $_ : "$_:".$hash->{sets}->{$_}} sort keys %{$hash->{sets}}), $name, $command, @values);
- }
- }
- if($command ne '?') {
- if(defined($hash->{publishSets}->{$command})) {
- my $value = join " ",@values;
- my $retain = $hash->{".retain"}->{$command};
- $retain = $hash->{".retain"}->{'*'} unless defined($retain);
- my $qos = $hash->{".qos"}->{$command};
- $qos = $hash->{".qos"}->{'*'} unless defined($qos);
- #Log3($hash->{NAME},1,">>>>>>>>>>>>>>>>>> RETAIN: ".$retain); $retain=0; ### TEST
- $msgid = send_publish($hash->{IODev}, topic => $hash->{publishSets}->{$command}->{topic}, message => $value, qos => $qos, retain => $retain);
- readingsSingleUpdate($hash,$command,$value,1);
- $mark=1;
- } elsif(defined($hash->{publishSets}->{""})) {
- my $value = join (" ", ($command, @values));
- my $retain = $hash->{".retain"}->{""};
- $retain = $hash->{".retain"}->{'*'} unless defined($retain);
- my $qos = $hash->{".qos"}->{""};
- $qos = $hash->{".qos"}->{'*'} unless defined($qos);
- #Log3($hash->{NAME},1,">>>>>>>>>>>>>>>>>> RETAIN: ".$retain); $retain=0; ### TEST
- $msgid = send_publish($hash->{IODev}, topic => $hash->{publishSets}->{""}->{topic}, message => $value, qos => $qos, retain => $retain);
- readingsSingleUpdate($hash,"state",$command,1);
- $mark=1;
- }
- }
- if(!$mark) {
- if(AttrVal($name,"useSetExtensions",undef)) {
- return SetExtensions($hash, join(" ", map {$hash->{sets}->{$_} eq "" ? $_ : "$_:".$hash->{sets}->{$_}} sort keys %{$hash->{sets}}), $name, $command, @values);
- } else {
- return "Unknown argument $command, choose one of " . join(" ", map {$hash->{sets}->{$_} eq "" ? $_ : "$_:".$hash->{sets}->{$_}} sort keys %{$hash->{sets}})
- }
- }
- SetExtensionsCancel($hash);
- $hash->{message_ids}->{$msgid}++ if defined $msgid;
- readingsSingleUpdate($hash,"transmission-state","outgoing publish sent",1);
- return undef;
- }
- sub Attr($$$$) {
- my ($command,$name,$attribute,$value) = @_;
- my $hash = $main::defs{$name};
- ATTRIBUTE_HANDLER: {
- $attribute =~ /^subscribeReading_(.+)/ and do {
- if ($command eq "set") {
- my ($mqos, $mretain,$mtopic, $mvalue, $mcmd)=MQTT::parsePublishCmdStr($value);
- if(!defined($mtopic)) {return "topic may not be empty";}
- unless (defined $hash->{subscribeReadings}->{$mtopic}->{name} and $hash->{subscribeReadings}->{$mtopic}->{name} eq $1) {
- unless (defined $hash->{subscribeReadings}->{$mtopic}->{name}) {
- client_subscribe_topic($hash,$mtopic,$mqos,$mretain);
- }
- $hash->{subscribeReadings}->{$mtopic}->{name} = $1;
- $hash->{subscribeReadings}->{$mtopic}->{cmd} = $mcmd;
- }
- } else {
- foreach my $topic (keys %{$hash->{subscribeReadings}}) {
- if ($hash->{subscribeReadings}->{$topic}->{name} eq $1) {
- client_unsubscribe_topic($hash,$topic);
- delete $hash->{subscribeReadings}->{$topic};
- CommandDeleteReading(undef,"$hash->{NAME} $1");
- last;
- }
- }
- }
- last;
- };
- $attribute eq "autoSubscribeReadings" and do {
- if ($command eq "set") {
- unless (defined $hash->{'.autoSubscribeTopic'} and $hash->{'.autoSubscribeTopic'} eq $value) {
- if (defined $hash->{'.autoSubscribeTopic'}) {
- client_unsubscribe_topic($hash,$hash->{'.autoSubscribeTopic'});
- }
- $hash->{'.autoSubscribeTopic'} = $value;
- $hash->{'.autoSubscribeExpr'} = topic_to_regexp($value);
- client_subscribe_topic($hash,$value);
- }
- } else {
- if (defined $hash->{'.autoSubscribeTopic'}) {
- client_unsubscribe_topic($hash,$hash->{'.autoSubscribeTopic'});
- delete $hash->{'.autoSubscribeTopic'};
- delete $hash->{'.autoSubscribeExpr'};
- }
- }
- last;
- };
- $attribute =~ /^publishSet(_?)(.*)/ and do {
- if ($command eq "set") {
- my ( $aa, $bb ) = parseParams($value,undef,undef,undef,{});
- my @values = @{$aa};
- my $topic = pop @values;
- $hash->{publishSets}->{$2} = {
- 'values' => \@values,
- topic => $topic,
- };
- if ($2 eq "") {
- if(@values) {
- foreach my $set (@values) {
- $hash->{sets}->{$set}="";
- my($setname,@restvalues) = split(":",$set);
- if(@restvalues) {
- $hash->{publishSets}->{$setname} = {
- 'values' => \@restvalues,
- topic => $topic,
- };
- }
- }
- } else {
- $hash->{sets}->{""}="";
- }
- } else {
- $hash->{sets}->{$2}=join(",",@values);
- }
- } else {
- if ($2 eq "") {
- foreach my $set (@{$hash->{publishSets}->{$2}->{'values'}}) {
- delete $hash->{sets}->{$set};
- }
- } else {
- CommandDeleteReading(undef,"$hash->{NAME} $2");
- delete $hash->{sets}->{$2};
- }
- delete $hash->{publishSets}->{$2};
- }
- last;
- };
- return client_attr($hash,$command,$name,$attribute,$value);
- }
- }
- sub onmessage($$$) {
- my ($hash,$topic,$message) = @_;
- if (defined (my $reading = $hash->{subscribeReadings}->{$topic}->{name})) {
- my $do=1;
- if(defined (my $cmd = $hash->{subscribeReadings}->{$topic}->{cmd})) {
- Log3($hash->{NAME},5,"evaluating cmd: $cmd");
- my $name = $hash->{NAME};
- $do=eval($cmd);
- Log3($hash->{NAME},1,"ERROR evaluating $cmd: $@") if($@);
- $do=1 if (!defined($do));
- }
- if($do) {
- Log3($hash->{NAME},5,"calling readingsSingleUpdate($hash->{NAME},$reading,$message,1)");
- readingsSingleUpdate($hash,$reading,$message,1);
- }
- } elsif ($topic =~ $hash->{'.autoSubscribeExpr'}) {
- Log3($hash->{NAME},5,"calling readingsSingleUpdate($hash->{NAME},$1,$message,1)");
- CommandAttr(undef,"$hash->{NAME} subscribeReading_$1 $topic");
- readingsSingleUpdate($hash,$1,$message,1);
- }
- }
- 1;
- =pod
- =item [device]
- =item summary MQTT_DEVICE acts as a fhem-device that is mapped to mqtt-topics
- =begin html
- <a name="MQTT_DEVICE"></a>
- <h3>MQTT_DEVICE</h3>
- <ul>
- <p>acts as a fhem-device that is mapped to <a href="http://mqtt.org/">mqtt</a>-topics.</p>
- <p>requires a <a href="#MQTT">MQTT</a>-device as IODev<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="MQTT_DEVICEdefine"></a>
- <p><b>Define</b></p>
- <ul>
- <p><code>define <name> MQTT_DEVICE</code><br/>
- Specifies the MQTT device.</p>
- </ul>
- <a name="MQTT_DEVICEset"></a>
- <p><b>Set</b></p>
- <ul>
- <li>
- <p><code>set <name> <command></code><br/>
- sets reading 'state' and publishes the command to topic configured via attr publishSet</p>
- </li>
- <li>
- <p><code>set <name> <reading> <value></code><br/>
- sets reading <reading> and publishes the command to topic configured via attr publishSet_<reading></p>
- </li>
- <li>
- <p>The <a href="#setExtensions">set extensions</a> are supported with useSetExtensions attribute.<br/>
- Set eventMap if your publishSet commands are not on/off.</p>
- <p>example for true/false:<br/>
- <code>attr mqttest eventMap { dev=>{ 'true'=>'on', 'false'=>'off' }, usr=>{ '^on$'=>'true', '^off$'=>'false' }, fw=>{ '^on$'=>'on', '^off$'=>'off' } }</code></p>
- </li>
- </ul>
- <a name="MQTT_DEVICEattr"></a>
- <p><b>Attributes</b></p>
- <ul>
- <li>
- <p><code>attr <name> publishSet [[<reading>:]<commands_or_options>] <topic></code><br/>
- configures set commands and UI-options e.g. 'slider' that may be used to both set given reading ('state' if not defined) and publish to configured topic</p>
- <p>example:<br/>
- <code>attr mqttest publishSet on off switch:on,off level:slider,0,1,100 /topic/123</code>
- </p>
- </li>
- <li>
- <p><code>attr <name> publishSet_<reading> [<values>]* <topic></code><br/>
- configures reading that may be used to both set 'reading' (to optionally configured values) and publish to configured topic</p>
- </li>
- <li>
- <p><code>attr <name> autoSubscribeReadings <topic></code><br/>
- specify a mqtt-topic pattern with wildcard (e.c. 'myhouse/kitchen/+') and MQTT_DEVICE automagically creates readings based on the wildcard-match<br/>
- e.g a message received with topic 'myhouse/kitchen/temperature' would create and update a reading 'temperature'.<br/>
- Please note that topics with spaces will not work here!</p>
- </li>
- <li>
- <p><code>attr <name> subscribeReading_<reading> [{Perl-expression}] [qos:?] [retain:?] <topic></code><br/>
- mapps a reading to a specific topic. The reading is updated whenever a message to the configured topic arrives.<br/>
- QOS and ratain can be optionally defined for this topic. <br/>
- Furthermore, a Perl statement can be provided which is executed when the message is received. The following variables are available for the expression: $hash, $name, $topic, $message. Return value decides whether reading is set (true (e.g., 1) or undef) or discarded (false (e.g., 0)).
- </p>
- <p>Example:<br/>
- <code>attr mqttest subscribeReading_cmd {fhem("set something off")} /topic/cmd</code>
- </p>
- </li>
- <li>
- <p><code>attr <name> retain <flags> ...</code><br/>
- Specifies the retain flag for all or specific readings. Possible values are 0, 1</p>
- <p>Examples:<br/>
- <code>attr mqttest retain 0</code><br/>
- defines retain 0 for all readings/topics (due to downward compatibility)<br>
- <code> retain *:0 1 test:1</code><br/>
- defines retain 0 for all readings/topics except the reading 'test'. Retain for 'test' is 1<br>
- </p>
- </li>
- <li>
- <p><code>attr <name> qos <flags> ...</code><br/>
- Specifies the QOS flag for all or specific readings. Possible values are 0, 1 or 2. Constants may be also used: at-most-once = 0, at-least-once = 1, exactly-once = 2</p>
- <p>Examples:<br/>
- <code>attr mqttest qos 0</code><br/>
- defines QOS 0 for all readings/topics (due to downward compatibility)<br>
- <code> retain *:0 1 test:1</code><br/>
- defines QOS 0 for all readings/topics except the reading 'test'. Retain for 'test' is 1<br>
- </p>
- </li>
- <li>
- <p><code>attr <name> useSetExtensions <flags></code><br/>
- If set to 1, then the <a href="#setExtensions">set extensions</a> are supported.</p>
- </li>
- </ul>
- </ul>
- =end html
- =cut
|