Merge branch 'feature/e-endstop' into merge-abc-with-homing
[clinton/Smoothieware.git] / src / libs / ConfigSource.h
CommitLineData
df27a6a3 1/*
c295905f
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/>.
c295905f
AW
6*/
7
8#ifndef CONFIGSOURCE_H
9#define CONFIGSOURCE_H
10
11using namespace std;
12#include <vector>
5efaa1b1 13#include <string>
c295905f
AW
14
15class ConfigValue;
8d54c34c 16class ConfigCache;
c295905f
AW
17
18class ConfigSource {
19 public:
20 ConfigSource(){}
93ea6adb 21 virtual ~ConfigSource(){}
c295905f
AW
22
23 // Read each value, and append it as a ConfigValue to the config_cache we were passed
2bec0c6b
BG
24 virtual void transfer_values_to_cache( ConfigCache* ) = 0;
25 virtual bool is_named( uint16_t check_sum ) = 0;
d8cff5af 26 virtual bool write( string setting, string value ) = 0;
2bec0c6b 27 virtual string read( uint16_t check_sums[3] ) = 0;
c295905f 28
61134a65 29 protected:
f45e6161 30 virtual ConfigValue* process_line_from_ascii_config(const string& line, ConfigCache* cache);
577414f6 31 virtual string process_line_from_ascii_config(const string& line, uint16_t line_checksums[3]);
bcb96295 32 uint16_t name_checksum;
577414f6
JM
33
34 private:
35 ConfigValue* process_line(const string &buffer);
c295905f
AW
36};
37
38
39
40#endif