MagAO-X
Operations Applications Utilities Source
stateCodes.hpp
Go to the documentation of this file.
1 /** \file stateCodes.hpp
2  * \brief MagAO-X Application States
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * History:
6  * - 2018-01-20 created by JRM
7  */
8 
9 #ifndef app_stateCodes_hpp
10 #define app_stateCodes_hpp
11 
12 
13 namespace MagAOX
14 {
15 namespace app
16 {
17 
18 /// Scoping struct for application state codes.
19 /** We do not use the enum class feature since it does not have automatic integer conversion.
20  * \ingroup magaoxapp
21  */
22 struct stateCodes
23 {
24 
25  /// The type of the state code.
26  /**
27  */
28  typedef int16_t stateCodeT;
29 
30 
31  /// The numeric codes descrbing an application's state
32  /** \ingroup magaoxapp
33  */
34  enum : stateCodeT { FAILURE=-20, ///< The application has failed, should be used when m_shutdown is set for an error.
35  ERROR=-10, ///< The application has encountered an error, from which it is recovering (with or without intervention)
36  UNINITIALIZED = 0, ///< The application is unitialized, the default
37  INITIALIZED = 1, ///< The application has been initialized, set just before calling appStartup().
38  NODEVICE = 2, ///< No device exists for the application to control.
39  POWEROFF = 4, ///< The device power is off.
40  POWERON = 6, ///< The device power is on.
41  NOTCONNECTED = 8, ///< The application is not connected to the device or service.
42  CONNECTED = 10, ///< The application has connected to the device or service.
43  LOGGEDIN = 15, ///< The application has logged into the device or service
44  CONFIGURING = 20, ///< The application is configuring the device.
45  HOMING = 25, ///< The device is homing.
46  OPERATING = 30, ///< The device is operating, other than homing.
47  READY = 35, ///< The device is ready for operation, but is not operating.
48  SHUTDOWN = 10000 ///< The application has shutdown, set just after calling appShutdown().
49  };
50 
51 
52  /// Get an ASCII string corresponding to an application stateCode.
53  /**
54  * \returns a string with the text name of the stateCode
55  *
56  */
57  static std::string codeText( stateCodeT stateCode /**<[in] the stateCode for which the name is desired*/);
58 
59 }; //struct stateCodes
60 
61 
62 std::string stateCodes::codeText( stateCodeT stateCode )
63 {
64  switch(stateCode)
65  {
67  return "FAILURE";
68  case stateCodes::ERROR:
69  return "ERROR";
71  return "UNINITIALIZED";
73  return "INITIALIZED";
75  return "NODEVICE";
77  return "POWEROFF";
79  return "POWERON";
81  return "NOTCONNECTED";
83  return "CONNECTED";
85  return "LOGGEDIN";
87  return "CONFIGURING";
88  case stateCodes::HOMING:
89  return "HOMING";
91  return "OPERATING";
92  case stateCodes::READY:
93  return "READY";
95  return "SHUTDOWN";
96  default:
97  return "UNKNOWN";
98  }
99 
100  return "UNKNOWN";
101 }
102 
103 } //namespace app
104 } //namespace MagAOX
105 
106 #endif //app_stateCodes_hpp
The application has been initialized, set just before calling appStartup().
Definition: stateCodes.hpp:37
The application is not connected to the device or service.
Definition: stateCodes.hpp:41
The device is ready for operation, but is not operating.
Definition: stateCodes.hpp:47
The application is configuring the device.
Definition: stateCodes.hpp:44
The application has logged into the device or service.
Definition: stateCodes.hpp:43
static std::string codeText(stateCodeT stateCode)
Get an ASCII string corresponding to an application stateCode.
Definition: stateCodes.hpp:62
The application is unitialized, the default.
Definition: stateCodes.hpp:36
The device is operating, other than homing.
Definition: stateCodes.hpp:46
The application has encountered an error, from which it is recovering (with or without intervention) ...
Definition: stateCodes.hpp:35
The application has failed, should be used when m_shutdown is set for an error.
Definition: stateCodes.hpp:34
No device exists for the application to control.
Definition: stateCodes.hpp:38
The device is homing.
Definition: stateCodes.hpp:45
The application has shutdown, set just after calling appShutdown().
Definition: stateCodes.hpp:48
int16_t stateCodeT
The type of the state code.
Definition: stateCodes.hpp:28
Scoping struct for application state codes.
Definition: stateCodes.hpp:22
The device power is off.
Definition: stateCodes.hpp:39
The application has connected to the device or service.
Definition: stateCodes.hpp:42
The device power is on.
Definition: stateCodes.hpp:40