summaryrefslogtreecommitdiff
path: root/test/tokentest/tokentest.c
blob: 2fd1e31d9daa7b7d37ae5ad89b0cc014b03cb266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
/* 
 * tokentest.c - test for Metacity's tokeniser
 *
 * Copyright (C) 2008 Thomas Thurman
 * 
 * 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 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.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

/* Still under heavy development. */
/* Especially: FIXME: GErrors need checking! */

#include <stdio.h>
#include <glib/gerror.h>
#include <gtk/gtkobject.h>
#include <gtk/gtkicontheme.h>
#include <ui/theme.h>
#include <util.h>

#define TOKENTEST_GROUP "tokentest0"

/************************/
/* Dummy functions which are just here to keep the linker happy */

MetaTheme* meta_theme_load (const char *theme_name,
                            GError    **err) {
  /* dummy */
  return NULL;
}

void
meta_bug(const char *format, ...)
{
  /* dummy */
}

void
meta_warning(const char *format, ...)
{
  /* dummy */
}

GType
gtk_widget_get_type (void)
{
  /* dummy */
}

GtkType
gtk_object_get_type (void)
{
  /* dummy */
}

void gtk_paint_arrow      (GtkStyle        *style,
                           GdkWindow       *window,
                           GtkStateType     state_type,
                           GtkShadowType    shadow_type,
                           GdkRectangle    *area,
                           GtkWidget       *widget,
                           const gchar     *detail,
                           GtkArrowType     arrow_type,
                           gboolean         fill,
                           gint             x,
                           gint             y,
                           gint             width,
                           gint             height)
{
  /* dummy */
}

void gtk_paint_vline      (GtkStyle        *style,
                           GdkWindow       *window,
                           GtkStateType     state_type,
                           GdkRectangle    *area,
                           GtkWidget       *widget,
                           const gchar     *detail,
                           gint             y1_,
                           gint             y2_,
                           gint             x)
{
  /* dummy */
}
void gtk_paint_box        (GtkStyle        *style,
                           GdkWindow       *window,
                           GtkStateType     state_type,
                           GtkShadowType    shadow_type,
                           GdkRectangle    *area,
                           GtkWidget       *widget,
                           const gchar     *detail,
                           gint             x,
                           gint             y,
                           gint             width,
                           gint             height)
{
  /* dummy */
}

GtkIconTheme *gtk_icon_theme_get_default           (void)
{
  /* dummy */
}

GdkPixbuf *   gtk_icon_theme_load_icon             (GtkIconTheme                *icon_theme,
                                                    const gchar                 *icon_name,
                                                    gint                         size,
                                                    GtkIconLookupFlags           flags,
                                                    GError                     **error)
{
  /* dummy */
}

MetaRectangle                 meta_rect (int x, int y, int width, int height)
{
  /* dummy */
}

void
meta_topic_real (MetaDebugTopic topic,
                 const char *format,
                 ...)
{
  /* dummy */
}


/*********************************/

GString *draw_spec_to_string(MetaDrawSpec *spec)
{
  GString *result;
  int i;

  if (spec == NULL)
    return g_string_new ("NONE");

  result = g_string_new ("");

  if (spec->constant)
    {
      g_string_append_printf (result, "{%d==}", spec->value);
    }

  for (i=0; i<spec->n_tokens; i++)
    {
      PosToken t = spec->tokens[i];

      switch (t.type)
        {
        case POS_TOKEN_INT:
          g_string_append_printf (result, "(int %d)", t.d.i.val);
          break;

        case POS_TOKEN_DOUBLE:
          g_string_append_printf (result, "(double %d)", t.d.d.val);
          break;

        case POS_TOKEN_OPERATOR:

          switch (t.d.o.op) {
            case POS_OP_NONE:
              g_string_append (result, "(no-op)");
              break;

            case POS_OP_ADD:
              g_string_append (result, "(add)");
              break;

            case POS_OP_SUBTRACT:
              g_string_append (result, "(subtract)");
              break;

            case POS_OP_MULTIPLY:
              g_string_append (result, "(multiply)");
              break;

            case POS_OP_DIVIDE:
              g_string_append (result, "(divide)");
              break;

            case POS_OP_MOD:
              g_string_append (result, "(mod)");
              break;

            case POS_OP_MAX:
              g_string_append (result, "(max)");
              break;

            case POS_OP_MIN:
              g_string_append (result, "(min)");
              break;

            default:
              g_string_append_printf (result, "(op %d)", t.d.o.op);
          }

          break;

        case POS_TOKEN_VARIABLE:
          g_string_append_printf (result, "(str %s)", t.d.v.name);
          break;

        case POS_TOKEN_OPEN_PAREN:
          g_string_append (result, "( ");
          break;

       case POS_TOKEN_CLOSE_PAREN:
          g_string_append (result, " )");
          break;

        default:
          g_string_append_printf (result, "(strange %d)", t.type);
        }

    }

  return result;
}

GKeyFile *keys;

void
load_keys ()
{
  GError* err = NULL;
  gchar** keys_of_file;
  gchar** cursor;
  gboolean ever_printed_header = FALSE;
  gint passes = 0, fails = 0;

  keys = g_key_file_new ();

  g_key_file_load_from_file (keys,
        "tokentest.ini",
        G_KEY_FILE_KEEP_COMMENTS,
        &err);

  keys_of_file = g_key_file_get_keys (keys,
				      TOKENTEST_GROUP,
				      NULL,
				      &err);

  cursor = keys_of_file;

  while (*cursor)
    {
      gchar *desideratum = g_key_file_get_value (keys,
						 TOKENTEST_GROUP,
						 *cursor,
						 &err);
      MetaTheme *dummy = meta_theme_new ();
      MetaDrawSpec *spec;
      GString *str;

      spec = meta_draw_spec_new (dummy, *cursor, &err);

      str = draw_spec_to_string (spec);

      if (strcmp ("REQ", desideratum)==0) {
	gchar *comment = g_key_file_get_comment (keys, TOKENTEST_GROUP, *cursor, &err);

	if (!ever_printed_header) {
	  g_print ("[%s]\n", TOKENTEST_GROUP);
	  ever_printed_header = TRUE;
	}

	g_print ("\n#%s%s=%s\n", comment? comment: "", *cursor, str->str);
	g_free (comment);
      } else if (strcmp (str->str, desideratum)==0) {
        g_print("PASS: %s\n", *cursor);
	passes++;
      } else {
        g_warning ("FAIL: %s, wanted %s, got %s\n",
            *cursor, desideratum, str->str);
	fails++;
      }

      meta_theme_free (dummy);
      g_string_free (str, TRUE);
      g_free (desideratum);

      cursor++;
    }

  g_strfreev (keys_of_file);

  g_print("\n# Passes: %d.  Fails: %d.\n", passes, fails);
}

int
main ()
{
  load_keys ();
}