Net-Rendezvous-Publish-Backend-Avahi

 view release on metacpan or  search on metacpan

lib/Net/Rendezvous/Publish/Backend/Avahi.pm  view on Meta::CPAN

package Net::Rendezvous::Publish::Backend::Avahi;
{
  $Net::Rendezvous::Publish::Backend::Avahi::VERSION = '0.04';
}

# ABSTRACT: Publish zeroconf data via Avahi

# vi: ts=4 sw=4

use strict;
use warnings;

use Net::DBus;

sub new {
    my $class = shift;
    my $self  = {@_};
    bless $self, $class;

    my $bus = Net::DBus->system;
    $self->{service} = $bus->get_service('org.freedesktop.Avahi');
    $self->{server} =
      $self->{service}->get_object('/', 'org.freedesktop.Avahi.Server');

    return $self;
}

sub publish {
    my $self = shift;
    my %args = @_;

    # AddService argument signature is aay.  Split first into key/value
    # pairs at character \x01 ...
    my $txt = $args{txt} || [];
    unless (ref $txt) {
        $txt = [map { [(split //, $_)] } (split /\x01/, $txt)];
    }

    # ... then map characters to bytes and add DBus type.
    if (@{$txt}) {
        foreach my $t (@{$txt}) {
            map { $_ = Net::DBus::dbus_byte(ord($_)) } @{$t};
        }
    }

    my $group = $self->{service}->get_object($self->{server}->EntryGroupNew,
        'org.freedesktop.Avahi.EntryGroup');
    $group->AddService(
        Net::DBus::dbus_int32(-1), Net::DBus::dbus_int32(-1),
        Net::DBus::dbus_uint32(0), $args{name},
        $args{type},               $args{domain},
        $args{host},               Net::DBus::dbus_uint16($args{port}),
        $txt
    );

    $group->Commit;

    return $group;
}

sub publish_stop {
    my $self = shift;
    my ($group) = @_;

    $group->Free;
}

sub step {
}

1;


__END__
=pod

=head1 NAME

Net::Rendezvous::Publish::Backend::Avahi - Publish zeroconf data via Avahi

=head1 VERSION

version 0.04

=head1 COPYRIGHT AND LICENSE

Copyright (c) 2006 by Jack Bates.  All rights reserved.

Copyright (c) 2012 by Ioan Rogers.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 SEE ALSO

=over

=item L<Net::Rendezvous::Publish> - The module this module supports.

=item L<Avahi|http://avahi.org/>

=back

=head1 AUTHORS

=over 4



( run in 3.139 seconds using v1.01-cache-2.11-cpan-0d23b851a93 )