nidas v1.2.3
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"
43
44namespace nidas { namespace util {
45
49class BluetoothAddress {
50public:
51
58 static BluetoothAddress getByName(const std::string& addrstr);
59
66 static std::string getHostName(const BluetoothAddress& addr);
67
71 BluetoothAddress();
72
76 BluetoothAddress(const bdaddr_t*);
77
81 std::string getHostName() const;
82
86 const bdaddr_t* getBdAddrPtr() const { return &_bdaddr; }
87
91 const bdaddr_t getBdAddr() const { return _bdaddr; }
92
96 bool operator < (const BluetoothAddress& x) const;
97
101 bool operator == (const BluetoothAddress& x) const;
102
106 bool operator != (const BluetoothAddress& x) const;
107
108private:
109
110 static ::regex_t* _addrPreg;
111
112 static nidas::util::Mutex _staticMutex;
113
114 static std::map<std::string,BluetoothAddress> _addrMap;
115
119 bdaddr_t _bdaddr;
120
121};
122
123}} // namespace nidas namespace util
124
125#endif
126#endif
A C++ wrapper for a POSIX mutex.
Definition ThreadSupport.h:161
Root namespace for the NCAR In-Situ Data Acquisition Software.
Definition A2DConverter.h:31