##############################################
#
# fhem bridge to mqtt (see http://mqtt.org)
#
# Copyright (C) 2014 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 .
#
# $Id$
#
##############################################
use strict;
use warnings;
my %sets = (
);
my %gets = (
"version" => "",
"readings" => ""
);
sub MQTT_BRIDGE_Initialize($) {
my $hash = shift @_;
# Consumer
$hash->{DefFn} = "MQTT::Client_Define";
$hash->{UndefFn} = "MQTT::Client_Undefine";
$hash->{GetFn} = "MQTT::BRIDGE::Get";
$hash->{NotifyFn} = "MQTT::BRIDGE::Notify";
$hash->{AttrFn} = "MQTT::BRIDGE::Attr";
$hash->{AttrList} =
"IODev ".
"qos:".join(",",keys %MQTT::qos)." ".
"retain:0,1 ".
"publish-topic-base ".
"publishState ".
"publishReading_.* ".
"subscribeSet ".
"subscribeSet_.* ".
$main::readingFnAttributes;
main::LoadModule("MQTT");
}
package MQTT::BRIDGE;
use strict;
use warnings;
use GPUtils qw(:all);
use Net::MQTT::Constants;
BEGIN {
MQTT->import(qw(:all));
GP_Import(qw(
AttrVal
CommandAttr
readingsSingleUpdate
Log3
DoSet
))
};
sub Get($$@) {
my ($hash, $name, $command) = @_;
return "Need at least one parameters" unless (defined $command);
return "Unknown argument $command, choose one of " . join(" ", sort keys %gets)
unless (defined($gets{$command}));
COMMAND_HANDLER: {
# populate dynamically from keys %{$defs{$sdev}{READINGS}}
$command eq "readings" and do {
my $base = AttrVal($name,"publish-topic-base","/$hash->{DEF}/");
foreach my $reading (keys %{$main::defs{$hash->{DEF}}{READINGS}}) {
unless (defined AttrVal($name,"publishReading_$reading",undef)) {
CommandAttr($hash,"$name publishReading_$reading $base$reading");
}
};
last;
};
};
}
sub Notify() {
my ($hash,$dev) = @_;
Log3($hash->{NAME},5,"Notify for $dev->{NAME}");
foreach my $event (@{$dev->{CHANGED}}) {
$event =~ /^([^:]+)(: )?(.*)$/;
Log3($hash->{NAME},5,"$event, '".((defined $1) ? $1 : "-undef-")."', '".((defined $3) ? $3 : "-undef-")."'");
my $msgid;
if (defined $3 and $3 ne "") {
if (defined $hash->{publishReadings}->{$1}) {
$msgid = send_publish($hash->{IODev}, topic => $hash->{publishReadings}->{$1}, message => $3, qos => $hash->{qos}, retain => $hash->{retain});
readingsSingleUpdate($hash,"transmission-state","outgoing publish sent",1);
}
} else {
if (defined $hash->{publishState}) {
$msgid = send_publish($hash->{IODev}, topic => $hash->{publishState}, message => $1, qos => $hash->{qos}, retain => $hash->{retain});
readingsSingleUpdate($hash,"transmission-state","outgoing publish sent",1);
}
}
$hash->{message_ids}->{$msgid}++ if defined $msgid;
}
}
sub Attr($$$$) {
my ($command,$name,$attribute,$value) = @_;
my $hash = $main::defs{$name};
ATTRIBUTE_HANDLER: {
$attribute =~ /^subscribeSet(_?)(.*)/ and do {
if ($command eq "set") {
unless (defined $hash->{subscribeSets}->{$value} and $hash->{subscribeSets}->{$value} eq $2) {
unless (defined $hash->{subscribeSets}->{$value}) {
client_subscribe_topic($hash,$value);
}
$hash->{subscribeSets}->{$value} = $2;
}
} else {
foreach my $topic (keys %{$hash->{subscribeSets}}) {
if ($hash->{subscribeSets}->{$topic} eq $2) {
client_unsubscribe_topic($hash,$topic);
delete $hash->{subscribeSets}->{$topic};
last;
}
}
}
last;
};
$attribute eq "publishState" and do {
if ($command eq "set") {
$hash->{publishState} = $value;
} else {
delete $hash->{publishState};
}
last;
};
$attribute =~ /^publishReading_(.+)$/ and do {
if ($command eq "set") {
$hash->{publishReadings}->{$1} = $value;
} else {
delete $hash->{publishReadings}->{$1};
}
last;
};
client_attr($hash,$command,$name,$attribute,$value);
}
}
sub onmessage($$$) {
my ($hash,$topic,$message) = @_;
if (defined (my $command = $hash->{subscribeSets}->{$topic})) {
my @args = split ("[ \t]+",$message);
if ($command eq "") {
Log3($hash->{NAME},5,"calling DoSet($hash->{DEF}".(@args ? ",".join(",",@args) : ""));
DoSet($hash->{DEF},@args);
} else {
Log3($hash->{NAME},5,"calling DoSet($hash->{DEF},$command".(@args ? ",".join(",",@args) : ""));
DoSet($hash->{DEF},$command,@args);
}
}
}
1;
=pod
=begin html
MQTT_BRIDGE
acts as a bridge in between an fhem-device and mqtt-topics.
requires a MQTT-device as IODev
Note: this module is based on Net::MQTT which needs to be installed from CPAN first.
Define
define <name> MQTT_BRIDGE <fhem-device-name>
Specifies the MQTT device.
<fhem-device-name> is the fhem-device this MQTT_BRIDGE is linked to.
Get
Attributes
-
attr <name> subscribeSet <topic>
configures a topic that will issue a 'set <message> whenever a message is received
-
attr <name> subscribeSet_<reading> <topic>
configures a topic that will issue a 'set <reading> <message> whenever a message is received
-
attr <name> publishState <topic>
configures a topic such that a message is sent to topic whenever the device state changes.
-
attr <name> publishReading_<reading> <topic>
configures a topic such that a message is sent to topic whenever the device readings value changes.
-
attr <name> publish-topic-base <topic>
this is used as base path when issueing 'get <device> readings' to construct topics to publish to based on the devices existing readings
=end html
=cut