akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 1 | #ifndef CONF_PROCESSOR_HPP |
| 2 | #define CONF_PROCESSOR_HPP |
| 3 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 4 | #include "nlsr.hpp" |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 5 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 6 | namespace nlsr |
| 7 | { |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 8 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 9 | using namespace std; |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 10 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 11 | class ConfFileProcessor |
| 12 | { |
| 13 | public: |
| 14 | ConfFileProcessor() |
| 15 | :confFileName() |
| 16 | { |
| 17 | } |
| 18 | ConfFileProcessor(const string& cfile) |
| 19 | { |
| 20 | confFileName=cfile; |
| 21 | } |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 22 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 23 | int processConfFile(Nlsr& pnlsr); |
| 24 | int processConfCommand(Nlsr& pnlsr, string command); |
| 25 | int processConfCommandNetwork(Nlsr& pnlsr, string command); |
| 26 | int processConfCommandSiteName(Nlsr& pnlsr, string command); |
| 27 | int processConfCommandRouterName(Nlsr& pnlsr, string command); |
| 28 | int processConfCommandInterestRetryNumber(Nlsr& pnlsr, string command); |
| 29 | int processConfCommandInterestResendTime(Nlsr& pnlsr, string command); |
| 30 | int processConfCommandLsaRefreshTime(Nlsr& pnlsr, string command); |
| 31 | int processConfCommandMaxFacesPerPrefix(Nlsr& pnlsr, string command); |
| 32 | int processConfCommandTunnelType(Nlsr& pnlsr, string command); |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 33 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 34 | int processConfCommandChronosyncSyncPrefix(Nlsr& pnlsr, string command); |
| 35 | int processConfCommandLogDir(Nlsr& pnlsr, string command); |
| 36 | int processConfCommandDebugging(Nlsr& pnlsr, string command); |
| 37 | int processConfCommandDetailedLogging(Nlsr& pnlsr, string command); |
| 38 | int processConfCommandIsHyperbolicCalc(Nlsr& pnlsr, string command); |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 39 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 40 | int processConfCommandHyperbolicCordinate(Nlsr& pnlsr, string command); |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 41 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 42 | int processConfCommandNdnNeighbor(Nlsr& pnlsr, string command); |
| 43 | int processConfCommandNdnName(Nlsr& pnlsr, string command); |
| 44 | int processConfCommandLinkCost(Nlsr& pnlsr, string command); |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 45 | |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame^] | 46 | |
| 47 | private: |
| 48 | string confFileName; |
| 49 | }; |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 50 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 51 | } //namespace nlsr |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 52 | #endif |