summaryrefslogtreecommitdiff
path: root/src/html/html_table_element.c
blob: 58887ae151f5e8913e4195db84a37050d5f93811 (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
1013
1014
1015
1016
1017
1018
1019
1020
1021
/*
 * This file is part of libdom.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
 * Copyright 2014 Rupinder Singh Khokhar<rsk1coder99@gmail.com>
 */
#include <assert.h>
#include <stdlib.h>

#include <dom/html/html_table_element.h>

#include "html/html_document.h"
#include "html/html_table_element.h"
#include "html/html_tablecaption_element.h"
#include "html/html_tablesection_element.h"
#include "html/html_tablerow_element.h"
#include "html/html_collection.h"

#include "core/node.h"
#include "core/attr.h"
#include "utils/utils.h"

static struct dom_element_protected_vtable _protect_vtable = {
	{
		DOM_NODE_PROTECT_VTABLE_HTML_TABLE_ELEMENT
	},
	DOM_HTML_TABLE_ELEMENT_PROTECT_VTABLE
};

/**
 * Create a dom_html_table_element object
 *
 * \param params  The html element creation parameters
 * \param ele     The returned element object
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception _dom_html_table_element_create(
		struct dom_html_element_create_params *params,
		struct dom_html_table_element **ele)
{
	struct dom_node_internal *node;

	*ele = malloc(sizeof(dom_html_table_element));
	if (*ele == NULL)
		return DOM_NO_MEM_ERR;

	/* Set up vtables */
	node = (struct dom_node_internal *) *ele;
	node->base.vtable = &_dom_html_element_vtable;
	node->vtable = &_protect_vtable;

	return _dom_html_table_element_initialise(params, *ele);
}

/**
 * Initialise a dom_html_table_element object
 *
 * \param params  The html element creation parameters
 * \param ele     The dom_html_table_element object
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception _dom_html_table_element_initialise(
		struct dom_html_element_create_params *params,
		struct dom_html_table_element *ele)
{
	return _dom_html_element_initialise(params, &ele->base);
}

/**
 * Finalise a dom_html_table_element object
 *
 * \param ele  The dom_html_table_element object
 */
void _dom_html_table_element_finalise(struct dom_html_table_element *ele)
{
	_dom_html_element_finalise(&ele->base);
}

/**
 * Destroy a dom_html_table_element object
 *
 * \param ele  The dom_html_table_element object
 */
void _dom_html_table_element_destroy(struct dom_html_table_element *ele)
{
	_dom_html_table_element_finalise(ele);
	free(ele);
}

/*------------------------------------------------------------------------*/
/* The protected virtual functions */

/* The virtual function used to parse attribute value, see src/core/element.c
 * for detail */
dom_exception _dom_html_table_element_parse_attribute(dom_element *ele,
		dom_string *name, dom_string *value,
		dom_string **parsed)
{
	UNUSED(ele);
	UNUSED(name);

	dom_string_ref(value);
	*parsed = value;

	return DOM_NO_ERR;
}

/* The virtual destroy function, see src/core/node.c for detail */
void _dom_virtual_html_table_element_destroy(dom_node_internal *node)
{
	_dom_html_table_element_destroy((struct dom_html_table_element *) node);
}

/* The virtual copy function, see src/core/node.c for detail */
dom_exception _dom_html_table_element_copy(
		dom_node_internal *old, dom_node_internal **copy)
{
	dom_html_table_element *new_node;
	dom_exception err;

	new_node = malloc(sizeof(dom_html_table_element));
	if (new_node == NULL)
		return DOM_NO_MEM_ERR;

	err = dom_html_table_element_copy_internal(old, new_node);
	if (err != DOM_NO_ERR) {
		free(new_node);
		return err;
	}

	*copy = (dom_node_internal *) new_node;

	return DOM_NO_ERR;
}

dom_exception _dom_html_table_element_copy_internal(
		dom_html_table_element *old,
		dom_html_table_element *new)
{
	dom_exception err;

	err = dom_html_element_copy_internal(old, new);
	if (err != DOM_NO_ERR) {
		return err;
	}

	return DOM_NO_ERR;
}

/*-----------------------------------------------------------------------*/
/* API functions */

#define SIMPLE_GET(attr)						\
	dom_exception dom_html_table_element_get_##attr(		\
			dom_html_table_element *element,			\
			dom_string **attr)					\
{								\
	dom_exception ret;					\
	dom_string *_memo_##attr;				\
	\
	_memo_##attr =						\
	((struct dom_html_document *)			\
	 ((struct dom_node_internal *)element)->owner)-> \
	memoised[hds_##attr];				\
	\
	ret = dom_element_get_attribute(element, _memo_##attr, attr); \
	\
	return ret;						\
}
#define SIMPLE_SET(attr)						\
	dom_exception dom_html_table_element_set_##attr(			\
			dom_html_table_element *element,			\
			dom_string *attr)					\
{								\
	dom_exception ret;					\
	dom_string *_memo_##attr;				\
	\
	_memo_##attr =						\
	((struct dom_html_document *)			\
	 ((struct dom_node_internal *)element)->owner)-> \
	memoised[hds_##attr];				\
	\
	ret = dom_element_set_attribute(element, _memo_##attr, attr); \
	\
	return ret;						\
}

#define SIMPLE_GET_SET(attr) SIMPLE_GET(attr) SIMPLE_SET(attr)
SIMPLE_GET_SET(align);
SIMPLE_GET_SET(bg_color);
SIMPLE_GET_SET(border);
SIMPLE_GET_SET(cell_padding);
SIMPLE_GET_SET(cell_spacing);
SIMPLE_GET_SET(frame);
SIMPLE_GET_SET(rules);
SIMPLE_GET_SET(summary);
SIMPLE_GET_SET(width);

/**
 * Get the caption Attribute
 *
 * \param table	The dom_html_table_element object
 */
dom_exception dom_html_table_element_get_caption(
		dom_html_table_element *table, dom_html_table_caption_element **caption)
{
	dom_node_internal *node_tmp = ((dom_node_internal *)table);
	dom_html_document *doc = (dom_html_document *)(node_tmp->owner);

	for (node_tmp = node_tmp->first_child; node_tmp != NULL; node_tmp = node_tmp->next) {
		if((node_tmp->type == DOM_ELEMENT_NODE) &&
				dom_string_caseless_isequal(
				doc->elements[DOM_HTML_ELEMENT_TYPE_CAPTION],
				node_tmp->name)) {
			break;
		}
	}

	*caption = (dom_html_table_caption_element *)node_tmp;
	if(*caption != NULL)
		dom_node_ref(*caption);

	return DOM_NO_ERR;
}

/**
 * Set the caption Attribute
 *
 * \param table	The dom_html_table_element object
 * \param table	The dom_html_table_element object
 */
dom_exception dom_html_table_element_set_caption(
		dom_html_table_element *table, dom_html_table_caption_element *caption)
{
	dom_node_internal *check_node = ((dom_node_internal *)caption);
	dom_html_document *doc = (dom_html_document *)(((dom_node_internal *)table)->owner);
	dom_exception exp;
	dom_node *new_caption;

	if (check_node == NULL) {
		return DOM_HIERARCHY_REQUEST_ERR;
	}
	if (!dom_string_caseless_isequal(
			doc->elements[DOM_HTML_ELEMENT_TYPE_CAPTION],
			check_node->name)) {
		return DOM_HIERARCHY_REQUEST_ERR;
	}

	exp = dom_html_table_element_delete_caption(table);
	if(exp != DOM_NO_ERR)
		return exp;

	/* Create a new caption */
	return dom_node_append_child(table, caption,
			&new_caption);
}

/**
 * Get the t_head Attribute
 *
 * \param table	The dom_html_table_element object
 */
dom_exception dom_html_table_element_get_t_head(
		dom_html_table_element *table, dom_html_table_section_element **t_head)
{
	dom_node_internal *node_tmp = ((dom_node_internal *)table);
	dom_html_document *doc = (dom_html_document *)(node_tmp->owner);

	for (node_tmp = node_tmp->first_child; node_tmp != NULL; node_tmp = node_tmp->next) {
		if((node_tmp->type == DOM_ELEMENT_NODE) &&
				dom_string_caseless_isequal(
				doc->elements[DOM_HTML_ELEMENT_TYPE_THEAD],
				node_tmp->name)) {
			break;
		}
	}

	*t_head = (dom_html_table_section_element *)node_tmp;
	if (*t_head != NULL)
		dom_node_ref(*t_head);
	return DOM_NO_ERR;
}

/**
 * Set the t_head Attribute
 *
 * \param table	The dom_html_table_element object
 * \param table	The dom_html_table_element object
 */
dom_exception dom_html_table_element_set_t_head(
		dom_html_table_element *table, dom_html_table_section_element *t_head)
{
	dom_node_internal *check_node = ((dom_node_internal *)t_head);
	dom_html_document *doc = (dom_html_document *)(((dom_node_internal *)table)->owner);
	dom_exception exp;
	dom_node *new_t_head;

	if (check_node == NULL) {
		return DOM_HIERARCHY_REQUEST_ERR;
	}
	if (!dom_string_caseless_isequal(
			doc->elements[DOM_HTML_ELEMENT_TYPE_CAPTION],
			check_node->name)) {
		return DOM_HIERARCHY_REQUEST_ERR;
	}

	exp = dom_html_table_element_delete_t_head(table);
	if(exp != DOM_NO_ERR)
		return exp;

	return dom_node_append_child(table,
			t_head, &new_t_head);

}

/**
 * Get the t_foot Attribute
 *
 * \param table	The dom_html_table_element object
 */
dom_exception dom_html_table_element_get_t_foot(
		dom_html_table_element *table, dom_html_table_section_element **t_foot)
{
	dom_node_internal *node_tmp = ((dom_node_internal *)table);
	dom_html_document *doc = (dom_html_document *)(node_tmp->owner);

	for (node_tmp = node_tmp->first_child; node_tmp != NULL; node_tmp = node_tmp->next) {
		if ((node_tmp->type == DOM_ELEMENT_NODE) &&
				dom_string_caseless_isequal(
				doc->elements[DOM_HTML_ELEMENT_TYPE_TFOOT],
				node_tmp->name)) {
			break;
		}
	}

	*t_foot = (dom_html_table_section_element *)node_tmp;
	if (*t_foot != NULL)
		dom_node_ref(*t_foot);

	return DOM_NO_ERR;
}

/**
 * Set the t_foot Attribute
 *
 * \param table	The dom_html_table_element object
 */
dom_exception dom_html_table_element_set_t_foot(
		dom_html_table_element *table, dom_html_table_section_element *t_foot)
{
	dom_node_internal *check_node = ((dom_node_internal *)t_foot); /*< temporary node to check for raised exceptions */
	dom_html_document *doc = (dom_html_document *)(((dom_node_internal *)table)->owner);
	dom_exception exp;
	dom_node *new_t_foot;

	if(check_node == NULL) {
		return DOM_HIERARCHY_REQUEST_ERR;
	}

	if(!dom_string_caseless_isequal(
			doc->elements[DOM_HTML_ELEMENT_TYPE_TFOOT],
			check_node->name)) {
		return DOM_HIERARCHY_REQUEST_ERR;
	}

	exp = dom_html_table_element_delete_t_foot(table);
	if(exp != DOM_NO_ERR)
		return exp;

	return dom_node_append_child(table, t_foot,
				&new_t_foot);

}

/**
 * Callback for creating the rows collection
 *
 * \param node		The dom_html_table_element object
 * \param ctx		The dom_html_document object (void *)
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
static bool table_rows_callback(struct dom_node_internal *node, void *ctx)
{
	dom_html_document *doc = ctx;
	if(node->type == DOM_ELEMENT_NODE &&
			dom_string_caseless_isequal(node->name,
				doc->elements[DOM_HTML_ELEMENT_TYPE_TR])) {
		return true;
	}
	return false;
}

/**
 * Get the rows collection
 *
 * \param element       The dom_html_table_element object
 * \param rows          The Status
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_get_rows(
		dom_html_table_element *element,
		dom_html_collection **rows)
{
	dom_html_document *doc = (dom_html_document *) ((dom_node_internal *) element)->owner;
	return _dom_html_collection_create(doc, (dom_node_internal *)element, 
			table_rows_callback, (void *)doc, rows);
}

/**
 * Callback for creating the tbodies collection
 *
 * \param node		The dom_html_table_element object
 * \param ctx		The dom_html_document object (void *)
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
static bool table_t_bodies_callback(struct dom_node_internal *node, void *ctx)
{
	dom_html_document *doc = ctx;
	if(node->type == DOM_ELEMENT_NODE && 
			dom_string_caseless_isequal(node->name,
				doc->elements[DOM_HTML_ELEMENT_TYPE_TBODY])) {
		return true;
	}
	return false;
}

/**
 * Get the tBodies collection
 *
 * \param element	The dom_html_table_element object
 * \param t_bodies	The Status
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */

dom_exception dom_html_table_element_get_t_bodies(
		dom_html_table_element *element,
		dom_html_collection **t_bodies)
{
	dom_html_document *doc = (dom_html_document *) ((dom_node_internal *) element)->owner;
	return _dom_html_collection_create(doc, (dom_node_internal *)element, 
			table_t_bodies_callback, (void *)doc, t_bodies);
}

/**
 * Get or Create the table caption
 *
 * \param element	The dom_html_table_element object
 * \param caption	The Status
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_create_caption(
		dom_html_table_element *element,
		dom_html_element **caption)
{
	dom_exception exp;
	if((exp = dom_html_table_element_get_caption(element, 
					(dom_html_table_caption_element **)caption)) != DOM_NO_ERR) {
		dom_node_unref(*caption);
		return exp;
	}
	if((*caption) == NULL) {
		dom_node *new_caption;
		dom_html_document *doc = (dom_html_document *)
				((dom_node_internal *) element)->owner;

		struct dom_html_element_create_params params = {
			.type = DOM_HTML_ELEMENT_TYPE_CAPTION,
			.doc = doc,
			.name = doc->elements[DOM_HTML_ELEMENT_TYPE_CAPTION],
			.namespace = ((dom_node_internal *)element)->namespace,
			.prefix = ((dom_node_internal *)element)->prefix
		};

		exp = _dom_html_table_caption_element_create(&params,
				(dom_html_table_caption_element **)caption);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(*caption);
			return exp;
		}

		exp = dom_node_append_child(element, *caption,
				&new_caption);
		dom_node_unref(*caption);
		if(exp == DOM_NO_ERR)
			*caption = (dom_html_element *)new_caption;
	}
	return exp;
}

/**
 * Delete the table caption, if one exists
 *
 * \param element	The dom_html_table_element object
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_delete_caption(
		dom_html_table_element *element)
{
	dom_html_table_caption_element *caption;
	dom_node *old_caption;
	dom_exception err;

	err = dom_html_table_element_get_caption(element, &caption);
	if (err != DOM_NO_ERR || caption == NULL)
		return err;

	err = dom_node_remove_child(element, caption, &old_caption);
	if (err == DOM_NO_ERR) {
		dom_node_unref(old_caption);
	}

	dom_node_unref(caption);

	return err;
}

/**
 * Get or Create the table Foot
 *
 * \param element	The dom_html_table_element object
 * \param t_foot	The Status
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_create_t_foot(
		dom_html_table_element *element,
		dom_html_element **t_foot)
{
	dom_exception exp;
	exp = dom_html_table_element_get_t_foot(element,
			(dom_html_table_section_element **)t_foot);
	if (exp !=DOM_NO_ERR)
		return exp;

	if ((*t_foot) == NULL) {
		dom_node *new_t_foot;
		dom_html_document *doc = (dom_html_document *)
				((dom_node_internal *) element)->owner;

		struct dom_html_element_create_params params = {
			.type = DOM_HTML_ELEMENT_TYPE_TFOOT,
			.doc = doc,
			.name = doc->elements[DOM_HTML_ELEMENT_TYPE_TFOOT],
			.namespace = ((dom_node_internal *)element)->namespace,
			.prefix = ((dom_node_internal *)element)->prefix
		};

		exp = _dom_html_table_section_element_create(&params,
				(dom_html_table_section_element **)t_foot);
		if (exp != DOM_NO_ERR) {
			dom_node_unref(*t_foot);
			return exp;
		}

		exp = dom_node_append_child(element, *t_foot,
				&new_t_foot);
		dom_node_unref(*t_foot);
		if (exp == DOM_NO_ERR)
			*t_foot = (dom_html_element *)new_t_foot;

		return exp;

	}
	return DOM_NO_ERR;
}

/**
 * Delete the table Foot, if one exists
 *
 * \param element	The dom_html_table_element object
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_delete_t_foot(
		dom_html_table_element *element)
{
	dom_html_table_section_element *t_foot;
	dom_node *old_t_foot;
	dom_exception err;

	err = dom_html_table_element_get_t_foot(element, &t_foot);
	if (err != DOM_NO_ERR || t_foot == NULL)
		return err;

	err = dom_node_remove_child(element, t_foot, &old_t_foot);
	if (err == DOM_NO_ERR) {
		dom_node_unref(old_t_foot);
	}

	dom_node_unref(t_foot);

	return err;
}

/**
 * Get or Create the table Head
 *
 * \param element	The dom_html_table_element object
 * \param t_head	The Status
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_create_t_head(
		dom_html_table_element *element,
		dom_html_element **t_head)
{
	dom_exception exp;
	exp = dom_html_table_element_get_t_head(element,
			(dom_html_table_section_element **)t_head);
	if(exp != DOM_NO_ERR) {
		dom_node_unref(*t_head);
		return exp;
	}
	if((*t_head) == NULL) {
		dom_exception exp;
		dom_node *new_t_head;
		dom_html_document *doc = (dom_html_document *)
				((dom_node_internal *) element)->owner;

		struct dom_html_element_create_params params = {
			.type = DOM_HTML_ELEMENT_TYPE_THEAD,
			.doc = doc,
			.name = doc->elements[DOM_HTML_ELEMENT_TYPE_THEAD],
			.namespace = ((dom_node_internal *)element)->namespace,
			.prefix = ((dom_node_internal *)element)->prefix
		};

		exp = _dom_html_table_section_element_create(&params,
				(dom_html_table_section_element **)t_head);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(*t_head);
			return exp;
		}

		exp = dom_node_append_child(element,
				*t_head, &new_t_head);
		if(exp == DOM_NO_ERR) {
			dom_node_unref(*t_head);
			*t_head = (dom_html_element *)new_t_head;
		}
		return exp;
	}
	return DOM_NO_ERR;
}

/**
 * Delete the table Head, if one exists
 *
 * \param element	The dom_html_table_element object
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_delete_t_head(
		dom_html_table_element *element)
{
	dom_html_table_section_element *t_head;
	dom_node *old_t_head;
	dom_exception err;

	err = dom_html_table_element_get_t_head(element, &t_head);
	if (err != DOM_NO_ERR || t_head == NULL)
		return err;

	err = dom_node_remove_child(element, t_head, &old_t_head);
	if (err == DOM_NO_ERR) {
		dom_node_unref(old_t_head);
	}

	dom_node_unref(t_head);

	return err;
}

/**
 * Get or Create the table Body
 *
 * \param element	The dom_html_table_element object
 * \param t_head	The Status
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
static dom_exception dom_html_table_element_create_t_body(
		dom_html_table_element *element,
		dom_html_table_section_element **t_body)
{
	dom_html_collection *t_bodies;
	uint32_t len;
	dom_exception exp;
	exp = dom_html_table_element_get_t_bodies(element,
			&t_bodies);
	if(exp != DOM_NO_ERR) {
		return exp;
	}
	exp = dom_html_collection_get_length(t_bodies,
			&len);
	if(exp != DOM_NO_ERR) {
		dom_html_collection_unref(t_bodies);
		return exp;
	}
	if(len == 0) {
		dom_node *new_t_body;
		dom_html_document *doc = (dom_html_document *)
				((dom_node_internal *) element)->owner;

		struct dom_html_element_create_params params = {
			.type = DOM_HTML_ELEMENT_TYPE_TBODY,
			.doc = doc,
			.name = doc->elements[DOM_HTML_ELEMENT_TYPE_TBODY],
			.namespace = ((dom_node_internal *)element)->namespace,
			.prefix = ((dom_node_internal *)element)->prefix
		};

		exp = _dom_html_table_section_element_create(&params, t_body);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(*t_body);
			dom_html_collection_unref(t_bodies);
			return exp;
		}

		exp = dom_node_append_child(element, *t_body,
				&new_t_body);
		if(exp == DOM_NO_ERR) {
			dom_node_unref(*t_body);
			*t_body = (dom_html_table_section_element *)new_t_body;
		}
	} else {
		exp = dom_html_collection_item(t_bodies,
				0, (dom_node **)t_body);
	}
	dom_html_collection_unref(t_bodies);
	return exp;
}

/**
 * Insert a new Row into the table
 *
 * \param element	The dom_html_table_element object
 * \param index		The Index to insert the Row
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_insert_row(
		dom_html_table_element *element,
		int32_t index,
		dom_html_element **row_out)
{
	dom_exception exp;
	dom_html_table_row_element *row;
	dom_html_collection* rows;
	uint32_t len;
	dom_html_document *doc = (dom_html_document *)
		((dom_node_internal *) element)->owner;

	exp = dom_html_table_element_get_rows(element, &rows);
	if(exp != DOM_NO_ERR) {
		return exp;
	}
	exp = dom_html_collection_get_length(rows, &len);
	dom_html_collection_unref(rows);
	if(exp != DOM_NO_ERR) {
		return exp;
	}

	if(index > (int32_t)len || index < -1) {
		exp = DOM_INDEX_SIZE_ERR;
	} else if(len == 0) {
		dom_html_table_section_element *new_body;
		dom_node *new_row;

		struct dom_html_element_create_params params = {
			.type = DOM_HTML_ELEMENT_TYPE_TR,
			.doc = doc,
			.name = doc->elements[DOM_HTML_ELEMENT_TYPE_TR],
			.namespace = ((dom_node_internal *)element)->namespace,
			.prefix = ((dom_node_internal *)element)->prefix
		};

		exp = _dom_html_table_row_element_create(&params, &row);
		if(exp != DOM_NO_ERR) {
			return exp;
		}

		exp = dom_html_table_element_create_t_body(element, &new_body);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(row);
			return exp;
		}

		exp = dom_node_append_child(new_body, row, &new_row);
		dom_node_unref(new_body);
		dom_node_unref(row);
		if(exp == DOM_NO_ERR) {
			*row_out = (dom_html_element *)new_row;
		}
	} else {
		uint32_t window_len = 0, section_len;
		dom_html_table_section_element *t_head;
		dom_html_table_section_element *t_foot;
		dom_node_internal *n;

		if(index ==-1) {
			index = (int32_t)len;
		}

		exp = dom_html_table_element_get_t_head(element, &t_head);
		if (exp != DOM_NO_ERR) {
			return exp;
		}

		exp = dom_html_table_section_element_get_rows(t_head, &rows);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(t_head);
			return exp;
		}

		exp = dom_html_collection_get_length(rows, &section_len);
		dom_html_collection_unref(rows);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(t_head);
			return exp;
		}

		if(window_len + section_len > (uint32_t)index ||
				window_len + section_len == len) {
			exp = dom_html_table_section_element_insert_row(t_head,
					index-window_len,
					(struct dom_html_element **)&row);
			dom_node_unref(t_head);
			if (exp == DOM_NO_ERR) {
				*row_out = (dom_html_element *)row;
			}
			return exp;
		}
		dom_node_unref(t_head);

		window_len += section_len;

		n = (dom_node_internal *)element;

		for (n = n->first_child; n != NULL; n = n->next) {
			if((n->type == DOM_ELEMENT_NODE) &&
					dom_string_caseless_isequal(
					doc->elements[DOM_HTML_ELEMENT_TYPE_TBODY],
					n->name)) {

				exp = dom_html_table_section_element_get_rows(
						(dom_html_table_section_element *)n,
						&rows);
				if (exp != DOM_NO_ERR) {
					return exp;
				}
				exp = dom_html_collection_get_length(rows, &section_len);
				dom_html_collection_unref(rows);
				if (exp != DOM_NO_ERR) {
					return exp;
				}

				if(window_len + section_len > (uint32_t)index ||
						window_len + section_len == len) {
					exp = dom_html_table_section_element_insert_row(
							(dom_html_table_section_element *)n,
							index-window_len,
							(struct dom_html_element **)&row);
					if (exp == DOM_NO_ERR) {
						*row_out = (dom_html_element *)row;
					}
					return exp;
				}

				window_len += section_len;
			}
		}
		exp = dom_html_table_element_get_t_foot(element, &t_foot);
		if(exp != DOM_NO_ERR) {
			return exp;
		}

		exp = dom_html_table_section_element_get_rows(t_foot, &rows);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(t_foot);
			return exp;
		}

		exp = dom_html_collection_get_length(rows, &section_len);
		dom_html_collection_unref(rows);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(t_foot);
			return exp;
		}

		if(window_len + section_len > (uint32_t)index ||
				window_len +section_len == len) {
			exp = dom_html_table_section_element_insert_row(t_foot,
					index-window_len,
					(struct dom_html_element **)&row);
			dom_node_unref(t_foot);
			if (exp == DOM_NO_ERR) {
				*row_out = (dom_html_element *)row;
			}
			return exp;
		}
		dom_node_unref(t_foot);
		exp = DOM_INDEX_SIZE_ERR;
	}

	return exp;
}

/**
 * Delete the table Head, if one exists
 *
 * \param element	The dom_html_table_element object
 * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
 */
dom_exception dom_html_table_element_delete_row(
		dom_html_table_element *element,
		int32_t index)
{
	dom_exception exp;
	dom_html_collection* rows;
	uint32_t len;
	dom_html_document *doc = (dom_html_document *) 
		((dom_node_internal *) element)->owner;

	exp = dom_html_table_element_get_rows(element, &rows);
	if(exp != DOM_NO_ERR) {
		return exp;
	}
	exp = dom_html_collection_get_length(rows, &len);
	dom_html_collection_unref(rows);
	if(exp != DOM_NO_ERR) {
		return exp;
	}

	if(index >= (int32_t)len || index < -1 || len ==0) {
		return DOM_INDEX_SIZE_ERR;
	} else {
		uint32_t window_len = 0, section_len;
		dom_html_table_section_element *t_head;
		dom_html_table_section_element *t_foot;
		dom_node_internal *n;

		if(index ==-1) {
			index = (int32_t)len-1;
		}

		exp = dom_html_table_element_get_t_head(element, &t_head);
		if(exp != DOM_NO_ERR)
			return exp;

		exp = dom_html_table_section_element_get_rows(t_head, &rows);
		if (exp != DOM_NO_ERR) {
			dom_node_unref(t_head);
			return DOM_NO_ERR;
		}

		exp = dom_html_collection_get_length(rows, &section_len);
		dom_html_collection_unref(rows);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(t_head);
			return exp;
		}

		if(window_len + section_len > (uint32_t)index) {
			exp = dom_html_table_section_element_delete_row(t_head,
					index-window_len);
			dom_node_unref(t_head);
			return exp;
		}
		dom_node_unref(t_head);

		window_len += section_len;
		n = (dom_node_internal *)element;

		for (n = n->first_child; n != NULL; n = n->next) {
			if((n->type == DOM_ELEMENT_NODE) &&
					dom_string_caseless_isequal(
					doc->elements[DOM_HTML_ELEMENT_TYPE_TBODY],
					n->name)) {
				exp = dom_html_table_section_element_get_rows(
						(dom_html_table_section_element *)n,
						&rows);
				if(exp != DOM_NO_ERR) {
					return exp;
				}

				dom_html_collection_get_length(rows, &section_len);
				dom_html_collection_unref(rows);
				if(exp != DOM_NO_ERR)
					return exp;

				if(window_len + section_len > (uint32_t)index) {
					return dom_html_table_section_element_delete_row(
							(dom_html_table_section_element *)n,
							index-window_len);
				}
				window_len += section_len;
			}
		}
		exp = dom_html_table_element_get_t_foot(element, &t_foot);
		if(exp != DOM_NO_ERR)
			return exp;

		exp = dom_html_table_section_element_get_rows(t_foot, &rows);
		if(exp != DOM_NO_ERR) {
			dom_node_unref(t_foot);
			return exp;
		}
		exp = dom_html_collection_get_length(rows, &section_len);
		dom_html_collection_unref(rows);
		if (exp != DOM_NO_ERR) {
			dom_node_unref(t_foot);
			return exp;
		}

		if(window_len + section_len > (uint32_t)index) {
			exp = dom_html_table_section_element_delete_row(t_foot,
					index-window_len);
			dom_node_unref(t_foot);
			return exp;
		}
		return DOM_INDEX_SIZE_ERR;
	}

}