cleanup headers in network library
[clinton/Smoothieware.git] / src / modules / communication / GcodeDispatch.cpp
CommitLineData
de91760a 1/*
4cff3ded
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
de91760a 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
4cff3ded
AW
6*/
7
8#include <string>
9using std::string;
4cff3ded
AW
10#include "libs/Module.h"
11#include "libs/Kernel.h"
12#include "utils/Gcode.h"
436a2cd1 13#include "libs/nuts_bolts.h"
4cff3ded 14#include "GcodeDispatch.h"
3fceb8eb 15#include "modules/robot/Conveyor.h"
423df6df 16#include "libs/SerialMessage.h"
838b33b4 17#include "libs/StreamOutput.h"
f2f0dfed 18#include "libs/FileStream.h"
61134a65 19#include "Config.h"
4cff3ded 20
adf89655 21GcodeDispatch::GcodeDispatch() {}
4cff3ded
AW
22
23// Called when the module has just been loaded
adf89655
JM
24void GcodeDispatch::on_module_loaded()
25{
314ab8f7 26 return_error_on_unhandled_gcode = THEKERNEL->config->value( return_error_on_unhandled_gcode_checksum )->by_default(false)->as_bool();
4cff3ded 27 this->register_for_event(ON_CONSOLE_LINE_RECEIVED);
534e17b9 28 currentline = -1;
adf89655 29 uploading = false;
c2885de8 30 last_g= 255;
4cff3ded
AW
31}
32
33// When a command is received, if it is a Gcode, dispatch it as an object via an event
adf89655
JM
34void GcodeDispatch::on_console_line_received(void *line)
35{
36 SerialMessage new_message = *static_cast<SerialMessage *>(line);
de91760a 37 string possible_command = new_message.message;
b6c86164 38
62567509
MC
39 int ln = 0;
40 int cs = 0;
c4c70e85
JM
41
42try_again:
43
44 char first_char = possible_command[0];
c2885de8 45 unsigned int n;
adf89655 46 if ( first_char == 'G' || first_char == 'M' || first_char == 'T' || first_char == 'N' ) {
9a29161f 47
62567509 48 //Get linenumber
adf89655 49 if ( first_char == 'N' ) {
702023f3 50 Gcode full_line = Gcode(possible_command, new_message.stream);
534e17b9
MC
51 ln = (int) full_line.get_value('N');
52 int chksum = (int) full_line.get_value('*');
62567509 53
f337d8fd 54 //Catch message if it is M110: Set Current Line Number
adf89655
JM
55 if ( full_line.has_letter('M') ) {
56 if ( ((int) full_line.get_value('M')) == 110 ) {
f337d8fd
MC
57 currentline = ln;
58 new_message.stream->printf("ok\r\n");
59 return;
60 }
61 }
62
534e17b9 63 //Strip checksum value from possible_command
62567509 64 size_t chkpos = possible_command.find_first_of("*");
de91760a 65 possible_command = possible_command.substr(0, chkpos);
534e17b9 66 //Calculate checksum
adf89655
JM
67 if ( chkpos != string::npos ) {
68 for (auto c = possible_command.cbegin(); *c != '*' && c != possible_command.cend(); c++)
7a2ca498 69 cs = cs ^ *c;
62567509 70 cs &= 0xff; // Defensive programming...
534e17b9 71 cs -= chksum;
62567509 72 }
534e17b9 73 //Strip line number value from possible_command
9883efb8 74 size_t lnsize = possible_command.find_first_not_of("N0123456789.,- ");
de91760a 75 possible_command = possible_command.substr(lnsize);
f337d8fd 76
adf89655 77 } else {
534e17b9
MC
78 //Assume checks succeeded
79 cs = 0x00;
80 ln = currentline + 1;
9a29161f
MC
81 }
82
436a2cd1 83 //Remove comments
30c006fd 84 size_t comment = possible_command.find_first_of(";(");
adf89655
JM
85 if( comment != string::npos ) {
86 possible_command = possible_command.substr(0, comment);
87 }
436a2cd1 88
62567509
MC
89 //If checksum passes then process message, else request resend
90 int nextline = currentline + 1;
adf89655 91 if( cs == 0x00 && ln == nextline ) {
f337d8fd 92 if( first_char == 'N' ) {
534e17b9 93 currentline = nextline;
f337d8fd
MC
94 }
95
d6190d18 96 while(possible_command.size() > 0) {
adf89655 97 size_t nextcmd = possible_command.find_first_of("GMT", possible_command.find_first_of("GMT") + 1);
d6190d18 98 string single_command;
85bb8e89 99 if(nextcmd == string::npos) {
d6190d18
MC
100 single_command = possible_command;
101 possible_command = "";
adf89655
JM
102 } else {
103 single_command = possible_command.substr(0, nextcmd);
2c4285ec 104 possible_command = possible_command.substr(nextcmd);
d6190d18 105 }
702023f3 106
44e8c359
JM
107 if(!uploading) {
108 //Prepare gcode for dispatch
adf89655 109 Gcode *gcode = new Gcode(single_command, new_message.stream);
c4c70e85 110
c2885de8
JM
111 if(gcode->has_g) {
112 last_g= gcode->g;
113 }
adf89655
JM
114 if(gcode->has_m) {
115 switch (gcode->m) {
116 case 28: // start upload command
117 delete gcode;
118
119 this->upload_filename = "/sd/" + single_command.substr(4); // rest of line is filename
120 // open file
121 upload_fd = fopen(this->upload_filename.c_str(), "w");
122 if(upload_fd != NULL) {
123 this->uploading = true;
124 new_message.stream->printf("Writing to file: %s\r\n", this->upload_filename.c_str());
125 } else {
126 new_message.stream->printf("open failed, File: %s.\r\n", this->upload_filename.c_str());
127 }
128 //printf("Start Uploading file: %s, %p\n", upload_filename.c_str(), upload_fd);
129 continue;
130
131 case 500: // M500 save volatile settings to config-override
f2f0dfed 132 // replace stream with one that writes to config-override file
347854ff 133 gcode->stream = new FileStream(THEKERNEL->config_override_filename());
adf89655 134 // dispatch the M500 here so we can free up the stream when done
314ab8f7 135 THEKERNEL->call_event(ON_GCODE_RECEIVED, gcode );
adf89655
JM
136 delete gcode->stream;
137 delete gcode;
347854ff 138 new_message.stream->printf("Settings Stored to %s\r\nok\r\n", THEKERNEL->config_override_filename());
adf89655
JM
139 continue;
140
618c9b0f 141 case 502: // M502 deletes config-override so everything defaults to what is in config
347854ff
MM
142 remove(THEKERNEL->config_override_filename());
143 new_message.stream->printf("config override file deleted %s, reboot needed\r\nok\r\n", THEKERNEL->config_override_filename());
adf89655
JM
144 delete gcode;
145 continue;
146
147 case 503: { // M503 display live settings and indicates if there is an override file
347854ff 148 FILE *fd = fopen(THEKERNEL->config_override_filename(), "r");
adf89655
JM
149 if(fd != NULL) {
150 fclose(fd);
347854ff 151 new_message.stream->printf("; config override present: %s\n", THEKERNEL->config_override_filename());
adf89655
JM
152
153 } else {
154 new_message.stream->printf("; No config override\n");
155 }
618c9b0f 156 break; // fall through to process by modules
adf89655 157 }
44e8c359 158 }
33e4cc02
JM
159 }
160
161 //printf("dispatch %p: '%s' G%d M%d...", gcode, gcode->command.c_str(), gcode->g, gcode->m);
44e8c359 162 //Dispatch message!
314ab8f7 163 THEKERNEL->call_event(ON_GCODE_RECEIVED, gcode );
adf89655 164 if(gcode->add_nl)
44e8c359
JM
165 new_message.stream->printf("\r\n");
166
adf89655 167 if( return_error_on_unhandled_gcode == true && gcode->accepted_by_module == false)
44e8c359
JM
168 new_message.stream->printf("ok (command unclaimed)\r\n");
169 else if(!gcode->txt_after_ok.empty()) {
170 new_message.stream->printf("ok %s\r\n", gcode->txt_after_ok.c_str());
171 gcode->txt_after_ok.clear();
adf89655 172 } else
44e8c359
JM
173 new_message.stream->printf("ok\r\n");
174
175 delete gcode;
176
adf89655 177 } else {
44e8c359
JM
178 // we are uploading a file so save it
179 if(single_command.substr(0, 3) == "M29") {
180 // done uploading, close file
181 fclose(upload_fd);
adf89655
JM
182 upload_fd = NULL;
183 uploading = false;
44e8c359
JM
184 upload_filename.clear();
185 new_message.stream->printf("Done saving file.\r\n");
186 continue;
187 }
adf89655 188
44e8c359
JM
189 if(upload_fd == NULL) {
190 // error detected writing to file so discard everything until it stops
191 new_message.stream->printf("ok\r\n");
192 continue;
193 }
adf89655 194
44e8c359 195 single_command.append("\n");
adf89655 196 static int cnt = 0;
44e8c359
JM
197 if(fwrite(single_command.c_str(), 1, single_command.size(), upload_fd) != single_command.size()) {
198 // error writing to file
199 new_message.stream->printf("Error:error writing to file.\r\n");
200 fclose(upload_fd);
adf89655 201 upload_fd = NULL;
44e8c359 202 continue;
adf89655
JM
203
204 } else {
205 cnt += single_command.size();
206 if (cnt > 400) {
44e8c359
JM
207 // HACK ALERT to get around fwrite corruption close and re open for append
208 fclose(upload_fd);
adf89655
JM
209 upload_fd = fopen(upload_filename.c_str(), "a");
210 cnt = 0;
44e8c359
JM
211 }
212 new_message.stream->printf("ok\r\n");
213 //printf("uploading file write ok\n");
214 }
215 }
d6190d18 216 }
adf89655
JM
217
218 } else {
62567509 219 //Request resend
f337d8fd 220 new_message.stream->printf("rs N%d\r\n", nextline);
62567509 221 }
2bb8b390 222
c2885de8 223 } else if( (n=possible_command.find_first_of("XYZF")) == 0 || (first_char == ' ' && n != string::npos) ) {
c4c70e85
JM
224 // handle pycam syntax, use last G0 or G1 and resubmit if an X Y Z or F is found on its own line
225 if(last_g != 0 && last_g != 1) {
226 //if no last G1 or G0 ignore
227 //THEKERNEL->streams->printf("ignored: %s\r\n", possible_command.c_str());
228 return;
229 }
c2885de8
JM
230 char buf[6];
231 snprintf(buf, sizeof(buf), "G%d ", last_g);
232 possible_command.insert(0, buf);
233 goto try_again;
234
adf89655
JM
235 // Ignore comments and blank lines
236 } else if ( first_char == ';' || first_char == '(' || first_char == ' ' || first_char == '\n' || first_char == '\r' ) {
b6c86164 237 new_message.stream->printf("ok\r\n");
4cff3ded
AW
238 }
239}
240