using namespace std;
-namespace {
-
-using namespace Msp;
-using namespace Msp::IO;
+namespace Msp {
+namespace IO {
+struct Serial::DeviceState
+{
#ifdef WIN32
-typedef DCB DeviceState;
+ DCB state;
#else
-typedef termios DeviceState;
+ termios state;
#endif
-void get_state(const Handle &handle, DeviceState &state)
+ void get_from(const Handle &);
+ void apply_to(const Handle &);
+ void set_baud_rate(unsigned);
+ void set_data_bits(unsigned);
+ void set_parity(Parity);
+ void set_stop_bits(unsigned);
+};
+
+void Serial::DeviceState::get_from(const Handle &handle)
{
#ifdef WIN32
GetCommState(*handle, &state);
#endif
}
-void set_state(const Handle &handle, DeviceState &state)
+void Serial::DeviceState::apply_to(const Handle &handle)
{
#ifdef WIN32
if(SetCommState(*handle, &state)==0)
#endif
}
-void set_baud_rate(DeviceState &state, unsigned baud)
+void Serial::DeviceState::set_baud_rate(unsigned baud)
{
#ifdef WIN32
state.BaudRate = baud;
#endif
}
-void set_data_bits(DeviceState &state, unsigned bits)
+void Serial::DeviceState::set_data_bits(unsigned bits)
{
#ifdef WIN32
state.ByteSize = bits;
#endif
}
-void set_parity(DeviceState &state, Serial::Parity par)
+void Serial::DeviceState::set_parity(Serial::Parity par)
{
#ifdef WIN32
switch(par)
#endif
}
-void set_stop_bits(DeviceState &state, unsigned bits)
+void Serial::DeviceState::set_stop_bits(unsigned bits)
{
#ifdef WIN32
switch(bits)
#endif
}
-}
-
-
-namespace Msp {
-namespace IO {
Serial::Serial(const string &descr):
reader(handle, 1024)
void Serial::set_baud_rate(unsigned rate)
{
DeviceState state;
- get_state(handle, state);
- ::set_baud_rate(state, rate);
- set_state(handle, state);
+ state.get_from(handle);
+ state.set_baud_rate(rate);
+ state.apply_to(handle);
}
void Serial::set_data_bits(unsigned bits)
{
DeviceState state;
- get_state(handle, state);
- ::set_data_bits(state, bits);
- set_state(handle, state);
+ state.get_from(handle);
+ state.set_data_bits(bits);
+ state.apply_to(handle);
}
void Serial::set_parity(Parity par)
{
DeviceState state;
- get_state(handle, state);
- ::set_parity(state, par);
- set_state(handle, state);
+ state.get_from(handle);
+ state.set_parity(par);
+ state.apply_to(handle);
}
void Serial::set_stop_bits(unsigned bits)
{
DeviceState state;
- get_state(handle, state);
- ::set_stop_bits(state, bits);
- set_state(handle, state);
+ state.get_from(handle);
+ state.set_stop_bits(bits);
+ state.apply_to(handle);
}
void Serial::set_parameters(const string ¶ms)
throw invalid_argument("Serial::set_parameters stop_bits");
DeviceState state;
- get_state(handle, state);
- ::set_baud_rate(state, lexical_cast<unsigned>(params.substr(0, i)));
- ::set_data_bits(state, params[i+1]-'0');
- ::set_parity(state, (params[i+2]=='E' ? EVEN : params[i+2]=='O' ? ODD : NONE));
- ::set_stop_bits(state, params[i+3]-'0');
- set_state(handle, state);
+ state.get_from(handle);
+ state.set_baud_rate(lexical_cast<unsigned>(params.substr(0, i)));
+ state.set_data_bits(params[i+1]-'0');
+ state.set_parity((params[i+2]=='E' ? EVEN : params[i+2]=='O' ? ODD : NONE));
+ state.set_stop_bits(params[i+3]-'0');
+ state.apply_to(handle);
}
unsigned Serial::do_write(const char *buf, unsigned size)