ansible4ozw 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/ansible.rb +12 -9
- data/lib/ansible/ansible_device.rb +1 -1
- data/lib/ansible/ansible_value.rb +1 -1
- data/lib/ansible/config.rb +8 -5
- data/lib/ansible/devices.rb +1 -0
- data/lib/ansible/knx.rb +0 -0
- data/lib/ansible/knx/dpt/tests/test_dpt10.rb~ +45 -0
- data/lib/ansible/knx/dpt/tests/test_dpt9.rb~ +55 -0
- data/lib/ansible/transceiver.rb +0 -3
- data/lib/ansible/version.rb +3 -0
- data/lib/ansible/zwave.rb +1 -0
- data/lib/ansible/{openzwave → zwave/openzwave}/ozw_constants.rb +1 -2
- data/lib/ansible/{openzwave → zwave/openzwave}/ozw_headers.rb +2 -6
- data/lib/ansible/{openzwave → zwave/openzwave}/ozw_remote_manager.rb +0 -3
- data/lib/ansible/{openzwave → zwave/openzwave}/ozw_types.rb +0 -0
- data/lib/ansible/zwave/openzwave/src/Driver.h +695 -0
- data/lib/ansible/zwave/openzwave/src/Notification.h +165 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Alarm.cpp +142 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Alarm.h +69 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ApplicationStatus.cpp +93 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ApplicationStatus.h +57 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Association.cpp +385 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Association.h +73 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/AssociationCommandConfiguration.cpp +277 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/AssociationCommandConfiguration.h +70 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Basic.cpp +212 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Basic.h +72 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/BasicWindowCovering.cpp +118 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/BasicWindowCovering.h +64 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Battery.cpp +141 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Battery.h +65 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ClimateControlSchedule.cpp +415 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ClimateControlSchedule.h +71 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Clock.cpp +227 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Clock.h +67 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/CommandClass.cpp +546 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/CommandClass.h +145 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/CommandClasses.cpp +291 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/CommandClasses.h +79 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Configuration.cpp +258 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Configuration.h +67 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ControllerReplication.cpp +142 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ControllerReplication.h +63 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/EnergyProduction.cpp +163 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/EnergyProduction.h +65 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Hail.cpp +68 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Hail.h +58 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Indicator.cpp +159 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Indicator.h +66 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Language.cpp +159 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Language.h +65 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Lock.cpp +159 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Lock.h +66 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ManufacturerSpecific.cpp +439 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ManufacturerSpecific.h +116 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Meter.cpp +541 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Meter.h +73 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MeterPulse.cpp +137 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MeterPulse.h +65 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MultiCmd.cpp +77 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MultiCmd.h +63 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstance.cpp +568 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstance.h +96 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstanceAssociation.cpp +61 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstanceAssociation.h +59 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/NodeNaming.cpp +525 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/NodeNaming.h +66 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Powerlevel.cpp +157 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Powerlevel.h +82 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Proprietary.cpp +62 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Proprietary.h +58 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Protection.cpp +177 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Protection.h +73 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SensorAlarm.cpp +208 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SensorAlarm.h +77 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SensorBinary.cpp +134 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SensorBinary.h +65 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SensorMultilevel.cpp +237 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SensorMultilevel.h +71 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchAll.cpp +219 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchAll.h +69 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchBinary.cpp +157 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchBinary.h +66 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchMultilevel.cpp +559 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchMultilevel.h +83 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleBinary.cpp +151 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleBinary.h +66 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleMultilevel.cpp +195 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleMultilevel.h +75 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanMode.cpp +332 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanMode.h +77 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanState.cpp +149 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanState.h +71 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatMode.cpp +373 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatMode.h +76 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatOperatingState.cpp +147 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatOperatingState.h +71 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatSetpoint.cpp +317 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatSetpoint.h +73 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Version.cpp +255 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/Version.h +71 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/WakeUp.cpp +391 -0
- data/lib/ansible/zwave/openzwave/src/command_classes/WakeUp.h +85 -0
- data/lib/ansible/zwave/openzwave/src/platform/Controller.cpp +68 -0
- data/lib/ansible/zwave/openzwave/src/platform/Controller.h +106 -0
- data/lib/ansible/zwave/openzwave/src/platform/Event.cpp +102 -0
- data/lib/ansible/zwave/openzwave/src/platform/Event.h +91 -0
- data/lib/ansible/zwave/openzwave/src/platform/HidController.cpp +539 -0
- data/lib/ansible/zwave/openzwave/src/platform/HidController.h +147 -0
- data/lib/ansible/zwave/openzwave/src/platform/Log.cpp +310 -0
- data/lib/ansible/zwave/openzwave/src/platform/Log.h +184 -0
- data/lib/ansible/zwave/openzwave/src/platform/Mutex.cpp +96 -0
- data/lib/ansible/zwave/openzwave/src/platform/Mutex.h +88 -0
- data/lib/ansible/zwave/openzwave/src/platform/Ref.h +91 -0
- data/lib/ansible/zwave/openzwave/src/platform/SerialController.cpp +180 -0
- data/lib/ansible/zwave/openzwave/src/platform/SerialController.h +138 -0
- data/lib/ansible/zwave/openzwave/src/platform/Stream.cpp +229 -0
- data/lib/ansible/zwave/openzwave/src/platform/Stream.h +135 -0
- data/lib/ansible/zwave/openzwave/src/platform/Thread.cpp +118 -0
- data/lib/ansible/zwave/openzwave/src/platform/Thread.h +101 -0
- data/lib/ansible/zwave/openzwave/src/platform/TimeStamp.cpp +92 -0
- data/lib/ansible/zwave/openzwave/src/platform/TimeStamp.h +85 -0
- data/lib/ansible/zwave/openzwave/src/platform/Wait.cpp +176 -0
- data/lib/ansible/zwave/openzwave/src/platform/Wait.h +113 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/EventImpl.cpp +262 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/EventImpl.h +62 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/LogImpl.cpp +304 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/LogImpl.h +70 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/MutexImpl.cpp +136 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/MutexImpl.h +56 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/SerialControllerImpl.cpp +368 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/SerialControllerImpl.h +74 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/ThreadImpl.cpp +181 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/ThreadImpl.h +67 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/TimeStampImpl.cpp +121 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/TimeStampImpl.h +84 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/WaitImpl.cpp +160 -0
- data/lib/ansible/zwave/openzwave/src/platform/unix/WaitImpl.h +74 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/EventImpl.cpp +102 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/EventImpl.h +60 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/LogImpl.cpp +302 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/LogImpl.h +71 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/MutexImpl.cpp +114 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/MutexImpl.h +58 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/SerialControllerImpl.cpp +410 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/SerialControllerImpl.h +66 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/ThreadImpl.cpp +158 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/ThreadImpl.h +71 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/TimeStampImpl.cpp +95 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/TimeStampImpl.h +83 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/WaitImpl.cpp +134 -0
- data/lib/ansible/zwave/openzwave/src/platform/windows/WaitImpl.h +73 -0
- data/lib/ansible/zwave/openzwave/src/value_classes/ValueID.h +283 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_bool.rb +0 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_button.rb +0 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_byte.rb +0 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_decimal.rb +0 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_int.rb +0 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_list.rb +0 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_short.rb +0 -0
- data/lib/ansible/zwave/{types → openzwave/types}/valuetype_string.rb +0 -0
- data/lib/ansible/zwave/zwave_transceiver.rb +2 -8
- data/lib/ansible/zwave/zwave_value.rb +6 -10
- metadata +159 -17
- data/lib/ansible/zwave/zwave_node.rb +0 -5
@@ -0,0 +1,66 @@
|
|
1
|
+
//-----------------------------------------------------------------------------
|
2
|
+
//
|
3
|
+
// SerialControllerImpl.h
|
4
|
+
//
|
5
|
+
// Windows Implementation of the cross-platform serial port
|
6
|
+
//
|
7
|
+
// Copyright (c) 2010 Jason Frazier <frazierjason@gmail.com>
|
8
|
+
//
|
9
|
+
// SOFTWARE NOTICE AND LICENSE
|
10
|
+
//
|
11
|
+
// This file is part of OpenZWave.
|
12
|
+
//
|
13
|
+
// OpenZWave is free software: you can redistribute it and/or modify
|
14
|
+
// it under the terms of the GNU Lesser General Public License as published
|
15
|
+
// by the Free Software Foundation, either version 3 of the License,
|
16
|
+
// or (at your option) any later version.
|
17
|
+
//
|
18
|
+
// OpenZWave is distributed in the hope that it will be useful,
|
19
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
21
|
+
// GNU Lesser General Public License for more details.
|
22
|
+
//
|
23
|
+
// You should have received a copy of the GNU Lesser General Public License
|
24
|
+
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
|
25
|
+
//
|
26
|
+
//-----------------------------------------------------------------------------
|
27
|
+
|
28
|
+
#ifndef _SerialControllerImpl_H
|
29
|
+
#define _SerialControllerImpl_H
|
30
|
+
|
31
|
+
#include <Windows.h>
|
32
|
+
|
33
|
+
#include "Defs.h"
|
34
|
+
#include "SerialController.h"
|
35
|
+
|
36
|
+
namespace OpenZWave
|
37
|
+
{
|
38
|
+
class SerialControllerImpl
|
39
|
+
{
|
40
|
+
public:
|
41
|
+
void ReadThreadProc();
|
42
|
+
|
43
|
+
private:
|
44
|
+
friend class SerialController;
|
45
|
+
|
46
|
+
SerialControllerImpl( SerialController* _owner );
|
47
|
+
~SerialControllerImpl();
|
48
|
+
|
49
|
+
bool Open();
|
50
|
+
void Close();
|
51
|
+
|
52
|
+
uint32 Write( uint8* _buffer, uint32 _length );
|
53
|
+
|
54
|
+
bool Init( uint32 const _attempts );
|
55
|
+
void Read();
|
56
|
+
|
57
|
+
SerialController* m_owner;
|
58
|
+
HANDLE m_hThread;
|
59
|
+
HANDLE m_hExit;
|
60
|
+
HANDLE m_hSerialController;
|
61
|
+
};
|
62
|
+
|
63
|
+
} // namespace OpenZWave
|
64
|
+
|
65
|
+
#endif //_SerialControllerImpl_H
|
66
|
+
|
@@ -0,0 +1,158 @@
|
|
1
|
+
//-----------------------------------------------------------------------------
|
2
|
+
//
|
3
|
+
// ThreadImpl.cpp
|
4
|
+
//
|
5
|
+
// Windows implementation of a cross-platform thread
|
6
|
+
//
|
7
|
+
// Copyright (c) 2010 Mal Lansell <mal@lansell.org>
|
8
|
+
// All rights reserved.
|
9
|
+
//
|
10
|
+
// SOFTWARE NOTICE AND LICENSE
|
11
|
+
//
|
12
|
+
// This file is part of OpenZWave.
|
13
|
+
//
|
14
|
+
// OpenZWave is free software: you can redistribute it and/or modify
|
15
|
+
// it under the terms of the GNU Lesser General Public License as published
|
16
|
+
// by the Free Software Foundation, either version 3 of the License,
|
17
|
+
// or (at your option) any later version.
|
18
|
+
//
|
19
|
+
// OpenZWave is distributed in the hope that it will be useful,
|
20
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
22
|
+
// GNU Lesser General Public License for more details.
|
23
|
+
//
|
24
|
+
// You should have received a copy of the GNU Lesser General Public License
|
25
|
+
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
|
26
|
+
//
|
27
|
+
//-----------------------------------------------------------------------------
|
28
|
+
#include "Defs.h"
|
29
|
+
#include "Event.h"
|
30
|
+
#include "Thread.h"
|
31
|
+
#include "ThreadImpl.h"
|
32
|
+
|
33
|
+
using namespace OpenZWave;
|
34
|
+
|
35
|
+
|
36
|
+
//-----------------------------------------------------------------------------
|
37
|
+
// <ThreadImpl::ThreadImpl>
|
38
|
+
// Constructor
|
39
|
+
//-----------------------------------------------------------------------------
|
40
|
+
ThreadImpl::ThreadImpl
|
41
|
+
(
|
42
|
+
Thread* _owner,
|
43
|
+
string const& _name
|
44
|
+
):
|
45
|
+
m_owner( _owner ),
|
46
|
+
m_hThread( INVALID_HANDLE_VALUE ),
|
47
|
+
m_bIsRunning( false ),
|
48
|
+
m_name( _name )
|
49
|
+
{
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
//-----------------------------------------------------------------------------
|
54
|
+
// <ThreadImpl::~ThreadImpl>
|
55
|
+
// Destructor
|
56
|
+
//-----------------------------------------------------------------------------
|
57
|
+
ThreadImpl::~ThreadImpl
|
58
|
+
(
|
59
|
+
)
|
60
|
+
{
|
61
|
+
}
|
62
|
+
|
63
|
+
//-----------------------------------------------------------------------------
|
64
|
+
// <ThreadImpl::Start>
|
65
|
+
// Start a function running on this thread
|
66
|
+
//-----------------------------------------------------------------------------
|
67
|
+
bool ThreadImpl::Start
|
68
|
+
(
|
69
|
+
Thread::pfnThreadProc_t _pfnThreadProc,
|
70
|
+
Event* _exitEvent,
|
71
|
+
void* _context
|
72
|
+
)
|
73
|
+
{
|
74
|
+
// Create a thread to run the specified function
|
75
|
+
m_pfnThreadProc = _pfnThreadProc;
|
76
|
+
m_context = _context;
|
77
|
+
m_exitEvent = _exitEvent;
|
78
|
+
m_exitEvent->Reset();
|
79
|
+
|
80
|
+
HANDLE hThread = ::CreateThread( NULL, 0, ThreadImpl::ThreadProc, this, CREATE_SUSPENDED, NULL );
|
81
|
+
m_hThread = hThread;
|
82
|
+
|
83
|
+
::ResumeThread( hThread );
|
84
|
+
return true;
|
85
|
+
}
|
86
|
+
|
87
|
+
//-----------------------------------------------------------------------------
|
88
|
+
// <ThreadImpl::Sleep>
|
89
|
+
// Cause thread to sleep for the specified number of milliseconds
|
90
|
+
//-----------------------------------------------------------------------------
|
91
|
+
void ThreadImpl::Sleep
|
92
|
+
(
|
93
|
+
uint32 _millisecs
|
94
|
+
)
|
95
|
+
{
|
96
|
+
::Sleep(_millisecs);
|
97
|
+
}
|
98
|
+
|
99
|
+
//-----------------------------------------------------------------------------
|
100
|
+
// <ThreadImpl::Terminate>
|
101
|
+
// Force the thread to stop
|
102
|
+
//-----------------------------------------------------------------------------
|
103
|
+
bool ThreadImpl::Terminate
|
104
|
+
(
|
105
|
+
)
|
106
|
+
{
|
107
|
+
if( !m_bIsRunning )
|
108
|
+
{
|
109
|
+
return false;
|
110
|
+
}
|
111
|
+
|
112
|
+
// This can cause all sorts of trouble if the thread is holding a lock.
|
113
|
+
TerminateThread( m_hThread, 0 );
|
114
|
+
m_hThread = INVALID_HANDLE_VALUE;
|
115
|
+
return true;
|
116
|
+
}
|
117
|
+
|
118
|
+
//-----------------------------------------------------------------------------
|
119
|
+
// <ThreadImpl::IsSignalled>
|
120
|
+
// Test whether the thread has completed
|
121
|
+
//-----------------------------------------------------------------------------
|
122
|
+
bool ThreadImpl::IsSignalled
|
123
|
+
(
|
124
|
+
)
|
125
|
+
{
|
126
|
+
return !m_bIsRunning;
|
127
|
+
}
|
128
|
+
|
129
|
+
//-----------------------------------------------------------------------------
|
130
|
+
// <ThreadImpl::ThreadProc>
|
131
|
+
// Entry point for running a function on this thread
|
132
|
+
//-----------------------------------------------------------------------------
|
133
|
+
DWORD WINAPI ThreadImpl::ThreadProc
|
134
|
+
(
|
135
|
+
void* _pArg
|
136
|
+
)
|
137
|
+
{
|
138
|
+
ThreadImpl* pImpl = (ThreadImpl*)_pArg;
|
139
|
+
pImpl->Run();
|
140
|
+
return 0;
|
141
|
+
}
|
142
|
+
|
143
|
+
//-----------------------------------------------------------------------------
|
144
|
+
// <ThreadImpl::Run>
|
145
|
+
// Entry point for running a function on this thread
|
146
|
+
//-----------------------------------------------------------------------------
|
147
|
+
void ThreadImpl::Run
|
148
|
+
(
|
149
|
+
)
|
150
|
+
{
|
151
|
+
m_bIsRunning = true;
|
152
|
+
m_pfnThreadProc( m_exitEvent, m_context );
|
153
|
+
m_bIsRunning = false;
|
154
|
+
|
155
|
+
// Let any watchers know that the thread has finished running.
|
156
|
+
m_owner->Notify();
|
157
|
+
}
|
158
|
+
|
@@ -0,0 +1,71 @@
|
|
1
|
+
//-----------------------------------------------------------------------------
|
2
|
+
//
|
3
|
+
// ThreadImpl.h
|
4
|
+
//
|
5
|
+
// Windows implementation of a cross-platform thread
|
6
|
+
//
|
7
|
+
// Copyright (c) 2010 Mal Lansell <mal@lansell.org>
|
8
|
+
// All rights reserved.
|
9
|
+
//
|
10
|
+
// SOFTWARE NOTICE AND LICENSE
|
11
|
+
//
|
12
|
+
// This file is part of OpenZWave.
|
13
|
+
//
|
14
|
+
// OpenZWave is free software: you can redistribute it and/or modify
|
15
|
+
// it under the terms of the GNU Lesser General Public License as published
|
16
|
+
// by the Free Software Foundation, either version 3 of the License,
|
17
|
+
// or (at your option) any later version.
|
18
|
+
//
|
19
|
+
// OpenZWave is distributed in the hope that it will be useful,
|
20
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
22
|
+
// GNU Lesser General Public License for more details.
|
23
|
+
//
|
24
|
+
// You should have received a copy of the GNU Lesser General Public License
|
25
|
+
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
|
26
|
+
//
|
27
|
+
//-----------------------------------------------------------------------------
|
28
|
+
#ifndef _ThreadImpl_H
|
29
|
+
#define _ThreadImpl_H
|
30
|
+
|
31
|
+
#include <string>
|
32
|
+
#include <windows.h>
|
33
|
+
#include "Thread.h"
|
34
|
+
|
35
|
+
namespace OpenZWave
|
36
|
+
{
|
37
|
+
class Thread;
|
38
|
+
class Event;
|
39
|
+
|
40
|
+
/** \brief Windows-specific implementation of the Thread class.
|
41
|
+
*/
|
42
|
+
class ThreadImpl
|
43
|
+
{
|
44
|
+
private:
|
45
|
+
friend class Thread;
|
46
|
+
|
47
|
+
ThreadImpl( Thread* _owner, string const& _name );
|
48
|
+
~ThreadImpl();
|
49
|
+
|
50
|
+
bool Start( Thread::pfnThreadProc_t _pfnThreadProc, Event* _exitEvent, void* _context );
|
51
|
+
void Sleep( uint32 _milliseconds );
|
52
|
+
bool Terminate();
|
53
|
+
|
54
|
+
bool IsSignalled();
|
55
|
+
|
56
|
+
void Run();
|
57
|
+
static DWORD WINAPI ThreadProc( void* _pArg );
|
58
|
+
|
59
|
+
Thread* m_owner;
|
60
|
+
HANDLE m_hThread;
|
61
|
+
Event* m_exitEvent;
|
62
|
+
Thread::pfnThreadProc_t m_pfnThreadProc;
|
63
|
+
void* m_context;
|
64
|
+
bool m_bIsRunning;
|
65
|
+
string m_name;
|
66
|
+
};
|
67
|
+
|
68
|
+
} // namespace OpenZWave
|
69
|
+
|
70
|
+
#endif //_ThreadImpl_H
|
71
|
+
|
@@ -0,0 +1,95 @@
|
|
1
|
+
//-----------------------------------------------------------------------------
|
2
|
+
//
|
3
|
+
// TimeStampImpl.h
|
4
|
+
//
|
5
|
+
// Cross-platform TimeStampImpl
|
6
|
+
//
|
7
|
+
// Copyright (c) 2010 Mal Lansell <mal@lansell.org>
|
8
|
+
// All rights reserved.
|
9
|
+
//
|
10
|
+
// SOFTWARE NOTICE AND LICENSE
|
11
|
+
//
|
12
|
+
// This file is part of OpenZWave.
|
13
|
+
//
|
14
|
+
// OpenZWave is free software: you can redistribute it and/or modify
|
15
|
+
// it under the terms of the GNU Lesser General Public License as published
|
16
|
+
// by the Free Software Foundation, either version 3 of the License,
|
17
|
+
// or (at your option) any later version.
|
18
|
+
//
|
19
|
+
// OpenZWave is distributed in the hope that it will be useful,
|
20
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
22
|
+
// GNU Lesser General Public License for more details.
|
23
|
+
//
|
24
|
+
// You should have received a copy of the GNU Lesser General Public License
|
25
|
+
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
|
26
|
+
//
|
27
|
+
//-----------------------------------------------------------------------------
|
28
|
+
#include <Windows.h>
|
29
|
+
#include "Defs.h"
|
30
|
+
#include "TimeStampImpl.h"
|
31
|
+
|
32
|
+
using namespace OpenZWave;
|
33
|
+
|
34
|
+
//-----------------------------------------------------------------------------
|
35
|
+
// <TimeStampImpl::TimeStampImpl>
|
36
|
+
// Constructor
|
37
|
+
//-----------------------------------------------------------------------------
|
38
|
+
TimeStampImpl::TimeStampImpl
|
39
|
+
(
|
40
|
+
)
|
41
|
+
{
|
42
|
+
SetTime(0);
|
43
|
+
}
|
44
|
+
|
45
|
+
//-----------------------------------------------------------------------------
|
46
|
+
// <TimeStampImpl::~TimeStampImpl>
|
47
|
+
// Destructor
|
48
|
+
//-----------------------------------------------------------------------------
|
49
|
+
TimeStampImpl::~TimeStampImpl
|
50
|
+
(
|
51
|
+
)
|
52
|
+
{
|
53
|
+
}
|
54
|
+
|
55
|
+
//-----------------------------------------------------------------------------
|
56
|
+
// <TimeStampImpl::SetTime>
|
57
|
+
// Sets the timestamp to now, plus an offset in milliseconds
|
58
|
+
//-----------------------------------------------------------------------------
|
59
|
+
void TimeStampImpl::SetTime
|
60
|
+
(
|
61
|
+
int32 _milliseconds // = 0
|
62
|
+
)
|
63
|
+
{
|
64
|
+
int64 offset = ((int64)_milliseconds) * 10000i64; // Timestamp is stored in 100ns steps.
|
65
|
+
|
66
|
+
GetSystemTimeAsFileTime( (FILETIME*)&m_stamp );
|
67
|
+
m_stamp += offset;
|
68
|
+
}
|
69
|
+
|
70
|
+
//-----------------------------------------------------------------------------
|
71
|
+
// <TimeStampImpl::TimeRemaining>
|
72
|
+
// Gets the difference between now and the timestamp time in milliseconds
|
73
|
+
//-----------------------------------------------------------------------------
|
74
|
+
int32 TimeStampImpl::TimeRemaining
|
75
|
+
(
|
76
|
+
)
|
77
|
+
{
|
78
|
+
int64 now;
|
79
|
+
GetSystemTimeAsFileTime( (FILETIME*)&now );
|
80
|
+
|
81
|
+
return (int32)( ( m_stamp - now ) / 10000i64 );
|
82
|
+
}
|
83
|
+
|
84
|
+
//-----------------------------------------------------------------------------
|
85
|
+
// <TimeStampImpl::operator->
|
86
|
+
// Overload the subtract operator to get the difference between two
|
87
|
+
// timestamps in milliseconds
|
88
|
+
//-----------------------------------------------------------------------------
|
89
|
+
int32 TimeStampImpl::operator-
|
90
|
+
(
|
91
|
+
TimeStampImpl const& _other
|
92
|
+
)
|
93
|
+
{
|
94
|
+
return (int32)( ( m_stamp - _other.m_stamp ) / 10000i64 );
|
95
|
+
}
|
@@ -0,0 +1,83 @@
|
|
1
|
+
//-----------------------------------------------------------------------------
|
2
|
+
//
|
3
|
+
// TimeStampImpl.h
|
4
|
+
//
|
5
|
+
// Windows implementation of a TimeStamp
|
6
|
+
//
|
7
|
+
// Copyright (c) 2010 Mal Lansell <mal@lansell.org>
|
8
|
+
// All rights reserved.
|
9
|
+
//
|
10
|
+
// SOFTWARE NOTICE AND LICENSE
|
11
|
+
//
|
12
|
+
// This file is part of OpenZWave.
|
13
|
+
//
|
14
|
+
// OpenZWave is free software: you can redistribute it and/or modify
|
15
|
+
// it under the terms of the GNU Lesser General Public License as published
|
16
|
+
// by the Free Software Foundation, either version 3 of the License,
|
17
|
+
// or (at your option) any later version.
|
18
|
+
//
|
19
|
+
// OpenZWave is distributed in the hope that it will be useful,
|
20
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
22
|
+
// GNU Lesser General Public License for more details.
|
23
|
+
//
|
24
|
+
// You should have received a copy of the GNU Lesser General Public License
|
25
|
+
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
|
26
|
+
//
|
27
|
+
//-----------------------------------------------------------------------------
|
28
|
+
#ifndef _TimeStampImpl_H
|
29
|
+
#define _TimeStampImpl_H
|
30
|
+
|
31
|
+
#include "Defs.h"
|
32
|
+
|
33
|
+
namespace OpenZWave
|
34
|
+
{
|
35
|
+
/** \brief Windows implementation of a timestamp.
|
36
|
+
*/
|
37
|
+
class TimeStampImpl
|
38
|
+
{
|
39
|
+
public:
|
40
|
+
/**
|
41
|
+
* Constructor.
|
42
|
+
* Creates a TimeStampImpl object.
|
43
|
+
*/
|
44
|
+
TimeStampImpl();
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Destructor.
|
48
|
+
* Destroys the TimeStampImpl object.
|
49
|
+
*/
|
50
|
+
~TimeStampImpl();
|
51
|
+
|
52
|
+
/**
|
53
|
+
* SetTime. Sets the timestamp to now, plus the offset in milliseconds.
|
54
|
+
* \param _milliseconds positive or negative offset from
|
55
|
+
* now in milliseconds.
|
56
|
+
*/
|
57
|
+
void SetTime( int32 _milliseconds );
|
58
|
+
|
59
|
+
/**
|
60
|
+
* TimeRemaining. Gets the difference between now and the timestamp
|
61
|
+
* time in milliseconds.
|
62
|
+
* \return milliseconds remaining until we reach the timestamp. The
|
63
|
+
* return value is negative if the timestamp is in the past.
|
64
|
+
*/
|
65
|
+
int32 TimeRemaining();
|
66
|
+
|
67
|
+
/**
|
68
|
+
* Overload the subtract operator to get the difference between
|
69
|
+
* two timestamps in milliseconds.
|
70
|
+
*/
|
71
|
+
int32 operator- ( TimeStampImpl const& _other );
|
72
|
+
|
73
|
+
private:
|
74
|
+
TimeStampImpl( TimeStampImpl const& ); // prevent copy
|
75
|
+
TimeStampImpl& operator = ( TimeStampImpl const& ); // prevent assignment
|
76
|
+
|
77
|
+
int64 m_stamp;
|
78
|
+
};
|
79
|
+
|
80
|
+
} // namespace OpenZWave
|
81
|
+
|
82
|
+
#endif //_TimeStampImpl_H
|
83
|
+
|