summaryrefslogtreecommitdiff
path: root/bin/mqttsyncdir-publisher
blob: 92b5d3a36666787baebf2ffe20b39c5ecf0d2d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env perl

use strict;
use warnings;
use 5.020;

our $VERSION = '0.00';

use File::Slurp qw(read_dir read_file);
use Linux::Inotify2;
use Net::MQTT::Simple;
use YAML::XS;

sub load_config {
	my ($config_file) = @_;
	my $content       = read_file($config_file);
	my $yaml          = Load($content);
	return $yaml;
}

my ($config_file) = @ARGV;

if ( not defined $config_file ) {
	die("Usage: $0 <config.yaml>\n");
}

my %config = %{ load_config($config_file) };

if ( not defined $config{directory} ) {
	die("Error: configuration must specify an output directory\n");
}
if ( not defined $config{server} ) {
	die("Error: configuration must specify a server\n");
}

my $mqtt = Net::MQTT::Simple->new( $config{server} );

my $inotify = Linux::Inotify2->new();
my $mask    = IN_MODIFY | IN_CREATE | IN_DELETE | IN_DELETE_SELF;
my $cb;

$cb = sub {
	my ($event) = @_;
	my $path = $event->fullname;

	if ( $event->IN_MODIFY and -f $path ) {
		my $content = read_file($path);
		chomp $content;
		$path =~ s{^$config{directory}/}{};

		$mqtt->retain( $path, $content );
	}
	elsif ( $event->IN_DELETE ) {
		$path =~ s{^$config{directory}/}{};
		$mqtt->retain( $path, undef );
	}
	elsif ( $event->IN_CREATE and -d $path ) {
		$inotify->watch( $path, $mask, $cb );
	}
	elsif ( $event->IN_DELETE_SELF ) {
		$event->w->cancel;
	}

};

$inotify->watch( $config{directory}, $mask, $cb );

my @queue = grep { -d } read_dir( $config{directory}, prefix => 1 );

while ( my $dir = shift @queue ) {
	$inotify->watch( $dir, $mask, $cb );
	push( @queue, grep { -d } read_dir( $dir, prefix => 1 ) );
}

while (1) {
	$inotify->poll;
}

__END__

=head1 NAME

=head1 SYNOPSIS

=head1 VERSION

=head1 DESCRIPTION

=head1 OPTIONS

=over

=back

=head1 EXIT STATUS

=head1 CONFIGURATION

None.

=head1 DEPENDENCIES

=over

=back

=head1 BUGS AND LIMITATIONS

=head1 AUTHOR

Copyright (C) 2017 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>

=head1 LICENSE

  0. You just DO WHAT THE FUCK YOU WANT TO.