From 7351a94b9f3e725e8758bb145ee43b565a0da999 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 26 Mar 2023 02:35:08 +0300 Subject: [PATCH] ready for testing 0.1.7 --- dub.json | 2 +- source/readconf.d | 53 +++++++++++++++++++++++++++-------------------- 2 files changed, 31 insertions(+), 24 deletions(-) diff --git a/dub.json b/dub.json index 7248b91..e8b53fc 100644 --- a/dub.json +++ b/dub.json @@ -35,5 +35,5 @@ "dependencies": { "singlog": "~>0.1.0" }, - "version": "0.1.4" + "version": "0.1.7" } \ No newline at end of file diff --git a/source/readconf.d b/source/readconf.d index 8f4332e..6899641 100644 --- a/source/readconf.d +++ b/source/readconf.d @@ -14,10 +14,21 @@ alias rc = Config.file; class Config { private: + enum { + GROUP_PROPERTY = 4, + GROUP_VALUE_1 = 11, // string + GROUP_VALUE_2 = 14, // "strin" + GROUP_VALUE_3 = 16, // 'string' + GROUP_SECTION_OTHER_OUTER = 17, // "[string]" + GROUP_SECTION_OTHER_INNER = 18, // "[string]" + GROUP_SECTION_MAIN = 20, // "[]" + } + static Config config; string path; - ConfigSection[string] sections; bool readed = false; + ConfigSection[string] sections; + const string pattern = "^( |\\t)*(((\\w(\\w|-)+)(( |\\t)*(=>|=){1}" ~ "( |\\t)*)(?!\\/(\\/|\\*))(([^ >\"'=\\n\\t#;].*?)|(\"(.+)\")" ~ "|('(.+)')){1})|(\\[(\\w(\\w|-)+)\\])|(\\[\\]))( |\\t)*" @@ -33,14 +44,14 @@ private: try { configuration = File(this.path, "r"); } catch (Exception e) { - Log.msg.error("Unable to open the configuration file " ~ this.path); - Log.msg.warning(e); + Log.msg.warning("Unable to open the configuration file " ~ this.path); + Log.msg.error(e); return false; } auto regular = regex(this.pattern, "m"); - // if main section + // reading from the main section string sectionName = "[]"; while (!configuration.eof()) @@ -50,28 +61,28 @@ private: if (match) { // if again main section - if (match[20].length) + if (match[GROUP_SECTION_MAIN].length) { - sectionName = match[20]; + sectionName = match[GROUP_SECTION_MAIN]; continue; } - // if other section - if (match[17].length) + if (match[GROUP_SECTION_OTHER_OUTER].length) { - sectionName = match[18]; + sectionName = match[GROUP_SECTION_OTHER_INNER]; continue; } - // values - int group = 11; + + int group = GROUP_VALUE_1; + if (match[group][0] == '\"') - group = 14; + group = GROUP_VALUE_2; else if (match[group][0] == '\'') - group = 16; + group = GROUP_VALUE_3; if (sectionName !in this.sections) this.sections[sectionName] = ConfigSection(sectionName); - this.sections[sectionName].add(ConfigParameter(match[4], match[group])); + this.sections[sectionName].add(ConfigParameter(match[GROUP_PROPERTY], match[group])); } } @@ -79,8 +90,8 @@ private: configuration.close(); this.readed = true; } catch (Exception e) { - Log.msg.error("Unable to close the configuration file " ~ this.path); - Log.msg.warning(e); + Log.msg.warning("Unable to close the configuration file " ~ this.path); + Log.msg.error(e); this.readed = false; } @@ -111,11 +122,7 @@ public: { this.path = path; if (!path.exists) - { - Log.msg.error("The configuration file does not exist: " ~ path); - return false; - } - + throw new Exception("The configuration file does not exist: " ~ path); return readConfig(); } @@ -214,8 +221,8 @@ struct ConfigParameter try { return this.value.to!T; } catch (Exception e) { - Log.msg.error("Cannot convert type"); - Log.msg.warning(e); + Log.msg.warning("Cannot convert type"); + Log.msg.error(e); return T.init; } }