]> git.draconx.ca Git - gob-dx.git/blobdiff - src/util.c
Release 2.0.7
[gob-dx.git] / src / util.c
index cc523ed529a4e0d7bbce4e62416adbcfa0d8a2bf..38dd53547b3cdf70bd423b39501040e4dde4f304 100644 (file)
 void
 error_print(int type, int line, const char *error)
 {
-       char *w = NULL;
+       const char *w = NULL;
+       const char *fname = NULL;
 
        switch(type) {
        case GOB_WARN:
                w = "Warning:";
+               if (exit_on_warn)
+                       got_error = TRUE;
                break;
        case GOB_ERROR:
                w = "Error:";
@@ -47,13 +50,14 @@ error_print(int type, int line, const char *error)
        default:
                g_assert_not_reached();
        }
-       if(line > 0)
-               fprintf(stderr, "%s:%d: %s %s\n", filename, line, w, error);
+       fname = filename;
+       if (fname == NULL)
+               fname = "gob2";
+       if (line > 0)
+               fprintf(stderr, "%s:%d: %s %s\n", fname, line, w, error);
        else
-               fprintf(stderr, "%s: %s %s\n", filename, w, error);
-       if(exit_on_error &&
-          (type == GOB_ERROR ||
-           (type == GOB_WARN && exit_on_warn)))
+               fprintf(stderr, "%s: %s %s\n", fname, w, error);
+       if (exit_on_error && got_error)
                exit(1);
 }
 
@@ -77,6 +81,11 @@ remove_sep(const char *base)
 {
        char *p;
        char *s = g_strdup(base);
+
+       /* don't eat C++ :: thingies */
+       if (for_cpp && strstr (s, "::") != NULL)
+               return s;
+
        while((p = strchr(s, ':')))
                strcpy(p, p+1);
        return s;
@@ -87,6 +96,11 @@ replace_sep(const char *base, char r)
 {
        char *p;
        char *s = g_strdup(base);
+
+       /* don't eat C++ :: thingies */
+       if (for_cpp && strstr (s, "::") != NULL)
+               return s;
+
        while((p=strchr(s,':')))
                *p = r;
        if(*s == r) {
@@ -104,7 +118,15 @@ separns_replace_sep(const char *base, char **ns, char **name, char r)
 {
        char *p;
        char *s = g_strdup(base);
+
        *ns = NULL;
+       
+       /* don't eat C++ :: thingies */
+       if (for_cpp && strstr (s, "::") != NULL) {
+               *name = s;
+               return;
+       }
+
        if((p=strchr(s,':')) && p!=s) {
                *p = '\0';
                *ns = g_strdup(s);
@@ -147,7 +169,7 @@ make_pre_macro(const char *base, const char *pre)
        else
                s = g_strconcat(pre, "_", name, NULL);
 
-       g_strup(s);
+       gob_strup (s);
        
        g_free(ns);
        g_free(name);
@@ -173,11 +195,14 @@ const OurGtkType our_gtk_type_table[] = {
        { TRUE, "NONE",         "void ",        "void",         NULL,   -1 },
        { TRUE, "CHAR",         "gchar ",       "gchar",        NULL,   -1 },
        { TRUE, "UCHAR",        "guchar ",      "guchar",       NULL,   -1 },
+       { TRUE, "UNICHAR",      "gunichar ",    "gunichar",     NULL,   -1 },
        { TRUE, "BOOLEAN",      "gboolean ",    "gboolean",     NULL,   -1 },
        { TRUE, "INT",          "gint ",        "gint",         NULL,   -1 },
        { TRUE, "UINT",         "guint ",       "guint",        NULL,   -1 },
        { TRUE, "LONG",         "glong ",       "glong",        NULL,   -1 },
        { TRUE, "ULONG",        "gulong ",      "gulong",       NULL,   -1 },
+       { TRUE, "INT64",        "gint64 ",      "gint64",       NULL,   -1 },
+       { TRUE, "UINT64",       "guint64 ",     "guint64",      NULL,   -1 },
        { TRUE, "ENUM",         /*"enum"*/"gint ", "gint",      NULL,   -1 },
        { TRUE, "FLAGS",        /*"flags"*/"guint ", "guint",   NULL,   -1 },
        { TRUE, "FLOAT",        "gfloat ",      "gfloat",       NULL,   -1 },
@@ -188,7 +213,7 @@ const OurGtkType our_gtk_type_table[] = {
        { TRUE, "OBJECT",       "GObject *",    "GObject",      "*",    -1 },
        { TRUE, "PARAM",        "GParamSpec *", "GParamSpec",   "*",    -1 },
 
-       /* FIXME: VALUE_ARRAY, CLOSURE, UNICHAR */
+       /* FIXME: VALUE_ARRAY, CLOSURE */
        /* Note that those have some issues with g_value_ calls etc... so
         * we can't just add them */
 
@@ -267,7 +292,7 @@ get_tree_type (const char *type, gboolean simple_only)
 }
 
 static void
-mask_special_array(char *type, gboolean *special_array, gboolean *any_special)
+mask_special_array (const char *type, gboolean *special_array, gboolean *any_special)
 {
        OurGtkType *gtype;
 
@@ -310,3 +335,58 @@ setup_special_array(Class *c, gboolean *special_array)
 
        return any_special;
 }
+
+char *
+get_type (const Type *t, gboolean postfix_to_stars)
+{
+       char *s;
+       int i;
+       int extra;
+       GString *gs;
+
+       s = remove_sep(t->name);
+       gs = g_string_new(s);
+       g_free(s);
+
+       extra = 0;
+       if (postfix_to_stars) {
+               const char *p;
+               /*XXX: this is ugly perhaps we can do this whole postfix thing
+                 in a nicer way, we just count the number of '[' s and from
+                 that we deduce the number of dimensions, so that we can print
+                 that many stars */
+               for (p = t->postfix; p && *p; p++)
+                       if(*p == '[') extra++;
+       }
+       g_string_append_c(gs, ' ');
+
+       if (t->pointer != NULL) {
+               g_string_append (gs, t->pointer);
+               for (i=0; i < extra; i++)
+                       g_string_append_c (gs, '*');
+               g_string_append_c (gs, ' ');
+       }
+       
+       return g_string_free (gs, FALSE);
+}
+
+char *
+gob_strup (char *str)
+{
+       char *s;
+       for (s = str; *s; s++)
+               *s = g_ascii_toupper (*s);
+
+       return str;
+}
+
+char *
+gob_strdown (char *str)
+{
+       char *s;
+       for (s = str; *s; s++)
+               *s = g_ascii_tolower (*s);
+
+       return str;
+}
+