Merge remote-tracking branch 'upstream/edge' into upstream-master
[clinton/Smoothieware.git] / src / modules / utils / simpleshell / SimpleShell.h
CommitLineData
df27a6a3 1/*
cd011f58
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.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
cd011f58
AW
6*/
7
8
0325af12
AW
9#ifndef simpleshell_h
10#define simpleshell_h
11
ba8da804
JM
12#include "Module.h"
13
7e81f138 14#include <functional>
ba8da804
JM
15#include <string>
16using std::string;
17
18class StreamOutput;
0325af12 19
9e403697
JM
20class SimpleShell : public Module
21{
22public:
23 SimpleShell() {}
24
25 void on_module_loaded();
26 void on_console_line_received( void *argument );
27 void on_gcode_received(void *argument);
28 void on_second_tick(void *);
5c051155 29 static bool parse_command(const char *cmd, string args, StreamOutput *stream);
9e403697
JM
30
31private:
7e81f138
JM
32 static void ls_command(string parameters, StreamOutput *stream );
33 static void cd_command(string parameters, StreamOutput *stream );
34 static void delete_file_command(string parameters, StreamOutput *stream );
35 static void pwd_command(string parameters, StreamOutput *stream );
36 static void cat_command(string parameters, StreamOutput *stream );
37 static void rm_command(string parameters, StreamOutput *stream );
6d877d9b
JM
38 static void mv_command(string parameters, StreamOutput *stream );
39 static void upload_command(string parameters, StreamOutput *stream );
7e81f138
JM
40 static void break_command(string parameters, StreamOutput *stream );
41 static void reset_command(string parameters, StreamOutput *stream );
42 static void dfu_command(string parameters, StreamOutput *stream );
43 static void help_command(string parameters, StreamOutput *stream );
44 static void version_command(string parameters, StreamOutput *stream );
45 static void get_command(string parameters, StreamOutput *stream );
46 static void set_temp_command(string parameters, StreamOutput *stream );
1f8dab1a 47 static void calc_thermistor_command( string parameters, StreamOutput *stream);
4c8f5447 48 static void print_thermistors_command( string parameters, StreamOutput *stream);
d55d551b 49 static void md5sum_command( string parameters, StreamOutput *stream);
4c8f5447 50
ae91dea4 51 static void switch_command(string parameters, StreamOutput *stream );
7e81f138
JM
52 static void mem_command(string parameters, StreamOutput *stream );
53
54 static void net_command( string parameters, StreamOutput *stream);
55
56 static void load_command( string parameters, StreamOutput *stream);
57 static void save_command( string parameters, StreamOutput *stream);
58
3704585b 59 static void remount_command( string parameters, StreamOutput *stream);
60
7e81f138
JM
61
62 typedef void (*PFUNC)(string parameters, StreamOutput *stream);
9e403697 63 typedef struct {
7e81f138
JM
64 const char *command;
65 const PFUNC func;
66 } const ptentry_t;
9e403697 67
7e81f138
JM
68 static const ptentry_t commands_table[];
69 static int reset_delay_secs;
0325af12
AW
70};
71
72
73#endif