Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/linux-sunxi/sunxi-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Mery <amery@geeks.cl>2012-05-04 12:06:14 +0400
committerAlejandro Mery <amery@geeks.cl>2012-05-04 12:06:14 +0400
commit0dd7e13abae9198bfd27c63922dfe91d8f924f33 (patch)
tree5c2b26f9594c433742331ee793e0ab11dda918f3 /script.c
parent5a970809f3af5e350badbe92c9c8eb32178f1ec3 (diff)
script: getting started with the script tree
Diffstat (limited to 'script.c')
-rw-r--r--script.c103
1 files changed, 103 insertions, 0 deletions
diff --git a/script.c b/script.c
new file mode 100644
index 0000000..b97bb3a
--- /dev/null
+++ b/script.c
@@ -0,0 +1,103 @@
+/*
+ * Copyright (C) 2012 Alejandro Mery <amery@geeks.cl>
+ *
+ * This program 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.
+ *
+ * This program 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "sunxi-tools.h"
+
+#include <assert.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "script.h"
+
+/*
+ */
+struct script *script_new(void)
+{
+ struct script *script;
+ if ((script = malloc(sizeof(*script))))
+ list_init(&script->sections);
+ return script;
+}
+
+/*
+ */
+struct script_section *script_section_append(struct script *script,
+ const char *name)
+{
+ struct script_section *section;
+
+ assert(script != NULL);
+ assert(name != NULL);
+
+ if ((section = malloc(sizeof(*section)))) {
+ size_t l = strlen(name);
+ if (l>31) /* truncate */
+ l=31;
+ memcpy(section->name, name, l);
+ section->name[l] = '\0';
+
+ list_init(&section->entries);
+ list_append(&script->sections, &section->sections);
+ }
+ return section;
+}
+
+/*
+ */
+static inline void script_entry_append(struct script *script,
+ struct script_entry *entry,
+ enum script_value_type type,
+ const char *name)
+{
+ size_t l;
+ struct script_section *section;
+
+ assert(script != NULL);
+ assert(!list_empty(&script->sections));
+ assert(entry != NULL);
+ assert(name != NULL);
+
+ section = container_of(list_last(&script->sections),
+ struct script_section, sections);
+
+ l = strlen(name);
+ if (l>31) /* truncate */
+ l=31;
+ memcpy(entry->name, name, l);
+ entry->name[l] = '\0';
+
+ entry->type = type;
+
+ list_append(&section->entries, &entry->entries);
+}
+
+struct script_null_entry *script_null_entry_append(struct script *script,
+ const char *name)
+{
+ struct script_null_entry *entry;
+
+ assert(script != NULL);
+ assert(!list_empty(&script->sections));
+ assert(name != NULL);
+
+ if ((entry = malloc(sizeof(*entry)))) {
+ script_entry_append(script, &entry->entry,
+ SCRIPT_VALUE_TYPE_NULL, name);
+ }
+
+ return entry;
+}