nidas  v1.2-1520
BluetoothAddress.h
Go to the documentation of this file.
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; tab-width: 4; -*-
2 // vim: set shiftwidth=4 softtabstop=4 expandtab:
3 /*
4  ********************************************************************
5  ** NIDAS: NCAR In-situ Data Acquistion Software
6  **
7  ** 2010, Copyright University Corporation for Atmospheric Research
8  **
9  ** This program is free software; you can redistribute it and/or modify
10  ** it under the terms of the GNU General Public License as published by
11  ** the Free Software Foundation; either version 2 of the License, or
12  ** (at your option) any later version.
13  **
14  ** This program is distributed in the hope that it will be useful,
15  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  ** GNU General Public License for more details.
18  **
19  ** The LICENSE.txt file accompanying this software contains
20  ** a copy of the GNU General Public License. If it is not found,
21  ** write to the Free Software Foundation, Inc.,
22  ** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  **
24  ********************************************************************
25 */
26 
27 #include <nidas/Config.h>
28 
29 #ifdef HAVE_BLUETOOTH_RFCOMM_H
30 
31 #ifndef NIDAS_UTIL_BLUETOOTHADDRESS
32 #define NIDAS_UTIL_BLUETOOTHADDRESS
33 
34 #include <bluetooth/bluetooth.h>
35 #include <sys/types.h>
36 #include <regex.h>
37 
38 #include <string>
39 #include <map>
40 
41 #include "ThreadSupport.h"
42 #include "UnknownHostException.h"
43 
44 namespace nidas { namespace util {
45 
49 class BluetoothAddress {
50 public:
51 
56  static BluetoothAddress getByName(const std::string& addrstr)
57  throw(UnknownHostException);
58 
63  static std::string getHostName(const BluetoothAddress& addr) throw();
64 
68  BluetoothAddress();
69 
73  BluetoothAddress(const bdaddr_t*);
74 
78  std::string getHostName() const;
79 
83  const bdaddr_t* getBdAddrPtr() const { return &_bdaddr; }
84 
88  const bdaddr_t getBdAddr() const { return _bdaddr; }
89 
93  bool operator < (const BluetoothAddress& x) const;
94 
98  bool operator == (const BluetoothAddress& x) const;
99 
103  bool operator != (const BluetoothAddress& x) const;
104 
105 private:
106 
107  static ::regex_t* _addrPreg;
108 
109  static nidas::util::Mutex _staticMutex;
110 
111  static std::map<std::string,BluetoothAddress> _addrMap;
112 
116  bdaddr_t _bdaddr;
117 
118 };
119 
120 }} // namespace nidas namespace util
121 
122 #endif
123 #endif
bool operator!=(const BitArray &x, const BitArray &y)
Definition: BitArray.cc:197
bool operator==(const BitArray &x, const BitArray &y)
Definition: BitArray.cc:176
A C++ wrapper for a POSIX mutex.
Definition: ThreadSupport.h:154