FACT++  1.0
bool StateMachineImp::PostEvent ( std::ostream &  lout,
const std::string &  str 
)

Post an event to the event queue.

With this function commands are posted to the event queue. The data is not given as binary data but as a string instead. It is converted according to the format of the corresponding event and an event is posted to the queue if successfull.

Parameters
loutStream to which output should be redirected event should be for.
strCommand with data, e.g. "COMMAND 1 2 3 4 5 test"
Returns
false if no event was posted to the queue. If PostEvent(EventImp&,const char*, size_t) was called return its return value

Definition at line 211 of file StateMachineImp.cc.

References FindEvent(), fName, EventImp::GetFormat(), Converter::GetVector(), kBlue, and kRed.

Referenced by StateMachineDim::commandHandler(), EnableBuffer(), StateMachineDim::infoHandler(), PostEvent(), and LocalControl< ConsoleStream >::Process().

212 {
213  // Find the delimiter between the command name and the data
214  size_t p0 = str.find_first_of(' ');
215  if (p0==string::npos)
216  p0 = str.length();
217 
218  // Compile the command which will be sent to the state-machine
219  const string name = fName + "/" + str.substr(0, p0);
220 
221  // Check if this command is existing at all
222  EventImp *evt = FindEvent(name);
223  if (!evt)
224  {
225  lout << kRed << "Unknown command '" << name << "'" << endl;
226  return false;
227  }
228 
229  // Get the format of the event data
230  const string fmt = evt->GetFormat();
231 
232  // Convert the user entered data according to the format string
233  // into a data block which will be attached to the event
234 #ifndef DEBUG
235  ostringstream sout;
236  const Converter conv(sout, fmt, false);
237 #else
238  const Converter conv(lout, fmt, false);
239 #endif
240  if (!conv)
241  {
242  lout << kRed << "Couldn't properly parse the format... ignored." << endl;
243  return false;
244  }
245 
246  try
247  {
248 #ifdef DEBUG
249  lout << kBlue << name;
250 #endif
251  const vector<char> v = conv.GetVector(str.substr(p0));
252 #ifdef DEBUG
253  lout << endl;
254 #endif
255 
256  return PostEvent(*evt, v.data(), v.size());
257  }
258  catch (const std::runtime_error &e)
259  {
260  lout << endl << kRed << e.what() << endl;
261  }
262 
263  return false;
264 }
A general base-class describing events issues in a state machine.
Definition: EventImp.h:11
bool PostEvent(std::ostream &lout, const std::string &str)
Post an event to the event queue.
char str[80]
Definition: test_client.c:7
Set color Red.
Definition: WindowLog.h:17
EventImp * FindEvent(const std::string &evt)
virtual std::string GetFormat() const
Definition: EventImp.h:52
Set color Blue.
Definition: WindowLog.h:20
std::string fName
A compiler for the DIM data format string.
Definition: Converter.h:16

+ Here is the call graph for this function:

+ Here is the caller graph for this function: