-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerEnum.h
99 lines (87 loc) · 3.26 KB
/
SerEnum.h
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
//---------------------------------------------------------------------------
#ifndef SerEnumH
#define SerEnumH
#include <Setupapi.h>
#include <System.hpp>
#include <System.SysUtils.hpp>
#include <boost/tuple/tuple.hpp>
//---------------------------------------------------------------------------
namespace SvcApp {
//---------------------------------------------------------------------------
namespace Utils {
//---------------------------------------------------------------------------
struct BuildSerialPortInfoTupleFnctr {
template<typename T1, typename T2>
boost::tuple<T1,T2> operator()( T1 const & Name, T2 const & Descr ) {
return boost::make_tuple( Name, Descr );
}
};
template<typename OutputIterator, typename TF>
void EnumSerialPort( OutputIterator Out, TF Fn = BuildSerialPortInfoTupleFnctr() )
{
struct DevInfoSetMngr {
DevInfoSetMngr()
{
static const GUID GuidDevintfComport =
{ 0x86E0D1E0L, 0x8089, 0x11D0,
0x9C, 0xE4, 0x08, 0x00, 0x3E, 0x30, 0x1F, 0x73
};
Handle=
::SetupDiGetClassDevs(
&GuidDevintfComport, NULL, NULL,
DIGCF_PRESENT | DIGCF_DEVICEINTERFACE
);
if ( Handle == INVALID_HANDLE_VALUE ) {
RaiseLastOSError();
}
}
~DevInfoSetMngr() {
if ( Handle != INVALID_HANDLE_VALUE ) {
::SetupDiDestroyDeviceInfoList( Handle );
}
}
HDEVINFO Handle;
}
DevInfoSet;
SP_DEVINFO_DATA DevInfo = { 0 };
DevInfo.cbSize = sizeof( SP_DEVINFO_DATA );
for ( int Idx = 0 ; ::SetupDiEnumDeviceInfo( DevInfoSet.Handle, Idx, &DevInfo ) ; ++Idx ) {
struct RegKeyMngr {
explicit RegKeyMngr( HKEY Key ) : Handle( Key ) {}
~RegKeyMngr() { ::RegCloseKey( Handle ); }
HKEY Handle;
}
DeviceKey(
::SetupDiOpenDevRegKey(
DevInfoSet.Handle, &DevInfo, DICS_FLAG_GLOBAL, 0, DIREG_DEV,
KEY_QUERY_VALUE
)
);
if ( DeviceKey.Handle != INVALID_HANDLE_VALUE ) {
extern String RegQueryValueString( HKEY Key, String Name );
String const PortName =
RegQueryValueString( DeviceKey.Handle, _T( "PortName" ) );
if ( !PortName.IsEmpty() ) {
BYTE Buffer[2048];
String Description;
DWORD Size = 0;
DWORD Type = 0;
bool PropDescOk =
::SetupDiGetDeviceRegistryProperty(
DevInfoSet.Handle, &DevInfo, SPDRP_DEVICEDESC, &Type,
Buffer, sizeof Buffer, &Size
);
if ( PropDescOk && Type == REG_SZ ) {
Description = reinterpret_cast<LPTSTR>( Buffer );
}
*Out++ = Fn( PortName, Description );
}
}
}
}
//---------------------------------------------------------------------------
} // End of namespace Utils
//---------------------------------------------------------------------------
} // End of namespace SvcApp
//---------------------------------------------------------------------------
#endif