hyperion.ng
bonjourserviceregister.h
1 /*
2 Copyright (c) 2007, Trenton Schulz
3 
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
6 
7  1. Redistributions of source code must retain the above copyright notice,
8  this list of conditions and the following disclaimer.
9 
10  2. Redistributions in binary form must reproduce the above copyright notice,
11  this list of conditions and the following disclaimer in the documentation
12  and/or other materials provided with the distribution.
13 
14  3. The name of the author may not be used to endorse or promote products
15  derived from this software without specific prior written permission.
16 
17 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
20 EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28 
29 #ifndef BONJOURSERVICEREGISTER_H
30 #define BONJOURSERVICEREGISTER_H
31 
32 #include <QtCore/QObject>
33 
34 #include "bonjourrecord.h"
35 class QSocketNotifier;
36 
37 #ifndef PLATFORM_AMLOGIC
38 #include <dns_sd.h>
39 #else
40 #include <avahi-compat-libdns_sd/dns_sd.h>
41 #endif
42 
43 class BonjourServiceRegister : public QObject
44 {
45  Q_OBJECT
46 public:
47  BonjourServiceRegister(QObject *parent = 0);
49 
50  void registerService(const QString& service, const int& port);
51  void registerService(const BonjourRecord &record, quint16 servicePort, std::vector<std::pair<std::string, std::string>> txt = std::vector<std::pair<std::string, std::string>>());
52  inline BonjourRecord registeredRecord() const {return finalRecord; }
53 
54  const quint16 & getPort() { return _port; };
55 
56 signals:
57  void error(DNSServiceErrorType error);
58  void serviceRegistered(const BonjourRecord &record);
59 
60 private slots:
61  void bonjourSocketReadyRead();
62 
63 private:
64  static void DNSSD_API bonjourRegisterService(DNSServiceRef sdRef, DNSServiceFlags,
65  DNSServiceErrorType errorCode, const char *name,
66  const char *regtype, const char *domain,
67  void *context);
68  DNSServiceRef dnssref;
69  QSocketNotifier *bonjourSocket;
70  BonjourRecord finalRecord;
71 
72  // current port
73  quint16 _port = 0;
74 };
75 
76 #endif // BONJOURSERVICEREGISTER_H
Definition: bonjourrecord.h:35
Definition: bonjourserviceregister.h:43