summaryrefslogtreecommitdiff
path: root/navit/command.c
blob: 6f8594551a25405087087e592912a081a058829f (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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <glib.h>
#include "item.h"
#include "xmlconfig.h"
#include "main.h"
#include "navit.h"
#include "vehicle.h"
#include "speech.h"
#include "gui.h"
#include "debug.h"
#include "callback.h"
#include "command.h"

/*
gui.fullscreen()
gui.menu()
gui.get_data() 
zoom_in() 
zoom_out()
speech.active=!speech.active
osd_configuration=1
Not yet:
osd[type=="xxx"].active=0;osd[type=="yyy"].active=0
*/


struct result {
	struct attr attr;
	double val;
	char *var;
	int varlen;
	char *attrn;
	int attrnlen;
	int allocated;
};

struct context {
	struct attr *attr;
	int error;
	char *expr;
	struct result res;
};

struct command_saved_cb {
	struct callback *cb;
	struct attr attr;
};

struct command_saved {
	struct context ctx;
	struct result res;
	char *command;				// The command string itself
	struct event_idle *idle_ev;		// Event to update this command
	struct callback *idle_cb;
	struct callback *register_cb;			// Callback to register all the callbacks
	struct event_idle *register_ev;		// Idle event to register all the callbacks
	struct attr navit;
	int num_cbs;
	struct command_saved_cb *cbs;		// List of callbacks for this saved command
	struct callback *cb; // Callback that should be called when we re-evaluate
	int error;
};

enum error {
	no_error=0,missing_closing_brace, missing_colon, wrong_type, illegal_number_format, illegal_character, missing_closing_bracket, invalid_type, not_ready
};

static void eval_comma(struct context *ctx, struct result *res);
static struct attr ** eval_list(struct context *ctx);

static void
result_free(struct result *res)
{
}

static int command_register_callbacks(struct command_saved *cs);

static char *
get_op(struct context *ctx, int test, ...)
{
	char *op,*ret=NULL;
	va_list ap;

	while (g_ascii_isspace(*ctx->expr)) {
		ctx->expr++;
	}

	va_start(ap, test);
	while ((op = va_arg(ap, char *))) {
		if (!strncmp(ctx->expr, op, strlen(op))) {
			ret=ctx->expr;
			if (! test)
				ctx->expr+=strlen(op);
			break;
		}
	}
	va_end(ap);
	return ret;
}

static int
is_int(struct result *res)
{
	return 1;
}

static int
is_double(struct result *res)
{
	return 0;
}

static void
dump(struct result *res)
{
	char object[res->varlen+1];
	char attribute[res->attrnlen+1];
	if (res->var)
		strncpy(object, res->var, res->varlen);
	object[res->varlen]='\0';
	if (res->attrn)
		strncpy(attribute, res->attrn, res->attrnlen);
	attribute[res->attrnlen]='\0';
	dbg(0,"type:%s\n", attr_to_name(res->attr.type));
	dbg(0,"attribute '%s' from '%s'\n", attribute, object);
}

static enum attr_type
command_attr_type(struct result *res)
{
	char attrn[res->attrnlen+1];

	strncpy(attrn, res->attrn, res->attrnlen);
	attrn[res->attrnlen]='\0';
	return attr_from_name(attrn);
}

static int
command_object_get_attr(struct context *ctx, struct attr *object, enum attr_type attr_type, struct attr *ret)
{
	struct object_func *func=object_func_lookup(object->type);
	if (!func || !func->get_attr)
		return 0;
	return func->get_attr(object->u.data, attr_type, ret, NULL);
}

static void
command_get_attr(struct context *ctx, struct result *res)
{
	int result;
	enum attr_type attr_type=command_attr_type(res);
	result=command_object_get_attr(ctx, &res->attr, attr_type, &res->attr);
	if (result) {
		res->var=res->attrn;
		res->varlen=res->attrnlen;
	} else {
		res->attr.type=attr_none;
		res->var=NULL;
		res->varlen=0;
	}
	res->attrn=NULL;
	res->attrnlen=0;
	dump(res);
}

static void
command_set_attr(struct context *ctx, struct result *res, struct result *newres)
{
	int result=0;
	enum attr_type attr_type=command_attr_type(res);
	struct object_func *func=object_func_lookup(res->attr.type);
	if (!func || !func->set_attr)
		return;
	newres->attr.type=attr_type;
	result=func->set_attr(res->attr.u.data, &newres->attr);
	*res=*newres;
}

static void
resolve_object(struct context *ctx, struct result *res)
{
	if (res->attr.type == attr_none && res->varlen) {
		res->attr=*ctx->attr;
		res->attrn=res->var;
		res->attrnlen=res->varlen;
		res->var=NULL;
		res->varlen=0;
	}
}

static void
resolve(struct context *ctx, struct result *res, struct attr *parent) //FIXME What is that parent for?
{
	resolve_object(ctx, res);
	if (res->attr.type >= attr_type_object_begin && res->attr.type <= attr_type_object_end) {
		if (res->attrn)
			command_get_attr(ctx, res);
		return;
	}
}

static double
get_double(struct context *ctx, struct result *res)
{
	resolve(ctx, res, NULL);
	return res->val;
}



static int
get_int(struct context *ctx, struct result *res)
{
	resolve(ctx, res, NULL);
	if (res->attr.type == attr_none)
		return 0;
	if (res->attr.type >= attr_type_int_begin && res->attr.type <= attr_type_int_end) {
		return res->attr.u.num;
	}
	if (res->attr.type >= attr_type_double_begin && res->attr.type <= attr_type_double_end) {
		return (int) (*res->attr.u.numd);
	}
	ctx->error=wrong_type;
	return 0;
}


static char *
get_string(struct context *ctx, struct result *res)
{
	resolve(ctx, res, NULL);
	return attr_to_text(&res->attr, NULL, 0);
}

static void
set_double(struct context *ctx, struct result *res, double val)
{
	result_free(res);
	res->val=val;
}

static void
set_int(struct context *ctx, struct result *res, int val)
{
	result_free(res);
	res->attr.type=attr_type_int_begin;
	res->attr.u.num=val;
}


static void
eval_value(struct context *ctx, struct result *res) {
	char *op;
	int len,dots=0;
	op=ctx->expr;
	res->varlen=0;
	res->var=NULL;
	res->attrnlen=0;
	res->attrn=NULL;

	while (g_ascii_isspace(*op)) {
		op++;
	}

	if (op[0] >= 'a' && op[0] <= 'z') {
		res->attr.type=attr_none;
		res->var=op;
		while ((op[0] >= 'a' && op[0] <= 'z') || op[0] == '_') {
			res->varlen++;
			op++;
		}
		ctx->expr=op;
		return;
	}
	if ((op[0] >= '0' && op[0] <= '9') ||
	    (op[0] == '.' && op[1] >= '0' && op[1] <= '9') ||
	    (op[0] == '-' && op[1] >= '0' && op[1] <= '9') ||
	    (op[0] == '-' && op[1] == '.' && op[2] >= '0' && op[2] <= '9')) {
		while ((op[0] >= '0' && op[0] <= '9') || op[0] == '.' || (res->varlen == 0 && op[0] == '-')) {
			if (op[0] == '.')
				dots++;
			if (dots > 1) {
				ctx->error=illegal_number_format;
				return;
			}
			res->varlen++;
			op++;
		}
		if (dots) {
			res->val = strtod(ctx->expr, NULL);
			res->attr.type=attr_type_double_begin;
			res->attr.u.numd=&res->val;
		} else {
			res->attr.type=attr_type_int_begin;
			res->attr.u.num=atoi(ctx->expr);
		}
		ctx->expr=op;
		return;
	}
	if (op[0] == '"') {
		do {
			op++;
		} while (op[0] != '"');
		res->attr.type=attr_type_string_begin;
		len=op-ctx->expr-1;
		res->attr.u.str=g_malloc(len+1);
		strncpy(res->attr.u.str, ctx->expr+1, len);
		res->attr.u.str[len]='\0';
		op++;
		ctx->expr=op;
		return;
	}
	ctx->error=illegal_character;
}

static int
get_next_object(struct context *ctx, struct result *res) {
	
	while (*ctx->expr) {
		res->varlen = 0;
		ctx->error = 0;

		eval_value(ctx,res);
		
		if ((res->attr.type == attr_none) && (res->varlen > 0)) {
			if (ctx->expr[0] != '.') {
				return 1;		// 1 means "this is the final object name"
			} else {
				return 2;		// 2 means "there are more object names following" (e.g. we just hit 'vehicle' in 'vehicle.position_speed'
			}
		}

		if (ctx->error) {
			// Probably hit an operator
			ctx->expr++;
		}
	}

	return 0;
}

static void
eval_brace(struct context *ctx, struct result *res)
{
	if (get_op(ctx,0,"(",NULL)) {
		eval_comma(ctx, res);
		if (ctx->error) return;
		if (!get_op(ctx,0,")",NULL)) 
			ctx->error=missing_closing_brace;
		return;
	}
	eval_value(ctx, res);
}

static void
command_call_function(struct context *ctx, struct result *res)
{
	struct attr cbl,**list=NULL;
	char function[res->attrnlen+1];
	if (res->attrn)
		strncpy(function, res->attrn, res->attrnlen);
	function[res->attrnlen]='\0';
	dbg(0,"function=%s\n", function);
	if (ctx->expr[0] != ')') {
		list=eval_list(ctx);	
		if (ctx->error) return;
	}
	if (!get_op(ctx,0,")",NULL)) {
		ctx->error=missing_closing_brace;
		return;
	}
	if (command_object_get_attr(ctx, &res->attr, attr_callback_list, &cbl)) {
		int valid;
		dbg(0,"function call %s from %s\n",function, attr_to_name(res->attr.type));
		callback_list_call_attr_4(cbl.u.callback_list, attr_command, function, list, NULL, &valid);
	}
	res->var=NULL;
	res->varlen=0;
	res->attrn=NULL;
	res->attrnlen=0;
	res->attr.type=attr_none;
}

static void
eval_postfix(struct context *ctx, struct result *res)
{
	struct result tmp;
	char *op;

    	eval_brace(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!(op=get_op(ctx,0,"[","(",".",NULL)))
			return;
		if (op[0] == '.') {
    			eval_brace(ctx, &tmp);
			if (ctx->error) return;
			resolve(ctx, res,NULL);
			if (ctx->error) return;
			res->attrn=tmp.var;
			res->attrnlen=tmp.varlen;
			dump(res);
		} else if (op[0] == '[') {
			if (!get_op(ctx,0,"]",NULL)) {
				ctx->error=missing_closing_bracket;
				return;
			}
		} else if (op[0] == '(') {
			dbg(0,"function call\n");
			resolve_object(ctx, res);
			command_call_function(ctx, res);
		}
	}
}

static void
eval_unary(struct context *ctx, struct result *res) 
{
	char *op;
	op=get_op(ctx,0,"~","!",NULL);
	if (op) {
	    	eval_unary(ctx, res);
		if (ctx->error) return;
		if (op[0] == '~')
			set_int(ctx, res, ~get_int(ctx, res));
		else
			set_int(ctx, res, !get_int(ctx, res));
	} else
		eval_postfix(ctx, res);
}

static void
eval_multiplicative(struct context *ctx, struct result *res) 
{
	struct result tmp;
	char *op;

    	eval_unary(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!(op=get_op(ctx,0,"*","/","%",NULL))) return;
    		eval_unary(ctx, &tmp);
		if (ctx->error) return;
		if (is_double(res) || is_double(&tmp)) {
			if (op[0] == '*')
				set_double(ctx, res, get_double(ctx, res) * get_double(ctx, &tmp));
			else if (op[0] == '/')
				set_double(ctx, res, get_double(ctx, res) / get_double(ctx, &tmp));
			else {
				ctx->error=invalid_type;
				return;
			}
		} else {
			if (op[0] == '*')
				set_int(ctx, res, get_int(ctx, res) * get_int(ctx, &tmp));
			else if (op[0] == '/')
				set_int(ctx, res, get_int(ctx, res) / get_int(ctx, &tmp));
			else
				set_int(ctx, res, get_int(ctx, res) % get_int(ctx, &tmp));
		}
		if (ctx->error) return;
	}
}

static void
eval_additive(struct context *ctx, struct result *res) 
{
	struct result tmp;
	char *op;

    	eval_multiplicative(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!(op=get_op(ctx,0,"-","+",NULL))) return;
    		eval_multiplicative(ctx, &tmp);
		if (ctx->error) return;
		if (is_double(res) || is_double(&tmp)) {
			if (op[0] == '+')
				set_double(ctx, res, get_double(ctx, res) + get_double(ctx, &tmp));
			else
				set_double(ctx, res, get_double(ctx, res) - get_double(ctx, &tmp));
		} else {
			if (op[0] == '+')
				set_int(ctx, res, get_int(ctx, res) + get_int(ctx, &tmp));
			else
				set_int(ctx, res, get_int(ctx, res) - get_int(ctx, &tmp));
		}
		if (ctx->error) return;
	}
}

static void
eval_equality(struct context *ctx, struct result *res) 
{
	struct result tmp;
	char *op;

    	eval_additive(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!(op=get_op(ctx,0,"==","!=","<=",">=","<",">",NULL))) return;
    		eval_additive(ctx, &tmp);
		if (ctx->error) return;

		switch (op[0]) {
		case '=':
			set_int(ctx, res, (get_int(ctx, res) == get_int(ctx, &tmp)));
			break;
		case '!':
			set_int(ctx, res, (get_int(ctx, res) != get_int(ctx, &tmp)));
			break;
		case '<':
			if (op[1] == '=') {
				set_int(ctx, res, (get_int(ctx, res) <= get_int(ctx, &tmp)));
			} else {
				set_int(ctx, res, (get_int(ctx, res) < get_int(ctx, &tmp)));
			}
			break;
		case '>':
			if (op[1] == '=') {
				set_int(ctx, res, (get_int(ctx, res) >= get_int(ctx, &tmp)));
			} else {
				set_int(ctx, res, (get_int(ctx, res) > get_int(ctx, &tmp)));
			}
			break;
		default:
			break;
		}
		result_free(&tmp);
	}
}


static void
eval_bitwise_and(struct context *ctx, struct result *res) 
{
	struct result tmp;

    	eval_equality(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (get_op(ctx,1,"&&",NULL)) return;
		if (!get_op(ctx,0,"&",NULL)) return;
    		eval_equality(ctx, &tmp);
		if (ctx->error) return;
		set_int(ctx, res, get_int(ctx, res) & get_int(ctx, &tmp));
		if (ctx->error) return;
	}
}

static void
eval_bitwise_xor(struct context *ctx, struct result *res) 
{
	struct result tmp;

    	eval_bitwise_and(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!get_op(ctx,0,"^",NULL)) return;
    		eval_bitwise_and(ctx, &tmp);
		if (ctx->error) return;
		set_int(ctx, res, get_int(ctx, res) ^ get_int(ctx, &tmp));
		if (ctx->error) return;
	}
}

static void
eval_bitwise_or(struct context *ctx, struct result *res) 
{
	struct result tmp;

    	eval_bitwise_xor(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (get_op(ctx,1,"||",NULL)) return;
		if (!get_op(ctx,0,"|",NULL)) return;
    		eval_bitwise_xor(ctx, &tmp);
		if (ctx->error) return;
		set_int(ctx, res, get_int(ctx, res) | get_int(ctx, &tmp));
		if (ctx->error) return;
	}
}

static void
eval_logical_and(struct context *ctx, struct result *res) 
{
	struct result tmp;

    	eval_bitwise_or(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!get_op(ctx,0,"&&",NULL)) return;
    		eval_bitwise_or(ctx, &tmp);
		if (ctx->error) return;
		set_int(ctx, res, get_int(ctx, res) && get_int(ctx, &tmp));
		if (ctx->error) return;
	}
}

static void
eval_logical_or(struct context *ctx, struct result *res) 
{
	struct result tmp;

    	eval_logical_and(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!get_op(ctx,0,"||",NULL)) return;
    		eval_logical_and(ctx, &tmp);
		if (ctx->error) return;
		set_int(ctx, res, get_int(ctx, res) || get_int(ctx, &tmp));
		if (ctx->error) return;
	}
}

static void
eval_conditional(struct context *ctx, struct result *res)
{
	struct result tmp;
	int cond;

    	eval_logical_or(ctx, res);
	if (ctx->error) return;
	if (!get_op(ctx,0,"?",NULL)) return;
	cond=!!get_int(ctx, res);
	if (ctx->error) return;
    	eval_logical_or(ctx, &tmp);
	if (ctx->error) return;
	if (cond)
		*res=tmp;
	if (!get_op(ctx,0,":",NULL)) {
		ctx->error=missing_colon;
		return;
	}
    	eval_logical_or(ctx, &tmp);
	if (ctx->error) return;
	if (!cond)
		*res=tmp;
}

/* = *= /= %= += -= >>= <<= &= ^= |= */

static void
eval_assignment(struct context *ctx, struct result *res)
{
	struct result tmp;
    	eval_conditional(ctx, res);
	if (ctx->error) return;
	if (!get_op(ctx,0,"=",NULL)) return;
    	eval_conditional(ctx, &tmp);
	if (ctx->error) return;
	resolve_object(ctx, res);
	command_set_attr(ctx, res, &tmp);
}

/* , */
static void
eval_comma(struct context *ctx, struct result *res)
{
	struct result tmp;

	eval_assignment(ctx, res);
	if (ctx->error) return;
	for (;;) {
		if (!get_op(ctx,0,",",NULL)) return;
    		eval_assignment(ctx, &tmp);
		if (ctx->error) return;
		*res=tmp;
	}
}

static struct attr **
eval_list(struct context *ctx)
{
	struct result tmp;

	struct attr **ret=NULL;
	for (;;) {
    		eval_assignment(ctx, &tmp);
		if (ctx->error) {
			attr_list_free(ret);
			return NULL;
		}
		ret=attr_generic_add_attr(ret, &tmp.attr);
		if (!get_op(ctx,0,",",NULL)) return ret;
	}
}

#if 0

void command(struct attr *attr, char *expr)
{
	struct result res;
	struct context ctx;
	memset(&res, 0, sizeof(res));
	memset(&ctx, 0, sizeof(ctx));
	ctx.attr=attr;
	ctx.error=0;
	ctx.expr=expr;
	printf("command='%s'\n", expr);
	eval_comma(&ctx,&res);
	printf("err=%d %s\n", ctx.error, ctx.expr);
	dump(&res);
	printf("***\n");
	resolve(&ctx, &res, NULL);
	dump(&res);
	printf("%s\n", get_string(&ctx, &res));
}
#endif

void
command_evaluate_to(struct attr *attr, char *expr, struct context *ctx, struct result *res)
{
	memset(res, 0, sizeof(*res));
	memset(ctx, 0, sizeof(*ctx));
	ctx->attr=attr;
	ctx->expr=expr;
	eval_comma(ctx,res);
}

void
command_evaluate_to_void(struct attr *attr, char *expr, int **error)
{
	struct result res;
	struct context ctx;
	command_evaluate_to(attr, expr, &ctx, &res);
	if (!ctx.error)
		resolve(&ctx, &res, NULL);
	if (error)
		*error=ctx.error;

}

char *
command_evaluate_to_string(struct attr *attr, char *expr, int **error)
{
	struct result res;
	struct context ctx;
	char *ret;

	command_evaluate_to(attr, expr, &ctx, &res);
	if (!ctx.error)
		ret=get_string(&ctx, &res);
	if (error)
		*error=ctx.error;
	if (ctx.error)
		return NULL;
	else
		return ret;
}

int
command_evaluate_to_int(struct attr *attr, char *expr, int **error)
{
	struct result res;
	struct context ctx;
	char *ret;

	command_evaluate_to(attr, expr, &ctx, &res);
	if (!ctx.error)
		ret=get_int(&ctx, &res);
	if (error)
		*error=ctx.error;
	if (ctx.error)
		return 0;
	else
		return ret;
}

void
command_evaluate(struct attr *attr, char *expr)
{
	struct result res;
	struct context ctx;
	memset(&res, 0, sizeof(res));
	memset(&ctx, 0, sizeof(ctx));
	ctx.attr=attr;
	ctx.error=0;
	ctx.expr=expr;
	for (;;) {
		eval_comma(&ctx,&res);
		if (ctx.error)
			return;
		resolve(&ctx, &res, NULL);
		if (ctx.error)
			return;
		if (!get_op(&ctx,0,";",NULL)) return;
	}
}

#if 0
void
command_interpreter(struct attr *attr)
{
                char buffer[4096];
                int size;
                for (;;) {
                size=read(0, buffer, 4095);
                buffer[size]='\0';
                if (size) {
                        buffer[size-1]='\0';
                }
                command(attr, buffer);
                }
}
#endif

static void
command_table_call(struct command_table *table, int count, void *data, char *command, struct attr **in, struct attr ***out, int *valid)
{
	int i;
	for (i = 0 ; i < count ; i++) {
		if (!strcmp(command,table->command)) {
			if (valid)
				*valid=1;
			table->func(data, command, in, out);
		}
		table++;
	}
}

void
command_add_table(struct callback_list *cbl, struct command_table *table, int count, void *data)
{
	struct callback *cb=callback_new_attr_3(callback_cast(command_table_call),attr_command, table, count, data);
	callback_list_add(cbl, cb);
}

void
command_saved_set_cb (struct command_saved *cs, struct callback *cb)
{
	cs->cb = cb;
}

int
command_saved_get_int (struct command_saved *cs)
{
	return get_int(&cs->ctx, &cs->res);
}

int 
command_saved_error (struct command_saved *cs)
{
	return cs->error;
}

static void
command_saved_evaluate_idle (struct command_saved *cs) 
{
	// Only run once at a time
	if (cs->idle_ev) {
		event_remove_idle(cs->idle_ev);
		cs->idle_ev = NULL;
	}

	command_evaluate_to(&cs->navit, cs->command, &cs->ctx, &cs->res);

	if (!cs->ctx.error) {
		cs->error = 0;

		if (cs->cb) {
			callback_call_1(cs->cb, cs);
		}
	} else {
		cs->error = cs->ctx.error;
	}
}

static void
command_saved_evaluate(struct command_saved *cs)
{	
	if (cs->idle_ev) {
		// We're already scheduled for reevaluation
		return;
	}

	if (!cs->idle_cb) {
		cs->idle_cb = callback_new_1(callback_cast(command_saved_evaluate_idle), cs);
	}

	cs->idle_ev = event_add_idle(100, cs->idle_cb);
}

static void
command_saved_callbacks_changed(struct command_saved *cs)
{
	// For now, we delete each and every callback and then re-create them
	int i;
	struct object_func *func;
	struct attr attr;

	if (cs->register_ev) {
		event_remove_idle(cs->register_ev);
		cs->register_ev = NULL;
	}

	attr.type = attr_callback;

	for (i = 0; i < cs->num_cbs; i++) {
		func = object_func_lookup(cs->cbs[i].attr.type);
		
		if (!func->remove_attr) {
			dbg(0, "Could not remove command-evaluation callback because remove_attr is missing for type %i!\n", cs->cbs[i].attr.type);
			continue;
		}

		attr.u.callback = cs->cbs[i].cb;

		func->remove_attr(cs->cbs[i].attr.u.data, &attr);
		callback_destroy(cs->cbs[i].cb);
	}

	g_free(cs->cbs);
	cs->cbs = NULL;
	cs->num_cbs = 0;

	// Now, re-create all the callbacks
	command_register_callbacks(cs);
}

static int
command_register_callbacks(struct command_saved *cs)
{
	struct attr prev,cb_attr,attr;
	int status;
	struct object_func *func;
	struct callback *cb;
	
	attr = cs->navit;
	cs->ctx.expr = cs->command;
	cs->ctx.attr = &attr;
	prev = cs->navit;	

	while ((status = get_next_object(&cs->ctx, &cs->res)) != 0) {
		resolve(&cs->ctx, &cs->res, NULL);

		if (cs->ctx.error || (cs->res.attr.type == attr_none)) {
			// We could not resolve an object, perhaps because it has not been created
			return 0;
		}

		if (prev.type != attr_none) {
			func = object_func_lookup(prev.type);

			if (func->add_attr) {
				if (status == 2) { // This is not the final attribute name
					cb = callback_new_attr_1(callback_cast(command_saved_callbacks_changed), cs->res.attr.type, (void*)cs);
					attr = cs->res.attr;
				} else if (status == 1) { // This is the final attribute name
					cb = callback_new_attr_1(callback_cast(command_saved_evaluate), cs->res.attr.type, (void*)cs);
					cs->ctx.attr = &cs->navit;
				} else {
					dbg(0, "Error: Strange status returned from get_next_object()\n");
				}

				cs->num_cbs++;
				cs->cbs = g_realloc(cs->cbs, (sizeof(struct command_saved_cb) * cs->num_cbs));
				cs->cbs[cs->num_cbs-1].cb = cb;
				cs->cbs[cs->num_cbs-1].attr = prev;
					
				cb_attr.u.callback = cb;
				cb_attr.type = attr_callback;

				func->add_attr(prev.u.data, &cb_attr);

			} else {
				dbg(0, "Could not add callback because add_attr is missing for type %i}n", prev.type);
			}
		}

		if (status == 2) {
			prev = cs->res.attr;
		} else {
			prev = cs->navit;
		}
	}

	command_saved_evaluate_idle(cs);

	return 1;
}

struct command_saved
*command_saved_new(char *command, struct navit *navit, struct callback *cb)
{
	struct command_saved *ret;

	ret = g_new0(struct command_saved, 1);
	ret->command = g_strdup(command);
	ret->navit.u.navit = navit;
	ret->navit.type = attr_navit;
	ret->cb = cb;
	ret->error = not_ready;

	if (!command_register_callbacks(ret)) {
		// We try this as an idle call again
		ret->register_cb = callback_new_1(callback_cast(command_saved_callbacks_changed), ret);
		ret->register_ev = event_add_idle(300, ret->register_cb);
	}		

	return ret;
}

void 
command_saved_destroy(struct command_saved *cs)
{
	g_free(cs->command);
	g_free(cs);
}