Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed
Fork of ICE by
src/ConfigurationHandler/Controls/ManualControl.cpp@276:851554207c77, 2016-10-26 (annotated)
- Committer:
- jmarkel44
- Date:
- Wed Oct 26 20:31:39 2016 +0000
- Revision:
- 276:851554207c77
- Parent:
- 260:fe726583ba1d
cJSON frees
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| jmarkel44 | 96:807f04bd5256 | 1 | /****************************************************************************** | 
| jmarkel44 | 96:807f04bd5256 | 2 | * | 
| jmarkel44 | 96:807f04bd5256 | 3 | * File: ManualControl.cpp | 
| jmarkel44 | 96:807f04bd5256 | 4 | * Desciption: ICE Manual Control Class implementation | 
| jmarkel44 | 96:807f04bd5256 | 5 | * | 
| jmarkel44 | 96:807f04bd5256 | 6 | *****************************************************************************/ | 
| jmarkel44 | 96:807f04bd5256 | 7 | #include "ManualControl.h" | 
| jmarkel44 | 96:807f04bd5256 | 8 | #include "mDot.h" | 
| jmarkel44 | 242:3b0086a6d625 | 9 | #include "cJSON.h" | 
| jmarkel44 | 96:807f04bd5256 | 10 | #include "ModbusMasterApi.h" | 
| jmarkel44 | 96:807f04bd5256 | 11 | #include "global.h" | 
| jmarkel44 | 96:807f04bd5256 | 12 | #include <string> | 
| jmarkel44 | 205:3c84af5f711f | 13 | #include <iostream> | 
| jmarkel44 | 205:3c84af5f711f | 14 | #include <iomanip> | 
| jmarkel44 | 96:807f04bd5256 | 15 | |
| jmarkel44 | 96:807f04bd5256 | 16 | extern mDot *GLOBAL_mdot; | 
| jmarkel44 | 96:807f04bd5256 | 17 | |
| jmarkel44 | 217:d5a2ff093319 | 18 | // | 
| jmarkel44 | 192:052a419837fa | 19 | // method: load | 
| jmarkel44 | 192:052a419837fa | 20 | // description: open the configuration file and assign data to the | 
| jmarkel44 | 96:807f04bd5256 | 21 | // setpoint control object | 
| jmarkel44 | 96:807f04bd5256 | 22 | // | 
| jmarkel44 | 96:807f04bd5256 | 23 | // @param controlFile -> name of the control file | 
| jmarkel44 | 96:807f04bd5256 | 24 | // @return true if data is assigned; false on error | 
| jmarkel44 | 217:d5a2ff093319 | 25 | // | 
| jmarkel44 | 96:807f04bd5256 | 26 | bool ManualControl::load(string _controlFile) | 
| jmarkel44 | 96:807f04bd5256 | 27 | { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 28 | controlFile = _controlFile; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 29 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 30 | // open and read from the control file | 
| jmarkel44 | 97:5cf6ab71dcd0 | 31 | mDot::mdot_file file = GLOBAL_mdot->openUserFile(controlFile.c_str(), mDot::FM_RDONLY); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 32 | if ( file.fd < 0 ) | 
| jmarkel44 | 97:5cf6ab71dcd0 | 33 | return false; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 34 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 35 | // read the data into a buffer | 
| jmarkel44 | 177:9ec90c8e3ce1 | 36 | char dataBuf[MAX_FILE_SIZE]; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 37 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 38 | int bytes_read = GLOBAL_mdot->readUserFile(file, (void *)dataBuf, sizeof(dataBuf)); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 39 | if ( bytes_read != sizeof(dataBuf) ) { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 40 | logError("%s: failed to read %d bytes from %s", __func__, sizeof(dataBuf), controlFile.c_str()); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 41 | // caller should destroy the object | 
| jmarkel44 | 97:5cf6ab71dcd0 | 42 | return false; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 43 | } | 
| jmarkel44 | 97:5cf6ab71dcd0 | 44 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 45 | // close the file | 
| jmarkel44 | 97:5cf6ab71dcd0 | 46 | GLOBAL_mdot->closeUserFile(file); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 47 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 48 | // parse the json data | 
| jmarkel44 | 242:3b0086a6d625 | 49 | cJSON * root = cJSON_Parse(dataBuf); | 
| jmarkel44 | 192:052a419837fa | 50 | |
| jmarkel44 | 260:fe726583ba1d | 51 | if ( !cJSON_HasObjectItem(root, "id") || | 
| jmarkel44 | 260:fe726583ba1d | 52 | !cJSON_HasObjectItem(root, "output") || | 
| jmarkel44 | 260:fe726583ba1d | 53 | !cJSON_HasObjectItem(root, "type") || | 
| jmarkel44 | 260:fe726583ba1d | 54 | !cJSON_HasObjectItem(root, "priority") || | 
| jmarkel44 | 260:fe726583ba1d | 55 | !cJSON_HasObjectItem(root, "duration") || | 
| jmarkel44 | 260:fe726583ba1d | 56 | !cJSON_HasObjectItem(root, "setpoint") || | 
| jmarkel44 | 260:fe726583ba1d | 57 | !cJSON_HasObjectItem(root, "state") || | 
| jmarkel44 | 260:fe726583ba1d | 58 | !cJSON_HasObjectItem(root, "percent") ) { | 
| jmarkel44 | 260:fe726583ba1d | 59 | logError("Manual control is missing expected tags\n"); | 
| jmarkel44 | 276:851554207c77 | 60 | cJSON_Delete(root); | 
| jmarkel44 | 260:fe726583ba1d | 61 | return false; | 
| jmarkel44 | 260:fe726583ba1d | 62 | } | 
| jmarkel44 | 260:fe726583ba1d | 63 | |
| jmarkel44 | 242:3b0086a6d625 | 64 | id = cJSON_GetObjectItem(root,"id")->valuestring; | 
| jmarkel44 | 242:3b0086a6d625 | 65 | output = cJSON_GetObjectItem(root,"output")->valuestring; | 
| jmarkel44 | 242:3b0086a6d625 | 66 | type = atoi(cJSON_GetObjectItem(root,"type")->valuestring); | 
| jmarkel44 | 242:3b0086a6d625 | 67 | priority = atoi(cJSON_GetObjectItem(root, "priority")->valuestring); | 
| jmarkel44 | 242:3b0086a6d625 | 68 | duration = atoi(cJSON_GetObjectItem(root, "duration")->valuestring); | 
| jmarkel44 | 242:3b0086a6d625 | 69 | setpoint = atof(cJSON_GetObjectItem(root, "setpoint")->valuestring); | 
| jmarkel44 | 242:3b0086a6d625 | 70 | state = atoi(cJSON_GetObjectItem(root, "state")->valuestring); | 
| jmarkel44 | 242:3b0086a6d625 | 71 | percent = atoi(cJSON_GetObjectItem(root, "percent")->valuestring); | 
| jmarkel44 | 276:851554207c77 | 72 | |
| jmarkel44 | 276:851554207c77 | 73 | cJSON_Delete(root); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 74 | |
| jmarkel44 | 96:807f04bd5256 | 75 | return true; | 
| jmarkel44 | 96:807f04bd5256 | 76 | } | 
| jmarkel44 | 96:807f04bd5256 | 77 | |
| jmarkel44 | 217:d5a2ff093319 | 78 | // | 
| jmarkel44 | 192:052a419837fa | 79 | // method: start | 
| jmarkel44 | 192:052a419837fa | 80 | // description: start the manual control | 
| jmarkel44 | 96:807f04bd5256 | 81 | // | 
| jmarkel44 | 96:807f04bd5256 | 82 | // @param none | 
| jmarkel44 | 96:807f04bd5256 | 83 | // @return none | 
| jmarkel44 | 217:d5a2ff093319 | 84 | // | 
| jmarkel44 | 97:5cf6ab71dcd0 | 85 | void ManualControl::start(void) | 
| jmarkel44 | 96:807f04bd5256 | 86 | { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 87 | currentState = STATE_STARTUP; | 
| jmarkel44 | 96:807f04bd5256 | 88 | } | 
| jmarkel44 | 96:807f04bd5256 | 89 | |
| jmarkel44 | 217:d5a2ff093319 | 90 | // | 
| jmarkel44 | 192:052a419837fa | 91 | // method: update | 
| jmarkel44 | 260:fe726583ba1d | 92 | // description: the setpoint control's state machine | 
| jmarkel44 | 96:807f04bd5256 | 93 | // | 
| jmarkel44 | 96:807f04bd5256 | 94 | // @param none | 
| jmarkel44 | 96:807f04bd5256 | 95 | // @return none | 
| jmarkel44 | 217:d5a2ff093319 | 96 | // | 
| jmarkel44 | 96:807f04bd5256 | 97 | int ManualControl::update(void) | 
| jmarkel44 | 96:807f04bd5256 | 98 | { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 99 | int rc = 0; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 100 | switch ( this->currentState ) { | 
| jmarkel44 | 131:a290a3934132 | 101 | case STATE_INIT: | 
| jmarkel44 | 131:a290a3934132 | 102 | // do nothing | 
| jmarkel44 | 131:a290a3934132 | 103 | break; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 104 | case STATE_STARTUP: | 
| jmarkel44 | 97:5cf6ab71dcd0 | 105 | if ( state ) { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 106 | this->currentState = STATE_CONTROL_ON; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 107 | } else { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 108 | this->currentState = STATE_CONTROL_OFF; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 109 | } | 
| jmarkel44 | 164:7cecd731882e | 110 | this->powerOutput(); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 111 | break; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 112 | case STATE_CONTROL_ON: | 
| jmarkel44 | 97:5cf6ab71dcd0 | 113 | if ( !state ) { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 114 | this->currentState = STATE_CONTROL_OFF; | 
| jmarkel44 | 164:7cecd731882e | 115 | this->powerOutput(); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 116 | } | 
| jmarkel44 | 97:5cf6ab71dcd0 | 117 | break; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 118 | case STATE_CONTROL_OFF: | 
| jmarkel44 | 97:5cf6ab71dcd0 | 119 | if ( state ) { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 120 | this->currentState = STATE_CONTROL_ON; | 
| jmarkel44 | 164:7cecd731882e | 121 | this->powerOutput(); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 122 | } | 
| jmarkel44 | 97:5cf6ab71dcd0 | 123 | break; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 124 | default: | 
| jmarkel44 | 97:5cf6ab71dcd0 | 125 | logError("%s unknown state %d\n", __func__, this->currentState); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 126 | rc = -1; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 127 | break; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 128 | } | 
| jmarkel44 | 97:5cf6ab71dcd0 | 129 | return rc; | 
| jmarkel44 | 96:807f04bd5256 | 130 | } | 
| jmarkel44 | 96:807f04bd5256 | 131 | |
| jmarkel44 | 217:d5a2ff093319 | 132 | // | 
| jmarkel44 | 192:052a419837fa | 133 | // method: unregisterControl | 
| jmarkel44 | 192:052a419837fa | 134 | // description: unregister this control with the output master | 
| jmarkel44 | 96:807f04bd5256 | 135 | // | 
| jmarkel44 | 96:807f04bd5256 | 136 | // @param none | 
| jmarkel44 | 96:807f04bd5256 | 137 | // @return none | 
| jmarkel44 | 217:d5a2ff093319 | 138 | // | 
| jmarkel44 | 96:807f04bd5256 | 139 | int ManualControl::unregisterControl(void) | 
| jmarkel44 | 96:807f04bd5256 | 140 | { | 
| jmarkel44 | 115:1558e01d04c6 | 141 | logInfo("%s: Attempting to unregister %s\n", | 
| jmarkel44 | 115:1558e01d04c6 | 142 | __func__, controlFile.c_str()); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 143 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 144 | OutputControlMsg_t *output_mail = OutputMasterMailBox.alloc(); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 145 | memset(output_mail, 0, sizeof(OutputControlMsg_t)); | 
| jmarkel44 | 192:052a419837fa | 146 | |
| jmarkel44 | 121:650205ffa656 | 147 | output_mail->controlType = CONTROL_MANUAL; | 
| jmarkel44 | 121:650205ffa656 | 148 | output_mail->action = ACTION_CONTROL_UNREGISTER; | 
| jmarkel44 | 121:650205ffa656 | 149 | output_mail->priority = this->priority; | 
| jmarkel44 | 115:1558e01d04c6 | 150 | strncpy(output_mail->output_tag, this->output.c_str(), sizeof(output_mail->output_tag)-1); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 151 | strncpy(output_mail->id, this->id.c_str(), sizeof(output_mail->id)-1); | 
| jmarkel44 | 192:052a419837fa | 152 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 153 | OutputMasterMailBox.put(output_mail); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 154 | return 0; | 
| jmarkel44 | 97:5cf6ab71dcd0 | 155 | } | 
| jmarkel44 | 97:5cf6ab71dcd0 | 156 | |
| jmarkel44 | 192:052a419837fa | 157 | // | 
| jmarkel44 | 192:052a419837fa | 158 | // method: powerOutput | 
| jmarkel44 | 192:052a419837fa | 159 | // description: send a message to the output thread to power the relay | 
| jmarkel44 | 192:052a419837fa | 160 | // | 
| jmarkel44 | 192:052a419837fa | 161 | // @param none | 
| jmarkel44 | 192:052a419837fa | 162 | // @return -1 on error; 0 otherwise | 
| jmarkel44 | 192:052a419837fa | 163 | // | 
| jmarkel44 | 164:7cecd731882e | 164 | int ManualControl::powerOutput(void) | 
| jmarkel44 | 97:5cf6ab71dcd0 | 165 | { | 
| jmarkel44 | 97:5cf6ab71dcd0 | 166 | printf("%s: %s attempting to manually turn %s relay %s\n", | 
| jmarkel44 | 97:5cf6ab71dcd0 | 167 | __func__, controlFile.c_str(), (state) ? "ON" : "OFF", id.c_str()); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 168 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 169 | OutputControlMsg_t *output_mail = OutputMasterMailBox.alloc(); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 170 | memset(output_mail, 0, sizeof(OutputControlMsg_t)); | 
| jmarkel44 | 192:052a419837fa | 171 | |
| jmarkel44 | 121:650205ffa656 | 172 | output_mail->controlType = CONTROL_MANUAL; | 
| jmarkel44 | 115:1558e01d04c6 | 173 | output_mail->action = (state) ? ACTION_CONTROL_ON : ACTION_CONTROL_OFF; | 
| jmarkel44 | 115:1558e01d04c6 | 174 | output_mail->priority = this->priority; | 
| jmarkel44 | 115:1558e01d04c6 | 175 | strncpy(output_mail->output_tag, this->output.c_str(), sizeof(output_mail->output_tag)-1); | 
| jmarkel44 | 97:5cf6ab71dcd0 | 176 | strncpy(output_mail->id, this->id.c_str(), sizeof(output_mail->id)-1); | 
| jmarkel44 | 192:052a419837fa | 177 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 178 | OutputMasterMailBox.put(output_mail); | 
| jmarkel44 | 96:807f04bd5256 | 179 | return 0; | 
| jmarkel44 | 96:807f04bd5256 | 180 | } | 
| jmarkel44 | 96:807f04bd5256 | 181 | |
| jmarkel44 | 192:052a419837fa | 182 | // | 
| jmarkel44 | 192:052a419837fa | 183 | // method: display | 
| jmarkel44 | 192:052a419837fa | 184 | // description: display the pertinents | 
| jmarkel44 | 192:052a419837fa | 185 | // | 
| jmarkel44 | 192:052a419837fa | 186 | // @param none | 
| jmarkel44 | 192:052a419837fa | 187 | // @return none | 
| jmarkel44 | 192:052a419837fa | 188 | // | 
| jmarkel44 | 96:807f04bd5256 | 189 | void ManualControl::display(void) | 
| jmarkel44 | 260:fe726583ba1d | 190 | { | 
| jmarkel44 | 131:a290a3934132 | 191 | string mapper[] = { "INIT", | 
| jmarkel44 | 131:a290a3934132 | 192 | "STARTUP", | 
| jmarkel44 | 97:5cf6ab71dcd0 | 193 | "CONTROL_ON", | 
| jmarkel44 | 97:5cf6ab71dcd0 | 194 | "CONTROL_OFF" | 
| jmarkel44 | 97:5cf6ab71dcd0 | 195 | }; | 
| jmarkel44 | 260:fe726583ba1d | 196 | |
| jmarkel44 | 97:5cf6ab71dcd0 | 197 | printf("\r\n"); | 
| jmarkel44 | 205:3c84af5f711f | 198 | std::cout << left << setw(10) << setfill(' ') << "manual: "; | 
| jmarkel44 | 253:ae850c19cf81 | 199 | std::cout << left << setw(40) << setfill(' ') << controlFile; | 
| jmarkel44 | 205:3c84af5f711f | 200 | std::cout << left << setw(20) << setfill(' ') << id; | 
| jmarkel44 | 205:3c84af5f711f | 201 | std::cout << left << setw(20) << setfill(' ') << output; | 
| jmarkel44 | 205:3c84af5f711f | 202 | std::cout << left << setw(6) << setfill(' ') << type; | 
| jmarkel44 | 205:3c84af5f711f | 203 | std::cout << left << setw(6) << setfill(' ') << priority; | 
| jmarkel44 | 205:3c84af5f711f | 204 | std::cout << left << setw(8) << setfill(' ') << duration; | 
| jmarkel44 | 205:3c84af5f711f | 205 | std::cout << left << setw(8) << setfill(' ') << percent; | 
| jmarkel44 | 205:3c84af5f711f | 206 | std::cout << left << setw(16) << setfill(' ') << mapper[currentState]; | 
| jmarkel44 | 205:3c84af5f711f | 207 | std::cout.flush(); | 
| jmarkel44 | 96:807f04bd5256 | 208 | } | 
