Allow TABS in config
[clinton/Smoothieware.git] / src / libs / Config.h
1 /*
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.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6 */
7
8 #ifndef CONFIG_H
9 #define CONFIG_H
10 #include "libs/Kernel.h"
11 #include "libs/utils.h"
12 #include "libs/Pin.h"
13 #include "ConfigCache.h"
14 #include "ConfigSource.h"
15 #include "libs/ConfigSources/FileConfigSource.h"
16 #include "checksumm.h"
17
18 #define error(...) (fprintf(stderr, __VA_ARGS__), exit(1))
19
20 using namespace std;
21 #include <vector>
22 #include <string>
23 #include <stdio.h>
24
25 #define LOCAL_CONFIGSOURCE_CHECKSUM 13581
26 #define SD_CONFIGSOURCE_CHECKSUM 19415
27
28 class ConfigValue;
29
30 class Config : public Module {
31 public:
32 Config();
33
34 void on_module_loaded();
35 void on_console_line_received( void* argument );
36 void config_cache_load();
37 void config_cache_clear();
38 void set_string( string setting , string value);
39
40 ConfigValue* value(uint16_t check_sum);
41 ConfigValue* value(uint16_t check_sum_a, uint16_t check_sum_b);
42 ConfigValue* value(uint16_t check_sum_a, uint16_t check_sum_b, uint16_t check_sum_c );
43 ConfigValue* value(uint16_t check_sums[3] );
44
45 void get_module_list(vector<uint16_t>* list, uint16_t family);
46
47 bool has_characters(uint16_t check_sum, string str );
48
49 ConfigCache config_cache; // A cache in which ConfigValues are kept
50 vector<ConfigSource*> config_sources; // A list of all possible coniguration sources
51 bool config_cache_loaded; // Whether or not the cache is currently popluated
52 };
53
54 #endif