Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

Committer:
jmarkel44
Date:
Thu Oct 20 15:30:21 2016 +0000
Revision:
242:3b0086a6d625
Parent:
223:1a03451c0870
Child:
268:50bed2502270
use of new JSON parser

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jmarkel44 70:7427f4959201 1 /******************************************************************************
jmarkel44 70:7427f4959201 2 *
jmarkel44 70:7427f4959201 3 * File: OutputTask.cpp
jmarkel44 70:7427f4959201 4 * Desciption: source for the ICE Output task
jmarkel44 70:7427f4959201 5 *
jmarkel44 70:7427f4959201 6 *****************************************************************************/
jmarkel44 67:49f266601d83 7 #include "OutputTask.h"
jmarkel44 48:1c7861d80d16 8 #include "global.h"
jmarkel44 242:3b0086a6d625 9 #include "cJSON.h"
jmarkel44 94:18ae2fd82638 10 #include "ModbusMasterApi.h"
davidjhoward 120:539b20bd3816 11 #include "LoggerApi.h"
jmarkel44 185:5ac6ab1ed875 12 #include "Control.h"
jmarkel44 70:7427f4959201 13 #include <vector>
jmarkel44 77:43e0a3d9e536 14 #include <string>
jmarkel44 77:43e0a3d9e536 15 #include <algorithm>
jmarkel44 48:1c7861d80d16 16
jmarkel44 114:c24aebb8b473 17 // local functions
jmarkel44 67:49f266601d83 18 static int createOutput(const char *controlFile);
jmarkel44 66:db1425574b58 19 static void loadPersistentOutputs(void);
jmarkel44 195:21df85341cb3 20 static void writeOutputs(const std::string, const std::string);
jmarkel44 212:289f63158d2b 21 static int enableOutputReqHandler(OutputControlMsg_t *msg);
jmarkel44 212:289f63158d2b 22 static int disableOutputReqHandler(OutputControlMsg_t *msg);
jmarkel44 72:3754b352f156 23 static int unregisterControl(const char *id, unsigned int pri, const char *output);
jmarkel44 71:34856d21f2bf 24
jmarkel44 84:7b7cad3ba139 25 // The Output Map
jmarkel44 114:c24aebb8b473 26 //
jmarkel44 84:7b7cad3ba139 27 // this is the main data structure used to distinguish which control has
jmarkel44 84:7b7cad3ba139 28 // priority of an output. the layout is as-follows:
jmarkel44 84:7b7cad3ba139 29 //
jmarkel44 212:289f63158d2b 30 // outputMap["o_rly1"]-> Control<"ManControl_rly1", 100, ON > <<- highest pri control manipulates relay
jmarkel44 212:289f63158d2b 31 // Control<"SetpointControl_rly1", 800, OFF> <<- lowest pri (queued up)
jmarkel44 212:289f63158d2b 32 //
jmarkel44 212:289f63158d2b 33 // outputMap["o_rly2"]-> Control<"SetpointControl_rly2", 800, ON >
jmarkel44 212:289f63158d2b 34 //
jmarkel44 217:d5a2ff093319 35 // outputMap["o_rly3"]-> Control<"TimerControl_rly3", 700, ON>
jmarkel44 212:289f63158d2b 36 //
jmarkel44 84:7b7cad3ba139 37 //
jmarkel44 84:7b7cad3ba139 38 // The Control Vector (per relay) is always sorted by priority, whereas
jmarkel44 183:44f7fea6b208 39 // the highest priority control is at the front (v.front()) of the
jmarkel44 114:c24aebb8b473 40 // list.
jmarkel44 84:7b7cad3ba139 41
jmarkel44 195:21df85341cb3 42 typedef std::map<std::string, vector<Control> > StringOutputVector_t;
jmarkel44 77:43e0a3d9e536 43 StringOutputVector_t outputMap;
jmarkel44 66:db1425574b58 44
jmarkel44 84:7b7cad3ba139 45 // operator for sorting the outputs vectors per output
jmarkel44 80:b12b0adfcdc2 46 bool operator<(const Control &control1, const Control &control2)
jmarkel44 80:b12b0adfcdc2 47 {
jmarkel44 77:43e0a3d9e536 48 return control1.getPriority() < control2.getPriority();
jmarkel44 77:43e0a3d9e536 49 }
jmarkel44 63:0ded43237b22 50
jmarkel44 70:7427f4959201 51 /*****************************************************************************
jmarkel44 70:7427f4959201 52 * Function: OutputTask
jmarkel44 70:7427f4959201 53 * Description: Main entry point for the Output Task
jmarkel44 70:7427f4959201 54 *
jmarkel44 70:7427f4959201 55 * @param args -> not used
jmarkel44 70:7427f4959201 56 * @return none
jmarkel44 70:7427f4959201 57 *****************************************************************************/
jmarkel44 48:1c7861d80d16 58 void OutputTask(void const *args)
jmarkel44 48:1c7861d80d16 59 {
jmarkel44 80:b12b0adfcdc2 60 int rc;
jmarkel44 51:66b820f203a5 61 UNUSED(args);
jmarkel44 70:7427f4959201 62
jmarkel44 67:49f266601d83 63 printf("\r%s has started...\n", __func__);
jmarkel44 63:0ded43237b22 64
jmarkel44 66:db1425574b58 65 loadPersistentOutputs();
jmarkel44 75:96512ccc0443 66 osSignalSet(mainThreadId, sig_output_continue);
jmarkel44 75:96512ccc0443 67
jmarkel44 48:1c7861d80d16 68 while (true) {
jmarkel44 51:66b820f203a5 69 // wait for an event
jmarkel44 56:225786c56315 70 osEvent evt = OutputMasterMailBox.get();
jmarkel44 51:66b820f203a5 71 if (evt.status == osEventMail) {
jmarkel44 80:b12b0adfcdc2 72
jmarkel44 63:0ded43237b22 73 OutputControlMsg_t *msg = (OutputControlMsg_t*) evt.value.p;
jmarkel44 63:0ded43237b22 74
jmarkel44 63:0ded43237b22 75 switch ( msg->action ) {
jmarkel44 63:0ded43237b22 76 case ACTION_NEW:
jmarkel44 63:0ded43237b22 77 // read the file and and create an output entry
jmarkel44 80:b12b0adfcdc2 78 rc = createOutput(msg->controlFile);
jmarkel44 80:b12b0adfcdc2 79 if ( rc != 0 ) {
jmarkel44 80:b12b0adfcdc2 80 logError("%s: failed to create output %s\n",
jmarkel44 80:b12b0adfcdc2 81 __func__, msg->controlFile);
jmarkel44 80:b12b0adfcdc2 82 }
jmarkel44 63:0ded43237b22 83 break;
jmarkel44 71:34856d21f2bf 84 case ACTION_CONTROL_ON:
jmarkel44 115:1558e01d04c6 85 logInfo("%s is requesting ON control of %s", msg->id, msg->output_tag);
jmarkel44 212:289f63158d2b 86 rc = enableOutputReqHandler(msg);
jmarkel44 80:b12b0adfcdc2 87 if ( rc != 0 ) {
jmarkel44 80:b12b0adfcdc2 88 logError("%s: failed to enabled output for %s",
jmarkel44 80:b12b0adfcdc2 89 __func__, msg->id);
jmarkel44 80:b12b0adfcdc2 90 }
jmarkel44 71:34856d21f2bf 91 break;
jmarkel44 71:34856d21f2bf 92 case ACTION_CONTROL_OFF:
jmarkel44 115:1558e01d04c6 93 logInfo("%s is requesting OFF control of %s", msg->id, msg->output_tag);
jmarkel44 212:289f63158d2b 94 rc = disableOutputReqHandler(msg);
jmarkel44 80:b12b0adfcdc2 95 if ( rc != 0 ) {
jmarkel44 80:b12b0adfcdc2 96 printf("%s: failed to disabled output for %s",
jmarkel44 80:b12b0adfcdc2 97 __func__, msg->id);
jmarkel44 80:b12b0adfcdc2 98 }
jmarkel44 71:34856d21f2bf 99 break;
jmarkel44 72:3754b352f156 100 case ACTION_CONTROL_UNREGISTER:
jmarkel44 115:1558e01d04c6 101 logInfo("%s is requesting its deletion from %s", msg->id, msg->output_tag);
jmarkel44 115:1558e01d04c6 102 rc = unregisterControl(msg->id, msg->priority, msg->output_tag);
jmarkel44 80:b12b0adfcdc2 103 if ( rc != 0 ) {
jmarkel44 80:b12b0adfcdc2 104 printf("%s: failed to unregister control %s",
jmarkel44 84:7b7cad3ba139 105 __func__, msg->id);
jmarkel44 80:b12b0adfcdc2 106 }
jmarkel44 72:3754b352f156 107 break;
jmarkel44 63:0ded43237b22 108 default:
jmarkel44 63:0ded43237b22 109 break;
jmarkel44 63:0ded43237b22 110 }
jmarkel44 63:0ded43237b22 111
jmarkel44 56:225786c56315 112 // free the message
jmarkel44 56:225786c56315 113 OutputMasterMailBox.free(msg);
jmarkel44 114:c24aebb8b473 114
jmarkel44 114:c24aebb8b473 115 // refresh the outputs
jmarkel44 195:21df85341cb3 116 writeOutputs(msg->id, msg->output_tag);
jmarkel44 84:7b7cad3ba139 117 }
jmarkel44 84:7b7cad3ba139 118 }
jmarkel44 84:7b7cad3ba139 119 }
jmarkel44 84:7b7cad3ba139 120
jmarkel44 128:534bf29132f8 121 /*****************************************************************************
jmarkel44 128:534bf29132f8 122 * Function: recordEvent
jmarkel44 133:c871de2d2b90 123 * Description: send an event to the logger
jmarkel44 128:534bf29132f8 124 *
jmarkel44 133:c871de2d2b90 125 * @param output -> the output channel
jmarkel44 133:c871de2d2b90 126 * @param control -> the control, this can be null
jmarkel44 128:534bf29132f8 127 * @return none
jmarkel44 128:534bf29132f8 128 *****************************************************************************/
jmarkel44 115:1558e01d04c6 129 void recordEvent(std::string output, const Control *control)
jmarkel44 114:c24aebb8b473 130 {
jmarkel44 121:650205ffa656 131
jmarkel44 115:1558e01d04c6 132 EventReasonStruct_t ev;
jmarkel44 121:650205ffa656 133 ModbusValue input_value;
jmarkel44 121:650205ffa656 134 ModbusValue output_value;
jmarkel44 115:1558e01d04c6 135 memset(&ev, 0, sizeof(ev));
jmarkel44 121:650205ffa656 136
jmarkel44 217:d5a2ff093319 137 // if there's no control, that means the only control that was on
jmarkel44 217:d5a2ff093319 138 // the relay stack has been destroyed, so we'll send a NO CONTROL
jmarkel44 217:d5a2ff093319 139 // code.
jmarkel44 128:534bf29132f8 140 if ( !control ) {
jmarkel44 128:534bf29132f8 141 ev.eventReason = EVENT_REASON_NO_CONTROL;
jmarkel44 128:534bf29132f8 142 ModbusMasterReadRegister(output, &output_value);
jmarkel44 128:534bf29132f8 143 strncpy(ev.outputTag, output.c_str(), sizeof(ev.outputTag));
jmarkel44 128:534bf29132f8 144 ev.outputValue = output_value.value;
jmarkel44 128:534bf29132f8 145
jmarkel44 128:534bf29132f8 146 printf("\rEVENT RECORD\n");
jmarkel44 128:534bf29132f8 147 printf("\rev.eventReason = %d\n", ev.eventReason);
jmarkel44 128:534bf29132f8 148 printf("\rev.outputTag = %s\n", ev.outputTag);
jmarkel44 128:534bf29132f8 149 printf("\rev.outputValue = %.02f\n", ev.outputValue);
jmarkel44 128:534bf29132f8 150
jmarkel44 128:534bf29132f8 151 EventLoggerApi(ev);
jmarkel44 128:534bf29132f8 152 return;
jmarkel44 128:534bf29132f8 153 }
jmarkel44 128:534bf29132f8 154
jmarkel44 115:1558e01d04c6 155 switch ( control->getControlType() ) {
jmarkel44 121:650205ffa656 156 case CONTROL_SETPOINT:
jmarkel44 223:1a03451c0870 157 case CONTROL_COMPOSITE:
jmarkel44 115:1558e01d04c6 158 ev.eventReason = EVENT_REASON_AUTO;
jmarkel44 115:1558e01d04c6 159 strncpy(ev.inputTag, control->getInput().c_str(), sizeof(ev.inputTag));
jmarkel44 115:1558e01d04c6 160 strncpy(ev.outputTag, output.c_str(), sizeof(ev.outputTag));
jmarkel44 115:1558e01d04c6 161 ModbusMasterReadRegister(control->getInput(), &input_value);
jmarkel44 115:1558e01d04c6 162 ModbusMasterReadRegister(output, &output_value);
jmarkel44 115:1558e01d04c6 163 ev.inputValue = input_value.value;
jmarkel44 115:1558e01d04c6 164 ev.outputValue = output_value.value;
jmarkel44 115:1558e01d04c6 165 printf("\rEVENT RECORD\n");
jmarkel44 115:1558e01d04c6 166 printf("\rev.eventReason = %d\n", ev.eventReason);
jmarkel44 115:1558e01d04c6 167 printf("\rev.outputTag = %s\n", ev.outputTag);
jmarkel44 115:1558e01d04c6 168 printf("\rev.outputValue = %.02f\n", ev.outputValue);
jmarkel44 115:1558e01d04c6 169 EventLoggerApi(ev);
jmarkel44 115:1558e01d04c6 170 break;
jmarkel44 133:c871de2d2b90 171
jmarkel44 115:1558e01d04c6 172 case CONTROL_MANUAL:
jmarkel44 121:650205ffa656 173 ev.eventReason = EVENT_REASON_MANUAL;
jmarkel44 121:650205ffa656 174 strncpy(ev.outputTag, output.c_str(), sizeof(ev.outputTag));
jmarkel44 121:650205ffa656 175 ModbusMasterReadRegister(output, &output_value);
jmarkel44 121:650205ffa656 176 ev.outputValue = output_value.value;
jmarkel44 121:650205ffa656 177 printf("\rEVENT RECORD\n");
jmarkel44 121:650205ffa656 178 printf("\rev.eventReason = %d\n", ev.eventReason);
jmarkel44 121:650205ffa656 179 printf("\rev.outputTag = %s\n", ev.outputTag);
jmarkel44 121:650205ffa656 180 printf("\rev.outputValue = %.02f\n", ev.outputValue);
jmarkel44 121:650205ffa656 181 EventLoggerApi(ev);
jmarkel44 121:650205ffa656 182 break;
jmarkel44 133:c871de2d2b90 183
jmarkel44 133:c871de2d2b90 184 case CONTROL_TIMER:
jmarkel44 133:c871de2d2b90 185 ev.eventReason = EVENT_REASON_TIMER;
jmarkel44 133:c871de2d2b90 186 strncpy(ev.outputTag, output.c_str(), sizeof(ev.outputTag));
jmarkel44 133:c871de2d2b90 187 ModbusMasterReadRegister(output, &output_value);
jmarkel44 133:c871de2d2b90 188 ev.outputValue = output_value.value;
jmarkel44 133:c871de2d2b90 189 printf("\rEVENT RECORD\n");
jmarkel44 133:c871de2d2b90 190 printf("\rev.eventReason = %d\n", ev.eventReason);
jmarkel44 133:c871de2d2b90 191 printf("\rev.outputTag = %s\n", ev.outputTag);
jmarkel44 133:c871de2d2b90 192 printf("\rev.outputValue = %.02f\n", ev.outputValue);
jmarkel44 133:c871de2d2b90 193 EventLoggerApi(ev);
jmarkel44 133:c871de2d2b90 194 break;
jmarkel44 133:c871de2d2b90 195
jmarkel44 115:1558e01d04c6 196 default:
jmarkel44 115:1558e01d04c6 197 break;
jmarkel44 115:1558e01d04c6 198 }
jmarkel44 114:c24aebb8b473 199 }
jmarkel44 84:7b7cad3ba139 200
jmarkel44 84:7b7cad3ba139 201 /*****************************************************************************
jmarkel44 195:21df85341cb3 202 * Function: writeOutputs
jmarkel44 84:7b7cad3ba139 203 * Description: send a message to the modbus master of who's in control
jmarkel44 84:7b7cad3ba139 204 *
jmarkel44 84:7b7cad3ba139 205 *
jmarkel44 217:d5a2ff093319 206 * @param id -> control identifier
jmarkel44 217:d5a2ff093319 207 * @param output_tag -> the output to write
jmarkel44 84:7b7cad3ba139 208 * @return none
jmarkel44 84:7b7cad3ba139 209 *****************************************************************************/
jmarkel44 195:21df85341cb3 210 static void writeOutputs(const std::string id, const std::string output_tag)
jmarkel44 84:7b7cad3ba139 211 {
jmarkel44 195:21df85341cb3 212 UNUSED(id);
jmarkel44 195:21df85341cb3 213
jmarkel44 133:c871de2d2b90 214 if ( output_tag.empty() ) return;
jmarkel44 133:c871de2d2b90 215
jmarkel44 84:7b7cad3ba139 216 StringOutputVector_t::iterator pos;
jmarkel44 84:7b7cad3ba139 217
jmarkel44 195:21df85341cb3 218 // find the output
jmarkel44 128:534bf29132f8 219 pos = outputMap.find(output_tag);
jmarkel44 128:534bf29132f8 220 if ( pos != outputMap.end() ) {
jmarkel44 195:21df85341cb3 221 // we found the ouput, but nothing's controlling it...
jmarkel44 128:534bf29132f8 222 if ( pos->second.empty() ) {
jmarkel44 185:5ac6ab1ed875 223 ModbusMasterWriteRegister(pos->first, RELAY_STATUS_NOT_CONTROLLED);
jmarkel44 128:534bf29132f8 224 recordEvent(pos->first, NULL);
jmarkel44 195:21df85341cb3 225 } else {
jmarkel44 185:5ac6ab1ed875 226 ModbusMasterWriteRegister(pos->first, pos->second.begin()->getMappedState());
jmarkel44 128:534bf29132f8 227 recordEvent(pos->first, (Control*)pos->second.begin());
jmarkel44 128:534bf29132f8 228 }
jmarkel44 128:534bf29132f8 229 } else {
jmarkel44 128:534bf29132f8 230 logError("%s failed to find the selected output %s",
jmarkel44 128:534bf29132f8 231 __func__, output_tag.c_str());
jmarkel44 128:534bf29132f8 232 }
jmarkel44 66:db1425574b58 233 }
jmarkel44 66:db1425574b58 234
jmarkel44 70:7427f4959201 235 /*****************************************************************************
jmarkel44 72:3754b352f156 236 * Function: createOutput
jmarkel44 72:3754b352f156 237 * Description:
jmarkel44 71:34856d21f2bf 238 *
jmarkel44 217:d5a2ff093319 239 * @param outputFile -> name of output file
jmarkel44 71:34856d21f2bf 240 * @return none
jmarkel44 71:34856d21f2bf 241 *****************************************************************************/
jmarkel44 77:43e0a3d9e536 242 static int createOutput(const char *outputFile)
jmarkel44 66:db1425574b58 243 {
jmarkel44 177:9ec90c8e3ce1 244 char dataBuf[MAX_FILE_SIZE];
jmarkel44 77:43e0a3d9e536 245 int status = GLOBAL_mdot->readUserFile(outputFile, (void *)dataBuf, sizeof(dataBuf));
jmarkel44 67:49f266601d83 246 if ( status != true ) {
jmarkel44 77:43e0a3d9e536 247 logError("%s failed to read %s", __func__, outputFile);
jmarkel44 66:db1425574b58 248 return -1;
jmarkel44 66:db1425574b58 249 }
jmarkel44 195:21df85341cb3 250
jmarkel44 242:3b0086a6d625 251 cJSON * root = cJSON_Parse(dataBuf);
jmarkel44 242:3b0086a6d625 252 std::string id = cJSON_GetObjectItem(root,"id")->valuestring;
jmarkel44 242:3b0086a6d625 253
jmarkel44 71:34856d21f2bf 254 vector<Control> v;
jmarkel44 71:34856d21f2bf 255 outputMap[id] = v;
jmarkel44 71:34856d21f2bf 256
jmarkel44 71:34856d21f2bf 257 return 0;
jmarkel44 71:34856d21f2bf 258 }
jmarkel44 71:34856d21f2bf 259
jmarkel44 71:34856d21f2bf 260 /*****************************************************************************
jmarkel44 212:289f63158d2b 261 * Function: enableOutputReqHandler
jmarkel44 217:d5a2ff093319 262 * Description: handle a request to enable an output
jmarkel44 71:34856d21f2bf 263 *
jmarkel44 217:d5a2ff093319 264 * @param msg -> the message request
jmarkel44 217:d5a2ff093319 265 * @return -1 on error
jmarkel44 71:34856d21f2bf 266 *****************************************************************************/
jmarkel44 212:289f63158d2b 267 static int enableOutputReqHandler(OutputControlMsg_t *msg)
jmarkel44 71:34856d21f2bf 268 {
jmarkel44 71:34856d21f2bf 269 // attempt to find the output in the map
jmarkel44 71:34856d21f2bf 270 StringOutputVector_t::iterator pos;
jmarkel44 71:34856d21f2bf 271
jmarkel44 115:1558e01d04c6 272 pos = outputMap.find(msg->output_tag);
jmarkel44 71:34856d21f2bf 273 if ( pos == outputMap.end() ) {
jmarkel44 71:34856d21f2bf 274 printf("%s: failed to find the designated output %s\n",
jmarkel44 115:1558e01d04c6 275 __func__, msg->output_tag);
jmarkel44 71:34856d21f2bf 276 return -1;
jmarkel44 71:34856d21f2bf 277 }
jmarkel44 71:34856d21f2bf 278
jmarkel44 71:34856d21f2bf 279 if ( pos->second.empty() ) {
jmarkel44 71:34856d21f2bf 280 // this is a new request
jmarkel44 195:21df85341cb3 281 std::string cid(msg->id);
jmarkel44 195:21df85341cb3 282 std::string input(msg->input_tag);
jmarkel44 115:1558e01d04c6 283 Control c(cid, msg->controlType, input, msg->priority, CONTROL_ON);
jmarkel44 71:34856d21f2bf 284 pos->second.push_back(c);
jmarkel44 71:34856d21f2bf 285 } else {
jmarkel44 71:34856d21f2bf 286 // find this control in the list
jmarkel44 71:34856d21f2bf 287 vector<Control>::iterator v;
jmarkel44 71:34856d21f2bf 288 for ( v = pos->second.begin(); v != pos->second.end(); ++v ) {
jmarkel44 115:1558e01d04c6 289 if ( strcmp(v->getId().c_str(), msg->id) == 0 ) {
jmarkel44 71:34856d21f2bf 290 v->setState(CONTROL_ON);
jmarkel44 77:43e0a3d9e536 291 break;
jmarkel44 71:34856d21f2bf 292 }
jmarkel44 71:34856d21f2bf 293 }
jmarkel44 77:43e0a3d9e536 294 if ( v == pos->second.end() ) {
jmarkel44 77:43e0a3d9e536 295 // this is a new request, so add it and sort the vector
jmarkel44 195:21df85341cb3 296 std::string cid(msg->id);
jmarkel44 195:21df85341cb3 297 std::string input(msg->input_tag);
jmarkel44 115:1558e01d04c6 298 Control c(cid, msg->controlType, input, msg->priority, CONTROL_ON);
jmarkel44 77:43e0a3d9e536 299 pos->second.push_back(c);
jmarkel44 77:43e0a3d9e536 300 std::sort(pos->second.begin(), pos->second.end());
jmarkel44 77:43e0a3d9e536 301 }
jmarkel44 71:34856d21f2bf 302 }
jmarkel44 71:34856d21f2bf 303
jmarkel44 71:34856d21f2bf 304 return 0;
jmarkel44 71:34856d21f2bf 305 }
jmarkel44 71:34856d21f2bf 306
jmarkel44 71:34856d21f2bf 307 /*****************************************************************************
jmarkel44 212:289f63158d2b 308 * Function: disableOutputReqHandler
jmarkel44 217:d5a2ff093319 309 * Description: handle a request to disable an output
jmarkel44 71:34856d21f2bf 310 *
jmarkel44 217:d5a2ff093319 311 * @param msg -> the message request
jmarkel44 71:34856d21f2bf 312 * @return none
jmarkel44 71:34856d21f2bf 313 *****************************************************************************/
jmarkel44 212:289f63158d2b 314 static int disableOutputReqHandler(OutputControlMsg_t *msg)
jmarkel44 71:34856d21f2bf 315 {
jmarkel44 71:34856d21f2bf 316 // attempt to find the output in the map
jmarkel44 71:34856d21f2bf 317 StringOutputVector_t::iterator pos;
jmarkel44 71:34856d21f2bf 318
jmarkel44 115:1558e01d04c6 319 pos = outputMap.find(msg->output_tag);
jmarkel44 71:34856d21f2bf 320 if ( pos == outputMap.end() ) {
jmarkel44 71:34856d21f2bf 321 printf("%s: failed to find the designated output %s\n",
jmarkel44 115:1558e01d04c6 322 __func__, msg->output_tag);
jmarkel44 71:34856d21f2bf 323 return -1;
jmarkel44 71:34856d21f2bf 324 }
jmarkel44 71:34856d21f2bf 325
jmarkel44 80:b12b0adfcdc2 326 // if the control list is empty, push this control on the list
jmarkel44 71:34856d21f2bf 327 if ( pos->second.empty() ) {
jmarkel44 195:21df85341cb3 328 std::string cid(msg->id);
jmarkel44 195:21df85341cb3 329 std::string input(msg->input_tag);
jmarkel44 115:1558e01d04c6 330 Control c(cid, msg->controlType, input, msg->priority, CONTROL_OFF);
jmarkel44 71:34856d21f2bf 331 pos->second.push_back(c);
jmarkel44 71:34856d21f2bf 332 } else {
jmarkel44 71:34856d21f2bf 333 // find this control in the list
jmarkel44 71:34856d21f2bf 334 vector<Control>::iterator v;
jmarkel44 71:34856d21f2bf 335 for ( v = pos->second.begin(); v != pos->second.end(); ++v ) {
jmarkel44 115:1558e01d04c6 336 if ( strcmp(v->getId().c_str(), msg->id) == 0 ) {
jmarkel44 71:34856d21f2bf 337 v->setState(CONTROL_OFF);
jmarkel44 77:43e0a3d9e536 338 break;
jmarkel44 71:34856d21f2bf 339 }
jmarkel44 71:34856d21f2bf 340 }
jmarkel44 80:b12b0adfcdc2 341
jmarkel44 80:b12b0adfcdc2 342 if ( v == pos->second.end() ) {
jmarkel44 80:b12b0adfcdc2 343 // this is a new request, so add it and sort the vector
jmarkel44 195:21df85341cb3 344 std::string cid(msg->id);
jmarkel44 195:21df85341cb3 345 std::string input(msg->input_tag);
jmarkel44 115:1558e01d04c6 346 Control c(cid, msg->controlType, input, msg->priority, CONTROL_OFF);
jmarkel44 80:b12b0adfcdc2 347 pos->second.push_back(c);
jmarkel44 80:b12b0adfcdc2 348 std::sort(pos->second.begin(), pos->second.end());
jmarkel44 80:b12b0adfcdc2 349 }
jmarkel44 71:34856d21f2bf 350 }
jmarkel44 66:db1425574b58 351
jmarkel44 66:db1425574b58 352 return 0;
jmarkel44 66:db1425574b58 353 }
jmarkel44 66:db1425574b58 354
jmarkel44 74:03ccf04998b5 355 /*****************************************************************************
jmarkel44 74:03ccf04998b5 356 * Function: unregisterControl
jmarkel44 74:03ccf04998b5 357 * Description:
jmarkel44 74:03ccf04998b5 358 *
jmarkel44 217:d5a2ff093319 359 * @param id -> control identifier
jmarkel44 217:d5a2ff093319 360 * @param pri -> priority
jmarkel44 217:d5a2ff093319 361 * @param output -> output (e.g. "o_rly05")
jmarkel44 74:03ccf04998b5 362 *
jmarkel44 74:03ccf04998b5 363 * @return 0 on success; -1 on error
jmarkel44 74:03ccf04998b5 364 *****************************************************************************/
jmarkel44 72:3754b352f156 365 static int unregisterControl(const char *id, unsigned int pri, const char *output)
jmarkel44 72:3754b352f156 366 {
jmarkel44 72:3754b352f156 367 // attempt to find the output in the map
jmarkel44 72:3754b352f156 368 StringOutputVector_t::iterator pos;
jmarkel44 80:b12b0adfcdc2 369 bool found = false;
jmarkel44 72:3754b352f156 370
jmarkel44 72:3754b352f156 371 pos = outputMap.find(output);
jmarkel44 72:3754b352f156 372 if ( pos == outputMap.end() ) {
jmarkel44 72:3754b352f156 373 printf("%s: failed to find the designated output %s\n",
jmarkel44 72:3754b352f156 374 __func__, output);
jmarkel44 72:3754b352f156 375 return -1;
jmarkel44 72:3754b352f156 376 }
jmarkel44 72:3754b352f156 377
jmarkel44 72:3754b352f156 378 // find the control in the list
jmarkel44 72:3754b352f156 379 vector<Control>::iterator v;
jmarkel44 72:3754b352f156 380 for ( v = pos->second.begin(); v != pos->second.end(); ++v) {
jmarkel44 72:3754b352f156 381 if ( strcmp(v->getId().c_str(), id) == 0 ) {
jmarkel44 72:3754b352f156 382 // delete this entry
jmarkel44 72:3754b352f156 383 pos->second.erase(v);
jmarkel44 80:b12b0adfcdc2 384 found = true;
jmarkel44 72:3754b352f156 385 break;
jmarkel44 72:3754b352f156 386 }
jmarkel44 74:03ccf04998b5 387 }
jmarkel44 128:534bf29132f8 388
jmarkel44 80:b12b0adfcdc2 389 if ( !found ) {
jmarkel44 80:b12b0adfcdc2 390 logError("%s: failed to find control %s in list", __func__, id);
jmarkel44 80:b12b0adfcdc2 391 return -1;
jmarkel44 80:b12b0adfcdc2 392 }
jmarkel44 72:3754b352f156 393 return 0;
jmarkel44 72:3754b352f156 394 }
jmarkel44 72:3754b352f156 395
jmarkel44 72:3754b352f156 396 /*****************************************************************************
jmarkel44 72:3754b352f156 397 * Function: loadPersistentOutputs
jmarkel44 217:d5a2ff093319 398 * Description: build the output map
jmarkel44 72:3754b352f156 399 *
jmarkel44 217:d5a2ff093319 400 * @param none
jmarkel44 72:3754b352f156 401 * @return none
jmarkel44 72:3754b352f156 402 *****************************************************************************/
jmarkel44 66:db1425574b58 403 static void loadPersistentOutputs(void)
jmarkel44 66:db1425574b58 404 {
jmarkel44 66:db1425574b58 405 bool status;
jmarkel44 242:3b0086a6d625 406 cJSON *root;
jmarkel44 71:34856d21f2bf 407
jmarkel44 77:43e0a3d9e536 408 printf("\rLoading persistent outputs:\n");
jmarkel44 66:db1425574b58 409
jmarkel44 66:db1425574b58 410 std::vector<mDot::mdot_file> file_list = GLOBAL_mdot->listUserFiles();
jmarkel44 70:7427f4959201 411
jmarkel44 66:db1425574b58 412 for (std::vector<mDot::mdot_file>::iterator i = file_list.begin(); i != file_list.end(); ++i) {
jmarkel44 217:d5a2ff093319 413 // load in all of the output files
jmarkel44 67:49f266601d83 414 if( strncmp( i->name, OUTPUT_STR, strlen(OUTPUT_STR)) == 0 ) {
jmarkel44 177:9ec90c8e3ce1 415 char scratchBuf[MAX_FILE_SIZE];
jmarkel44 66:db1425574b58 416
jmarkel44 177:9ec90c8e3ce1 417 status = GLOBAL_mdot->readUserFile(i->name, scratchBuf, MAX_FILE_SIZE);
jmarkel44 66:db1425574b58 418 if( status != true ) {
jmarkel44 217:d5a2ff093319 419 logError("%s: failed to read %s", __func__, i->name);
jmarkel44 66:db1425574b58 420 } else {
jmarkel44 217:d5a2ff093319 421 logInfo("%s: successfully read %s", __func__, i->name);
jmarkel44 66:db1425574b58 422 }
jmarkel44 242:3b0086a6d625 423
jmarkel44 242:3b0086a6d625 424 root = cJSON_Parse(scratchBuf);
jmarkel44 242:3b0086a6d625 425 //parse( json_value, scratchBuf );
jmarkel44 242:3b0086a6d625 426 std::string id = cJSON_GetObjectItem(root,"id")->valuestring;
jmarkel44 77:43e0a3d9e536 427 printf("\r output %s loaded\n", i->name);
jmarkel44 74:03ccf04998b5 428
jmarkel44 80:b12b0adfcdc2 429 // emplace the empty control vector into the output map
jmarkel44 71:34856d21f2bf 430 vector<Control> v;
jmarkel44 71:34856d21f2bf 431 outputMap[id] = v;
jmarkel44 66:db1425574b58 432 }
jmarkel44 66:db1425574b58 433 }
jmarkel44 185:5ac6ab1ed875 434 }
jmarkel44 217:d5a2ff093319 435
jmarkel44 217:d5a2ff093319 436 /*****************************************************************************
jmarkel44 217:d5a2ff093319 437 * Function: DisplayOutputs
jmarkel44 217:d5a2ff093319 438 * Description: Display a list of outputs and their controls
jmarkel44 217:d5a2ff093319 439 *
jmarkel44 217:d5a2ff093319 440 * @param none
jmarkel44 217:d5a2ff093319 441 * @return none
jmarkel44 217:d5a2ff093319 442 *****************************************************************************/
jmarkel44 217:d5a2ff093319 443 void DisplayOutputs(void)
jmarkel44 217:d5a2ff093319 444 {
jmarkel44 217:d5a2ff093319 445 StringOutputVector_t::iterator pos;
jmarkel44 217:d5a2ff093319 446
jmarkel44 217:d5a2ff093319 447 for ( pos = outputMap.begin(); pos != outputMap.end(); ++pos ) {
jmarkel44 217:d5a2ff093319 448 if ( pos->second.empty() ) {
jmarkel44 217:d5a2ff093319 449 printf("\r [%s]-> [no controls] \n", pos->first.c_str());
jmarkel44 217:d5a2ff093319 450 } else {
jmarkel44 217:d5a2ff093319 451 printf("\r [%s]-> ", pos->first.c_str());
jmarkel44 217:d5a2ff093319 452 vector<Control>::iterator i;
jmarkel44 217:d5a2ff093319 453 for ( i = pos->second.begin(); i != pos->second.end(); ++i ) {
jmarkel44 217:d5a2ff093319 454 i->display();
jmarkel44 217:d5a2ff093319 455 }
jmarkel44 217:d5a2ff093319 456 printf("\n");
jmarkel44 217:d5a2ff093319 457 }
jmarkel44 217:d5a2ff093319 458 }
jmarkel44 217:d5a2ff093319 459 printf("\r\n");
jmarkel44 217:d5a2ff093319 460 }