File: fo-expr-func.c

package info (click to toggle)
xmlroff 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 36,456 kB
  • ctags: 25,964
  • sloc: ansic: 178,200; xml: 109,155; sh: 8,973; makefile: 1,331; perl: 30
file content (1391 lines) | stat: -rw-r--r-- 34,707 bytes parent folder | download | duplicates (2)
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
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
/* Fo
 * fo-expr-func.c: XSL expression language functions
 *
 * Copyright (C) 1998-2002 Daniel Veillard.
 * Copyright (C) 2001-2002 Sun Microsystems.
 * Copyright (C) 2007-2009 Menteith Consulting Ltd
 * All Rights Reserved.
 *
 * Based on an XSL expression language evaluator that was based on the
 * 'XML Path Language implementation' in 'xpath.c' from libxml2 by
 * Daniel Veillard.
 *
 * See COPYING for the status of this software.
 */

#include "fo-expr-eval.h"
#include "fo-expr-func-private.h"
#include "fo-expr-context-private.h"
#include "fo/fo-list-block.h"
#include "fo/fo-table.h"
#include "fo/fo-table-column.h"
#include "fo/fo-table-cell.h"
#include "datatype/fo-all-datatype.h"
#include <string.h>

#define CHECK_ARITY(context, x)			    \
    if (nargs != (x))				    \
        return fo_expr_eval_new_error((context), \
				      FO_EXPR_EVAL_ERROR_INVALID_ARITY)
/**
 * fo_expr_func_abs:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the abs() XSL function
 *
 *    numeric abs(numeric)
 *
 * The abs function returns the absolute value of the numeric
 * argument.  That is, if the numeric argument is negative, it returns
 * the negation of the argument.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_abs (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  return fo_datatype_abs (arg);
}

/**
 * fo_expr_func_add:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the addition operation on XSL numerics.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_add (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg1;
  FoDatatype *arg2;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 2);

  arg2 = fo_expr_context_pop_stack (context);
  arg1 = fo_expr_context_pop_stack (context);

  return fo_datatype_add (arg1,
			  arg2);
}

/**
 * fo_expr_func_body_start:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the body-start() XSL function
 *
 *    numeric body-start()
 * 
 * The body-start function returns the calculated body-start value for
 * lists.  See the definition in Section 7.28.4,
 * "provisional-distance-between-starts", of the XSL 1.0
 * Recommendation.
 * 
 * NOTE: When this function is used outside of a list, it still
 * returns a calculated value as specified.
 **/
FoDatatype*
fo_expr_func_body_start (FoExprContext *context,
			 gint           nargs)
{
  const FoFo *current_fo = NULL;
  FoNode *fo_list_block = NULL;
  FoDatatype *result_datatype = NULL;

  g_return_val_if_fail (context != NULL, NULL);

  current_fo = fo_expr_context_get_current_fo (context);

  if (nargs == 0)
    {
      fo_list_block =
	fo_node_get_ancestor_or_self_by_type (FO_NODE (current_fo),
					      FO_TYPE_LIST_BLOCK);
      if (fo_list_block != NULL)
	{
	  result_datatype =
	    g_object_ref (fo_list_block_get_body_start (FO_FO (fo_list_block)));
	}
      else
	{
	  result_datatype =
	    fo_expr_eval_new_error (context,
				    FO_EXPR_EVAL_ERROR_NOT_LIST_BLOCK_OR_DESCENDANT);
	}
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_ARITY);
    }

  return result_datatype;
}

/**
 * fo_expr_func_ceiling:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the ceiling() XSL function
 *
 *    number ceiling(number)
 *
 * The ceiling function returns the smallest (closest to negative
 * infinity) integer that is not less than the argument.  The numeric
 * argument to this function must be of unit power zero.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_ceiling (FoExprContext *context,
		      gint           nargs)
{
  FoDatatype *arg;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  return fo_datatype_ceiling (arg);
}

/**
 * fo_expr_func_div:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the division operation on XSL numerics .
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_div (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg1;
  FoDatatype *arg2;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 2);

  arg2 = fo_expr_context_pop_stack (context);
  arg1 = fo_expr_context_pop_stack (context);

  return fo_datatype_div (arg1,
			  arg2);
}

/**
 * fo_expr_func_floor:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the floor() XSL function
 *
 *    numeric floor(numeric)
 *
 * The floor function returns the largest (closest to positive
 * infinity) integer that is not greater than the argument. The
 * numeric argument to this function must be of unit power zero.
 *
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_floor (FoExprContext *context,
		    gint           nargs)
{
  FoDatatype *arg;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  return fo_datatype_floor (arg);
}

static gchar*
opt_arg_to_property_name (FoExprContext *context,
			  gint           nargs,
			  GError       **error)
{
  FoDatatype *arg = NULL;
  gchar *property_name = NULL;

  g_return_val_if_fail (error == NULL || *error == NULL, NULL);

  if (nargs == 0)
    {
      property_name =
	g_strdup (fo_expr_context_get_property_name (context));
    }
  else if (nargs == 1)
    {
      arg = fo_expr_context_pop_stack (context);

      if (FO_IS_STRING (arg))
	{
	  property_name = fo_string_get_value (arg);
	}
      else if (FO_IS_NAME (arg))
	{
	  property_name = fo_name_get_value (arg);
	}
      else
	{
	  g_set_error (error,
		       FO_EXPR_EVAL_ERROR,
		       FO_EXPR_EVAL_ERROR_INVALID_TYPE,
		       fo_expr_eval_error_messages[FO_EXPR_EVAL_ERROR_INVALID_TYPE]);
	}

      g_object_unref (arg);
    }
  else
    {
	  g_set_error (error,
		       FO_EXPR_EVAL_ERROR,
		       FO_EXPR_EVAL_ERROR_INVALID_ARITY,
		       fo_expr_eval_error_messages[FO_EXPR_EVAL_ERROR_INVALID_ARITY]);
    }

  return property_name;
}

/**
 * fo_expr_func_from_nearest_specified_value:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the from-nearest-specified-value() XSL function
 *
 *    object from-nearest-specified-value(NCName?)
 *
 * The from-nearest-specified-value function returns a computed value
 * of the property whose name matches the argument specified, or if
 * omitted for the property for which the expression is being
 * evaluated.  The value returned is that for the closest ancestor of
 * the formatting object for which the expression is evaluated on
 * which there is an assignment of the property in the XML result tree
 * in the fo namespace.  If there is no such ancestor, the value
 * returned is the initial value.  If the argument specifies a
 * shorthand property and if the expression only consists of the
 * from-nearest-specified-value function with an argument matching the
 * property being computed, it is interpreted as an expansion of the
 * shorthand with each property into which the shorthand expands, each
 * having a value of from-nearest-specified-value with an argument
 * matching the property.  It is an error if arguments matching a
 * shorthand property are used in any other way.
 * 
 * Return value: #FoDatatype, which could be an #FoError */
FoDatatype*
fo_expr_func_from_nearest_specified_value (FoExprContext *context,
					   gint           nargs)
{
  FoProperty *property = NULL;
  FoDatatype *result_datatype = NULL;
  GError *error = NULL;
  gchar *property_name = NULL;

  property_name = opt_arg_to_property_name (context,
					    nargs,
					    &error);

  if (error != NULL)
    {
      if (property_name != NULL)
	{
	  g_free (property_name);
	}

      result_datatype =
	fo_expr_eval_propagate_error (context,
				      error);
    }
  else
    {
      if (g_type_from_name (property_name) != 0)
	{
	  g_object_get ((FoContext *) fo_expr_context_get_fo_context (context),
			property_name,
			&property,
			NULL);

	  result_datatype = g_object_ref (fo_property_get_value (property));
	}
      else
	{
	  result_datatype =
	    fo_expr_eval_new_error (context,
				    FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
	}
    }

  g_free (property_name);

  return result_datatype;
}

/**
 * fo_expr_func_from_parent:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the from-parent() XSL function
 *
 *    object from-parent(NCName?)
 *
 * The from-parent function returns a computed value of the property
 * whose name matches the argument specified, or if omitted for the
 * property for which the expression is being evaluated.  The value
 * returned is that for the parent of the formatting object for which
 * the expression is evaluated.  If there is no parent, the value
 * returned is the initial value. If the argument specifies a
 * shorthand property and if the expression only consists of the
 * from-parent function with an argument matching the property being
 * computed, it is interpreted as an expansion of the shorthand with
 * each property into which the shorthand expands, each having a value
 * of from-parent with an argument matching the property.  It is an
 * error if arguments matching a shorthand property are used in any
 * other way.
 * 
 * Return value: #FoDatatype, which could be an #FoError */
FoDatatype*
fo_expr_func_from_parent (FoExprContext *context,
			  gint           nargs)
{
  FoFo *use_from = NULL;
  FoFo *current_fo = NULL;
  FoProperty *property = NULL;
  FoDatatype *result_datatype = NULL;
  GError *error = NULL;
  const gchar *property_name = NULL;

  g_return_val_if_fail (context != NULL, NULL);

  property_name = opt_arg_to_property_name (context,
					    nargs,
					    &error);

  if (error != NULL)
    {
      result_datatype =
	fo_expr_eval_propagate_error (context,
				      error);
      goto error;
    }

  current_fo = (FoFo *) fo_expr_context_get_current_fo (context);
  if (fo_node_parent (FO_NODE (current_fo)) != NULL)
    {
      use_from =
	FO_FO (fo_node_parent (FO_NODE (current_fo)));
    }
  else if (fo_fo_get_tree (current_fo) != NULL)
    {
      use_from =
	FO_FO (fo_fo_get_tree (current_fo));
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_CANNOT_INHERIT);
      goto error;
    }

  if (fo_fo_get_context (use_from) != NULL &&
      g_object_class_find_property (G_OBJECT_GET_CLASS (use_from),
				    property_name))
    {
      g_object_get (fo_fo_get_context (use_from),
		    property_name,
		    &property,
		    NULL);

      result_datatype = g_object_ref (fo_property_get_value (property));
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
    }

 error:

  return result_datatype;
}

/**
 * fo_expr_func_from_table_column:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the from-table-column() XSL function
 *
 *    object from-table-column(NCName?)
 *
 * The from-table-column function returns the inherited value of the
 * property whose name matches the argument specified, or if omitted
 * for the property for which the expression is being evaluated, from
 * the fo:table-column whose column-number matches the column for
 * which this expression is evaluated and whose number-columns-spanned
 * also matches any span.  If there is no match for the
 * number-columns-spanned, it is matched against a span of 1. If there
 * is still no match, the initial value is returned.  It is an error
 * to use this function on formatting objects that are not an
 * fo:table-cell or its descendants.
 * 
 * Non-standard behaviour: return an error if the current property is
 * column-number or number-columns-spanned, since those properties
 * need to already be evaluated in order to determine the correct
 * table-column FO from which to inherit properties.
 *
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_from_table_column (FoExprContext *context,
				gint           nargs)
{
  FoNode *fo_node = NULL;
  FoFo *current_fo = NULL;
  FoFo *column = NULL;
  FoContext *use_fo_context = NULL;
  FoProperty *property = NULL;
  FoDatatype *result_datatype = NULL;
  GError *error = NULL;
  const gchar *property_name = NULL;
  const gchar *use_property_name = NULL;

  g_return_val_if_fail (context != NULL, NULL);

  /* from-table-column() is meaningless for 'column-number' and
     'number-columns-spanned' properties. */
  property_name = fo_expr_context_get_property_name (context);
  if ((strcmp (property_name, "column-number") == 0) ||
      (strcmp (property_name, "number-columns-spanned") == 0))
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
      goto error;
    }

  current_fo = (FoFo *) fo_expr_context_get_current_fo (context);
  fo_node = fo_node_get_ancestor_or_self_by_type (FO_NODE (current_fo),
						  FO_TYPE_TABLE_CELL);
  if (fo_node == NULL)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_TABLE_CELL_OR_DESCENDANT);
      goto error;
    }

  property_name = opt_arg_to_property_name (context,
					    nargs,
					    &error);

  if (error != NULL)
    {
      result_datatype =
	fo_expr_eval_propagate_error (context,
				      error);
      goto error;
    }

  if (g_type_from_name (property_name) == 0)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
      goto error;
    }

  if (g_type_from_name (property_name) != 0)
    {
      FoPropertyClass *class =
	g_type_class_ref (g_type_from_name (property_name));

      if (FO_IS_PROPERTY_CLASS (class))
	{
	  if (!fo_property_class_is_inherited (class))
	    {
	      result_datatype =
		fo_expr_eval_new_error (context,
					FO_EXPR_EVAL_ERROR_NOT_INHERITED);
	      g_type_class_unref (class);
	      goto error;
	    }
	}
      else
	{
	  result_datatype =
	    fo_expr_eval_new_error (context,
				    FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
	  g_type_class_unref (class);
	  goto error;
	}

      g_type_class_unref (class);
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
      goto error;
    }

  column = fo_table_cell_get_column (FO_FO (fo_node));

#if defined(LIBFO_DEBUG) && 0
  g_message ("from-table-column:: property: %s; column: %s; is-inherited: %d",
	     property_name,
	     fo_object_debug_sprintf (column),
	     fo_property_is_inherited (property));
#endif

  if (column != NULL)
    {
      use_fo_context = fo_fo_get_context (column);
    }
  else
    {
      FoFo *fo_tree =
	fo_fo_get_tree ((FoFo *) fo_expr_context_get_current_fo (context));

      use_fo_context =
	fo_fo_get_context (fo_tree);
    }

  if (g_object_class_find_property (G_OBJECT_GET_CLASS (use_fo_context),
				    property_name))
    {
      g_object_get (use_fo_context,
		    use_property_name,
		    &property,
		    NULL);

      result_datatype = fo_property_get_value (property);
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
    }

 error:

  return result_datatype;
}

/**
 * fo_expr_func_inherited_property_value:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the inherited-property-value() XSL function
 *
 *    object inherited-property-value(NCName?)
 *
 * The inherited-property-value function returns the inherited value
 * of the property whose name matches the argument specified, or if
 * omitted for the property for which the expression is being
 * evaluated.  It is an error if this property is not an inherited
 * property.
 *
 * The returned "inherited value" is the computed value of this
 * property on this object's parent. In particular, given the
 * following example:
 * 
 * <fo:list-block>
 *   ...
 *   <fo:list-item color="red">
 *     <fo:list-item-body background-color="green">
 *       <fo:block background-color="inherited-property-value(color)">
 *       </fo:block>
 *     </fo:list-item-body>
 *   </fo:list-item>
 * </fo:list-block>
 * 
 * The background-color property on the fo:block is assigned the value
 * "red" because the (computed, after inheritance) value of the color
 * (not background-color) property on the fo:list-item-body that is
 * the parent of fo:block is "red".
 *
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_inherited_property_value (FoExprContext *context,
				       gint           nargs)
{
  FoDatatype *arg = NULL;
  FoDatatype *result_datatype = NULL;
  const gchar *property_name = NULL;

  g_return_val_if_fail (context != NULL, NULL);

  if (nargs == 1)
    {
      arg = fo_expr_context_pop_stack (context);

      if (FO_IS_STRING (arg))
	{
	  property_name = fo_string_get_value (arg);
	}
      else if (FO_IS_NAME (arg))
	{
	  property_name = fo_name_get_value (arg);
	}
      else
	{
	  result_datatype =
	    fo_expr_eval_new_error (context,
				    FO_EXPR_EVAL_ERROR_INVALID_TYPE);
	  g_object_unref (arg);

	  goto error;
	}

      g_object_unref (arg);
    }
  else if (nargs == 0)
    {
      property_name = fo_expr_context_get_property_name (context);
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_TYPE);

      goto error;
    }


  if (g_type_from_name (property_name) != 0)
    {
      FoPropertyClass *class =
	g_type_class_ref (g_type_from_name (property_name));

      if (FO_IS_PROPERTY_CLASS (class))
	{
	  if (fo_property_class_is_inherited (class))
	    {
	      FoProperty *property = NULL;

	      g_object_get ((gpointer) fo_expr_context_get_fo_context (context),
			    property_name,
			    &property,
			    NULL);

	      result_datatype =
		g_object_ref (fo_property_get_value (property));

	      g_object_unref (property);
	    }
	  else
	    {
	      result_datatype =
		fo_expr_eval_new_error (context,
					FO_EXPR_EVAL_ERROR_NOT_INHERITED);
	    }
	}
      else
	{
	  result_datatype =
	    fo_expr_eval_new_error (context,
				    FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
	}

      g_type_class_unref (class);
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_PROPERTY);
    }

 error:

  return result_datatype;
}

/**
 * fo_expr_func_label_end:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the label-end() XSL function
 *
 *    numeric label-end()
 *
 * The label-end function returns the calculated label-end value for
 * lists.  See the definition in Section 7.28.3,
 * "provisional-label-separation", of the XSL 1.0 Recommendation.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_label_end (FoExprContext *context,
			gint           nargs)
{
  const FoFo *current_fo = NULL;
  FoNode *fo_list_block = NULL;
  FoDatatype *result_datatype = NULL;

  g_return_val_if_fail (context != NULL, NULL);

  current_fo = fo_expr_context_get_current_fo (context);

  if (nargs == 0)
    {
      fo_list_block =
	fo_node_get_ancestor_or_self_by_type (FO_NODE (current_fo),
					      FO_TYPE_LIST_BLOCK);
      if (fo_list_block != NULL)
	{
	  result_datatype =
	    g_object_ref (fo_list_block_get_label_end (FO_FO (fo_list_block)));
	}
      else
	{
	  result_datatype =
	    fo_expr_eval_new_error (context,
				    FO_EXPR_EVAL_ERROR_NOT_LIST_BLOCK_OR_DESCENDANT);
	}
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_ARITY);
    }

  return result_datatype;
}

/**
 * fo_expr_func_max:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the max() XSL function
 *
 *    numeric max(numeric)
 *
 * The max function returns the maximum of two numeric
 * arguments. These arguments must have the same numeric power.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_max (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg1;
  FoDatatype *arg2;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 2);

  arg2 = fo_expr_context_pop_stack (context);
  arg1 = fo_expr_context_pop_stack (context);

  return fo_datatype_max (arg1,
			  arg2);
}

/**
 * fo_expr_func_min:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the min() XSL function
 *
 *    numeric min(numeric)
 *
 * The min function returns the minimum of two numeric
 * arguments. These arguments must have the same numeric power.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_min (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg1;
  FoDatatype *arg2;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 2);

  arg2 = fo_expr_context_pop_stack (context);
  arg1 = fo_expr_context_pop_stack (context);

  return fo_datatype_min (arg1,
			  arg2);
}

/**
 * fo_expr_func_mod:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the modulus operation on XSL numerics.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_mod (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg1;
  FoDatatype *arg2;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 2);

  arg2 = fo_expr_context_pop_stack (context);
  arg1 = fo_expr_context_pop_stack (context);

  return fo_datatype_mod (arg1,
			  arg2);
}

/**
 * fo_expr_func_mul:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the multiply operation on XSL numerics by calling
 * #fo_datatype_mul.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_mul (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg1;
  FoDatatype *arg2;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 2);

  arg2 = fo_expr_context_pop_stack (context);
  arg1 = fo_expr_context_pop_stack (context);

  return fo_datatype_mul (arg1,
			  arg2);
}

/**
 * fo_expr_func_pcw:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the proportional-column-width() XSL function
 *
 *    numeric proportional-column-width(numeric)
 *
 * This version just returns a zero length, or an error if the
 * function argument is the wrong type or the current FO is not a
 * 'table-column'.
 *
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_pcw (FoExprContext *context,
		  gint           nargs)
{
  FoFo *current_fo = NULL;
  FoFo *table = NULL;
  FoDatatype *arg = NULL;
  FoDatatype *result_datatype = NULL;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  if (!FO_IS_NUMBER (arg) &&
      !FO_IS_INTEGER (arg))
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_TYPE);
      goto error;
    }

  if (!FO_IS_TABLE_COLUMN (fo_expr_context_get_current_fo (context)))
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_TABLE_COLUMN);
      goto error;
    }

  if (strcmp (fo_expr_context_get_property_name (context),
	      "column-width") != 0)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_COLUMN_WIDTH);
      goto error;
    }

  current_fo = (FoFo *) fo_expr_context_get_current_fo (context);
  table = FO_FO (fo_node_get_ancestor_or_self_by_type (FO_NODE (current_fo),
						       FO_TYPE_TABLE));

  if (fo_table_get_layout_method (table) !=
      FO_ENUM_TABLE_LAYOUT_METHOD_FIXED)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_FIXED_METHOD);
      goto error;
    }

  result_datatype = g_object_ref (fo_length_get_length_zero ());

 error:

  g_object_unref (arg);
  return result_datatype;
}

/**
 * fo_expr_func_pcw_prop:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the proportional-column-width() XSL function
 *
 *    numeric proportional-column-width(numeric)
 *
 * This version returns an #FoPcw representing the proportional
 * measure, or an error if the function argument is the wrong type or
 * the current FO is not a 'table-column'.
 *
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_pcw_prop (FoExprContext *context,
		       gint           nargs)
{
  FoFo *current_fo = NULL;
  FoFo *table = NULL;
  FoDatatype *arg = NULL;
  FoDatatype *result_datatype = NULL;

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  if (!FO_IS_TABLE_COLUMN (fo_expr_context_get_current_fo (context)))
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_TABLE_COLUMN);
      goto error;
    }

  if (strcmp (fo_expr_context_get_property_name (context),
	      "column-width") != 0)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_COLUMN_WIDTH);
      goto error;
    }

  current_fo = (FoFo *) fo_expr_context_get_current_fo (context);
  table = FO_FO (fo_node_get_ancestor_or_self_by_type (FO_NODE (current_fo),
						       FO_TYPE_TABLE));

  if (fo_table_get_layout_method (table) !=
      FO_ENUM_TABLE_LAYOUT_METHOD_FIXED)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_FIXED_METHOD);
      goto error;
    }

  if (FO_IS_NUMBER (arg))
    {
      result_datatype = fo_pcw_new_with_value (fo_number_get_value (arg));
    }
  else if (FO_IS_INTEGER (arg))
    {
      result_datatype =
	fo_pcw_new_with_value ((gdouble) fo_integer_get_value (arg));
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_TYPE);
      goto error;
    }

 error:

  g_object_unref (arg);
  return result_datatype;
}

/**
 * fo_expr_func_pcw_prop_fixed:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the proportional-column-width() XSL function
 *
 *    numeric proportional-column-width(numeric)
 *
 * This version returns a length representing the resovled value of
 * the proportional measure, or an error if the function argument
 * is the wrong type or the current FO is not a 'table-column'.
 *
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_pcw_prop_fixed (FoExprContext *context,
			     gint           nargs)
{
  const FoFo *current_fo = NULL;
  FoFo *table = NULL;
  FoDatatype *arg = NULL;
  FoDatatype *result_datatype = NULL;

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  if (!FO_IS_TABLE_COLUMN (fo_expr_context_get_current_fo (context)))
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_TABLE_COLUMN);
      goto error;
    }

  if (strcmp (fo_expr_context_get_property_name (context),
	      "column-width") != 0)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_COLUMN_WIDTH);
      goto error;
    }

  current_fo = fo_expr_context_get_current_fo (context);
  table = FO_FO (fo_node_get_ancestor_or_self_by_type (FO_NODE (current_fo),
						       FO_TYPE_TABLE));

  if (fo_table_get_layout_method (table) !=
      FO_ENUM_TABLE_LAYOUT_METHOD_FIXED)
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_NOT_FIXED_METHOD);
      goto error;
    }

  if (FO_IS_NUMBER (arg))
    {
      result_datatype =
	fo_length_new_with_value (fo_number_get_value (arg) *
				  fo_table_get_proportional_unit (table));
    }
  else if (FO_IS_INTEGER (arg))
    {
      result_datatype =
	fo_length_new_with_value (((gdouble) fo_integer_get_value (arg)) *
				  fo_table_get_proportional_unit (table));
    }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_TYPE);
      goto error;
    }

 error:

  g_object_unref (arg);
  return result_datatype;
}

/**
 * datatype_to_color_component:
 * @datatype: #FoDatatype representing one component of an #FoColor
 * @error:    #GError for reporting errors
 * 
 * Convert @datatype to a #guint in the range 0 to
 * #FO_COLOR_COMPONENT_MAX.
 * 
 * Sets @error if cannot convert @datatype.
 *
 * Return value: 
 **/
guint
datatype_to_color_component (FoDatatype *datatype,
			     GError    **error)
{
  guint component = 0;

  if (FO_IS_PERCENTAGE (datatype))
    {
      gdouble percentage = fo_percentage_get_value (datatype);

      percentage = MAX (percentage, 0.0);
      percentage = MIN (percentage, 100.0);

      component =
	(guint) ((percentage / 100.0) * FO_COLOR_COMPONENT_MAX);
    }
  else if (FO_IS_NUMBER (datatype))
    {
      gdouble number = fo_number_get_value (datatype);

      number = MAX (number, 0.0);
      number = MIN (number, 255.0);

      component =
	(guint) ((number / 255.0) * FO_COLOR_COMPONENT_MAX);
    }
  else if (FO_IS_INTEGER (datatype))
    {
      gint integer = fo_integer_get_value (datatype);

      integer = MAX (integer, 0);
      integer = MIN (integer, 255);

      component =
	(guint) ((((gdouble) integer) / 255.0) * FO_COLOR_COMPONENT_MAX);
    }
  else
    {
      g_set_error (error,
		   FO_EXPR_EVAL_ERROR,
		   FO_EXPR_EVAL_ERROR_INVALID_TYPE,
		   fo_expr_eval_error_messages[FO_EXPR_EVAL_ERROR_INVALID_TYPE]);
    }

  return component;
}
/**
 * fo_expr_func_rgb:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 *
 * Implement the rgb() XSL function
 *
 *    color rgb(numeric, numeric, numeric)
 *
 * The rgb function returns a specific color from the RGB color
 * space. The parameters to this function must be numerics (real
 * numbers) with a length power of zero.
 *
 * CSS has the requirement that the numbers be all numeric or all
 * percentages, but that isn't apparent from the XSL Recommendation.
 **/
FoDatatype*
fo_expr_func_rgb (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *red;
  FoDatatype *green;
  FoDatatype *blue;
  FoDatatype *result_datatype = NULL;
  GError *error = NULL;
  guint16 result_red;
  guint16 result_green;
  guint16 result_blue;
  
  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 3);

  blue  = fo_expr_context_pop_stack (context);
  green = fo_expr_context_pop_stack (context);
  red   = fo_expr_context_pop_stack (context);

  result_red = datatype_to_color_component (red,
					    &error);
  if (error != NULL)
    {
      result_datatype =
	fo_expr_eval_propagate_error (context,
				      error);
      goto error;
    }

  result_green = datatype_to_color_component (green,
					      &error);
  if (error != NULL)
    {
      result_datatype =
	fo_expr_eval_propagate_error (context,
				      error);
      goto error;
    }

  result_blue = datatype_to_color_component (blue,
					     &error);
  if (error != NULL)
    {
      result_datatype =
	fo_expr_eval_propagate_error (context,
				      error);
      goto error;
    }

  result_datatype = fo_color_new_with_value (result_red, result_green, result_blue);

 error:

  g_object_unref (red);
  g_object_unref (green);
  g_object_unref (blue);
  return result_datatype;
}

/**
 * fo_expr_func_round:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the round() XSL function
 *
 *    numeric round(numeric)
 *
 * The round function returns the number that is closest to the
 * argument and that is an integer. If there are two such numbers,
 * then the one that is even is returned.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_round (FoExprContext *context,
		    gint           nargs)
{
  FoDatatype *arg;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  return fo_datatype_round (arg);
}

/**
 * fo_expr_func_sub:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the subtraction operation on XSL numerics by calling
 * #fo_datatype_mul.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 **/
FoDatatype*
fo_expr_func_sub (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg1;
  FoDatatype *arg2;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 2);

  arg2 = fo_expr_context_pop_stack (context);
  arg1 = fo_expr_context_pop_stack (context);

  return fo_datatype_sub (arg1,
			  arg2);
}

/**
 * fo_expr_func_url:
 * @context: The expression context
 * @nargs:   Number of arguments provided in the function call
 * 
 * Implement the uri-specification XSL datatype
 *
 *    url(...)
 *
 * It's not really an XSL function, but it does look like one.
 * 
 * Return value: #FoDatatype, which could be an #FoError
 */
FoDatatype*
fo_expr_func_url (FoExprContext *context,
		  gint           nargs)
{
  FoDatatype *arg;
  FoDatatype *result_datatype = NULL;

  g_return_val_if_fail (context != NULL, NULL);

  CHECK_ARITY (context, 1);

  arg = fo_expr_context_pop_stack (context);

  if (FO_IS_STRING (arg))
    {
      result_datatype = fo_uri_specification_new_with_value (fo_string_get_value (arg));
    }
  else if (FO_IS_NAME (arg))
    {
      result_datatype = fo_uri_specification_new_with_value (fo_name_get_value (arg));
   }
  else
    {
      result_datatype =
	fo_expr_eval_new_error (context,
				FO_EXPR_EVAL_ERROR_INVALID_TYPE);
    }
  
  return result_datatype;
}