summaryrefslogtreecommitdiff
path: root/src/file/settings/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file/settings/parser.cpp')
-rw-r--r--src/file/settings/parser.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/file/settings/parser.cpp b/src/file/settings/parser.cpp
new file mode 100644
index 0000000..b692ac3
--- /dev/null
+++ b/src/file/settings/parser.cpp
@@ -0,0 +1,20 @@
+#include "parser.hpp"
+
+namespace smtp::file::parser
+{
+ ParseResult Settings::Parse( std::string const& line ) const
+ {
+ static constexpr char DELIMITER = '=';
+ static constexpr size_t ZERO_POSITION = 0;
+ static constexpr size_t NEXT_POSITION = 1;
+
+ auto position = line.find(DELIMITER);
+ if( position == std::string::npos)
+ {
+ return {};
+ }
+ auto first_part = line.substr( ZERO_POSITION, position );
+ auto second_part = line.substr(position + NEXT_POSITION, line.length());
+ return {first_part, second_part};
+ }
+}