aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2020-05-29 01:23:04 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2020-05-29 01:23:04 +0200
commit050d32ae204b64f7098b12c77cdb92a33ebc7562 (patch)
tree94868415de1ed42705769b6354c012220572b806 /src/blogc
parent82a6868991472fc0b95981c3f116f5583254fa06 (diff)
downloadblogc-050d32ae204b64f7098b12c77cdb92a33ebc7562.tar.gz
blogc-050d32ae204b64f7098b12c77cdb92a33ebc7562.tar.bz2
blogc-050d32ae204b64f7098b12c77cdb92a33ebc7562.zip
blogc: added filelist parser
Diffstat (limited to 'src/blogc')
-rw-r--r--src/blogc/filelist-parser.c69
-rw-r--r--src/blogc/filelist-parser.h16
2 files changed, 85 insertions, 0 deletions
diff --git a/src/blogc/filelist-parser.c b/src/blogc/filelist-parser.c
new file mode 100644
index 0000000..ac9c50a
--- /dev/null
+++ b/src/blogc/filelist-parser.c
@@ -0,0 +1,69 @@
+/*
+ * blogc: A blog compiler.
+ * Copyright (C) 2014-2019 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ *
+ * This program can be distributed under the terms of the BSD License.
+ * See the file LICENSE.
+ */
+
+#include "../common/utils.h"
+
+
+typedef enum {
+ LINE_START = 1,
+ LINE,
+} blogc_filelist_parser_state_t;
+
+
+bc_slist_t*
+blogc_filelist_parse(const char *src, size_t src_len)
+{
+ size_t current = 0;
+ size_t start = 0;
+ bc_slist_t *rv = NULL;
+ bc_string_t *line = bc_string_new();
+ blogc_filelist_parser_state_t state = LINE_START;
+
+ while (current < src_len) {
+ char c = src[current];
+ bool is_last = current == src_len - 1;
+
+ switch (state) {
+
+ case LINE_START:
+ if (c == '#') {
+ while (current < src_len) {
+ if (src[current] == '\r' || src[current] == '\n')
+ break;
+ current++;
+ }
+ break;
+ }
+ if (c == ' ' || c == '\t' || c == '\r' || c == '\n')
+ break;
+ start = current;
+ state = LINE;
+ continue;
+
+ case LINE:
+ if (c == '\r' || c == '\n' || is_last) {
+ if (is_last && c != '\r' && c != '\n')
+ bc_string_append_c(line, c);
+ rv = bc_slist_append(rv, bc_str_strip(line->str));
+ bc_string_free(line, false);
+ line = bc_string_new();
+ state = LINE_START;
+ break;
+ }
+ bc_string_append_c(line, c);
+ break;
+
+ }
+
+ current++;
+ }
+
+ bc_string_free(line, true);
+
+ return rv;
+}
diff --git a/src/blogc/filelist-parser.h b/src/blogc/filelist-parser.h
new file mode 100644
index 0000000..5c65ee0
--- /dev/null
+++ b/src/blogc/filelist-parser.h
@@ -0,0 +1,16 @@
+/*
+ * blogc: A blog compiler.
+ * Copyright (C) 2014-2019 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ *
+ * This program can be distributed under the terms of the BSD License.
+ * See the file LICENSE.
+ */
+
+#ifndef _FILELIST_PARSER_H
+#define _FILELIST_PARSER_H
+
+#include "../common/utils.h"
+
+bc_slist_t* blogc_filelist_parse(const char *src, size_t src_len);
+
+#endif /* _FILELIST_PARSER_H */