absyntax_utils/spec_init_separator.cc
changeset 181 38d6eb056260
child 265 4d222f46f8cc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/absyntax_utils/spec_init_separator.cc	Mon Jun 01 21:08:44 2009 +0200
@@ -0,0 +1,172 @@
+/*
+ * (c) 2003 Mario de Sousa
+ *
+ * Offered to the public under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2 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.
+ *
+ * This code is made available on the understanding that it will not be
+ * used in safety-critical situations without a full and competent review.
+ */
+
+/*
+ * An IEC 61131-3 IL and ST compiler.
+ *
+ * Based on the
+ * FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10)
+ *
+ */
+
+/*
+ * Seperation of type specification and default value constructs
+ * (for e.g. simple_spec_init_c), into a type specificiation part,
+ * and a default value part.
+ */
+
+#include "spec_init_separator.hh"
+
+//#define DEBUG
+#ifdef DEBUG
+#define TRACE(classname) printf("\n____%s____\n",classname);
+#else
+#define TRACE(classname)
+#endif
+
+#define ERROR error_exit(__FILE__,__LINE__)
+/* function defined in main.cc */
+extern void error_exit(const char *file_name, int line_no);
+
+
+spec_init_sperator_c *spec_init_sperator_c::get_class_instance(void) {
+  if (NULL == class_instance)
+    class_instance = new spec_init_sperator_c();
+
+  if (NULL == class_instance)
+    ERROR;
+
+  return class_instance;
+}
+
+ /* the only two public functions... */
+symbol_c *spec_init_sperator_c::get_spec(symbol_c *spec_init) {
+   search_what = search_spec;
+   return (symbol_c *)spec_init->accept(*get_class_instance());
+}
+
+symbol_c *spec_init_sperator_c::get_init(symbol_c *spec_init) {
+   search_what = search_init;
+   return (symbol_c *)spec_init->accept(*get_class_instance());
+}
+
+/*******************************************/
+/* B 1.1 - Letters, digits and identifiers */
+/*******************************************/
+// SYM_TOKEN(identifier_c)
+void *spec_init_sperator_c::visit(identifier_c *symbol) {
+  TRACE("spec_init_sperator_c::identifier_c");
+  switch (search_what) {
+    /* if we ever get called sith a simple identifier_c, then it must be a previously declared type... */
+    case search_spec: return symbol;
+    case search_init: return NULL;
+  }
+  ERROR; /* should never occur */
+  return NULL;
+}
+
+
+/********************************/
+/* B 1.3.3 - Derived data types */
+/********************************/
+
+/* simple_specification ASSIGN constant */
+void *spec_init_sperator_c::visit(simple_spec_init_c *symbol) {
+  TRACE("spec_init_sperator_c::simple_spec_init_c");
+  switch (search_what) {
+    case search_spec: return symbol->simple_specification;
+    case search_init: return symbol->constant;
+  }
+  ERROR; /* should never occur */
+  return NULL;
+}
+
+/* subrange_specification ASSIGN signed_integer */
+void *spec_init_sperator_c::visit(subrange_spec_init_c *symbol) {
+  TRACE("spec_init_sperator_c::subrange_spec_init_c");
+  switch (search_what) {
+    case search_spec: return symbol->subrange_specification->accept(*this);
+    case search_init: return symbol->signed_integer;
+  }
+  ERROR; /* should never occur */
+  return NULL;
+}
+
+/*  integer_type_name '(' subrange')' */
+void *spec_init_sperator_c::visit(subrange_specification_c *symbol) {
+  TRACE("spec_init_sperator_c::subrange_specification_c");
+  switch (search_what) {
+    case search_spec: return symbol->integer_type_name;
+    case search_init: return NULL; /* should never occur */
+  }
+  ERROR; /* should never occur */
+  return NULL;
+}
+
+/* array_specification [ASSIGN array_initialization} */
+/* array_initialization may be NULL ! */
+void *spec_init_sperator_c::visit(array_spec_init_c *symbol) {
+  TRACE("spec_init_sperator_c::array_spec_init_c");
+  switch (search_what) {
+    case search_spec: return symbol->array_specification;
+    case search_init: return symbol->array_initialization;
+  }
+  return NULL;
+}
+
+/* enumerated_specification ASSIGN enumerated_value */
+void *spec_init_sperator_c::visit(enumerated_spec_init_c *symbol) {
+  TRACE("spec_init_sperator_c::enumerated_spec_init_c");
+  switch (search_what) {
+    case search_spec: return symbol->enumerated_specification;
+    case search_init: return symbol->enumerated_value;
+  }
+  ERROR; /* should never occur */
+  return NULL;
+}
+
+/* structure_type_name ASSIGN structure_initialization */
+/* structure_initialization may be NULL ! */
+//SYM_REF2(initialized_structure_c, structure_type_name, structure_initialization)
+void *spec_init_sperator_c::visit(initialized_structure_c *symbol) {
+  TRACE("spec_init_sperator_c::initialized_structure_c");
+  switch (search_what) {
+    case search_spec: return symbol->structure_type_name;
+    case search_init: return symbol->structure_initialization;
+  }
+  ERROR; /* should never occur */
+  return NULL;
+}
+
+
+/******************************************/
+/* B 1.4.3 - Declaration & Initialisation */
+/******************************************/
+
+/* fb_name_list ':' function_block_type_name ASSIGN structure_initialization */
+/* structure_initialization -> may be NULL ! */
+void *spec_init_sperator_c::visit(fb_name_decl_c *symbol) {
+  TRACE("spec_init_sperator_c::fb_name_decl_c");
+  switch (search_what) {
+    case search_spec: return symbol->function_block_type_name;
+    case search_init: return symbol->structure_initialization;
+  }
+  ERROR; /* should never occur */
+  return NULL;
+}
+
+spec_init_sperator_c *spec_init_sperator_c ::class_instance = NULL;
+spec_init_sperator_c::search_what_t spec_init_sperator_c::search_what;