This file is indexed.

/usr/include/spatialite/gg_dxf.h is in libspatialite-dev 4.3.0a-5+b1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 gg_dxf.h -- Gaia common support for DXF files
  
 version 4.3, 2015 June 29

 Author: Sandro Furieri a.furieri@lqt.it

 ------------------------------------------------------------------------------
 
 Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
 The contents of this file are subject to the Mozilla Public License Version
 1.1 (the "License"); you may not use this file except in compliance with
 the License. You may obtain a copy of the License at
 http://www.mozilla.org/MPL/
 
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.

The Original Code is the SpatiaLite library

The Initial Developer of the Original Code is Alessandro Furieri
 
Portions created by the Initial Developer are Copyright (C) 2008-2015
the Initial Developer. All Rights Reserved.

Contributor(s):

Alternatively, the contents of this file may be used under the terms of
either the GNU General Public License Version 2 or later (the "GPL"), or
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
in which case the provisions of the GPL or the LGPL are applicable instead
of those above. If you wish to allow use of your version of this file only
under the terms of either the GPL or the LGPL, and not to allow others to
use your version of this file under the terms of the MPL, indicate your
decision by deleting the provisions above and replace them with the notice
and other provisions required by the GPL or the LGPL. If you do not delete
the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
 
*/


/**
 \file gg_dxf.h

 Geometry handling functions: DXF files
 */

#ifndef _GG_DXF_H
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#define _GG_DXF_H
#endif

#ifdef __cplusplus
extern "C"
{
#endif

/* constant values for DXF */

/** import distinct layers */
#define GAIA_DXF_IMPORT_BY_LAYER	1
/** import layers mixed altogether by type */
#define GAIA_DXF_IMPORT_MIXED		2
/** auto-selects 2D or 3D */
#define GAIA_DXF_AUTO_2D_3D		3
/** always force 2D */
#define GAIA_DXF_FORCE_2D		4
/** always force 3D */
#define GAIA_DXF_FORCE_3D		5
/** don't apply any special Ring handling */
#define GAIA_DXF_RING_NONE		6
/** apply special "linked rings" handling */
#define GAIA_DXF_RING_LINKED		7
/** apply special "unlinked rings" handling */
#define GAIA_DXF_RING_UNLINKED		8


/** DXF version [Writer] */
#define GAIA_DXF_V12	1000

/* data structs */


/**
 wrapper for DXF Extra Attribute object
 */
    typedef struct gaia_dxf_extra_attr
    {
/** pointer to Extra Attribute Key value */
	char *key;
/** pointer to Extra Attribute Value string */
	char *value;
/** pointer to next item [linked list] */
	struct gaia_dxf_extra_attr *next;
    } gaiaDxfExtraAttr;
/**
 Typedef for DXF Extra Attribute object

 \sa gaiaDxfExtraAttr
 */
    typedef gaiaDxfExtraAttr *gaiaDxfExtraAttrPtr;

/**
 wrapper for DXF Insert object
 */
    typedef struct gaia_dxf_insert
    {
/** pointer to Block ID string */
	char *block_id;
/** X coordinate */
	double x;
/** Y coordinate */
	double y;
/** Z coordinate */
	double z;
/** X scale factor */
	double scale_x;
/** Y scale factor */
	double scale_y;
/** Z scale factor */
	double scale_z;
/** rotation angle */
	double angle;
/** boolean flag: contains Text objects */
	int hasText;
/** boolean flag: contains Point objects */
	int hasPoint;
/** boolean flag: contains Polyline (Linestring) objects */
	int hasLine;
/** boolean flag: contains Polyline (Polygon) objects */
	int hasPolyg;
/** boolean flag: contains Hatch objects */
	int hasHatch;
/** boolean flag: contains 3d Text objects */
	int is3Dtext;
/** boolean flag: contains 3d Point objects */
	int is3Dpoint;
/** boolean flag: contains 3d Polyline (Linestring) objects */
	int is3Dline;
/** boolean flag: contains 3d Polyline (Polygon) objects */
	int is3Dpolyg;
/** pointer to first Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr first;
/** pointer to last Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr last;
/** pointer to next item [linked list] */
	struct gaia_dxf_insert *next;
    } gaiaDxfInsert;
/**
 Typedef for DXF Insert object

 \sa gaiaDxfText
 */
    typedef gaiaDxfInsert *gaiaDxfInsertPtr;

/**
 wrapper for DXF Text object
 */
    typedef struct gaia_dxf_text
    {
/** pointer to Label string */
	char *label;
/** X coordinate */
	double x;
/** Y coordinate */
	double y;
/** Z coordinate */
	double z;
/** label rotation angle */
	double angle;
/** pointer to first Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr first;
/** pointer to last Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr last;
/** pointer to next item [linked list] */
	struct gaia_dxf_text *next;
    } gaiaDxfText;
/**
 Typedef for DXF Text object

 \sa gaiaDxfText
 */
    typedef gaiaDxfText *gaiaDxfTextPtr;

/**
 wrapper for DXF Point object
 */
    typedef struct gaia_dxf_point
    {
/** X coordinate */
	double x;
/** Y coordinate */
	double y;
/** Z coordinate */
	double z;
/** pointer to first Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr first;
/** pointer to last Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr last;
/** pointer to next item [linked list] */
	struct gaia_dxf_point *next;
    } gaiaDxfPoint;
/**
 Typedef for DXF Point object

 \sa gaiaDxfPoint
 */
    typedef gaiaDxfPoint *gaiaDxfPointPtr;

/**
 wrapper for DXF Circle object
 */
    typedef struct gaia_dxf_circle
    {
/** Center X coordinate */
	double cx;
/** Center Y coordinate */
	double cy;
/** Center Z coordinate */
	double cz;
/** radius */
	double radius;
    } gaiaDxfCircle;
/**
 Typedef for DXF Circle object

 \sa gaiaDxfCircle
 */
    typedef gaiaDxfCircle *gaiaDxfCirclePtr;

/**
 wrapper for DXF Arc object
 */
    typedef struct gaia_dxf_arc
    {
/** Center X coordinate */
	double cx;
/** Center Y coordinate */
	double cy;
/** Center Z coordinate */
	double cz;
/** radius */
	double radius;
/** start angle */
	double start;
/** stop angle */
	double stop;
    } gaiaDxfArc;
/**
 Typedef for DXF Arc object

 \sa gaiaDxfArc
 */
    typedef gaiaDxfArc *gaiaDxfArcPtr;

/**
 wrapper for DXF Polygon interior hole object
 */
    typedef struct gaia_dxf_hole
    {
/** total count of points */
	int points;
/** array of X coordinates */
	double *x;
/** array of Y coordinates */
	double *y;
/** array of Z coordinates */
	double *z;
/** pointer to next item [linked list] */
	struct gaia_dxf_hole *next;
    } gaiaDxfHole;
/**
 Typedef for DXF Point object

 \sa gaiaDxfHole
 */
    typedef gaiaDxfHole *gaiaDxfHolePtr;

/**
 wrapper for DXF Polyline object 
 could be a Linestring or a Polygon depending on the is_closed flag
 */
    typedef struct gaia_dxf_polyline
    {
/** open (Linestring) or closed (Polygon exterior ring) */
	int is_closed;
/** total count of points */
	int points;
/** array of X coordinates */
	double *x;
/** array of Y coordinates */
	double *y;
/** array of Z coordinates */
	double *z;
/** pointer to first Polygon hole [linked list] */
	gaiaDxfHolePtr first_hole;
/** pointer to last Polygon hole [linked list] */
	gaiaDxfHolePtr last_hole;
/** pointer to first Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr first;
/** pointer to last Extra Attribute [linked list] */
	gaiaDxfExtraAttrPtr last;
/** pointer to next item [linked list] */
	struct gaia_dxf_polyline *next;
    } gaiaDxfPolyline;
/**
 Typedef for DXF Polyline object

 \sa gaiaDxfPolyline
 */
    typedef gaiaDxfPolyline *gaiaDxfPolylinePtr;
/**
 wrapper for DXF Pattern Segment object
 */
    typedef struct gaia_dxf_hatch_segm
    {
/** start X */
	double x0;
/** start Y */
	double y0;
/** end X */
	double x1;
/** end Y */
	double y1;
/** pointer to next item [linked list] */
	struct gaia_dxf_hatch_segm *next;
    } gaiaDxfHatchSegm;
/**
 Typedef for DXF Hatch Segment object

 \sa gaiaDxfHatch
 */
    typedef gaiaDxfHatchSegm *gaiaDxfHatchSegmPtr;

/**
 wrapper for DXF Boundary Path object
 */
    typedef struct gaia_dxf_boundary_path
    {
/** pointer to first segment */
	gaiaDxfHatchSegmPtr first;
/** pointer to last segment */
	gaiaDxfHatchSegmPtr last;
/** pointer to next item [linked list] */
	struct gaia_dxf_boundary_path *next;
    } gaiaDxfBoundaryPath;
/**
 Typedef for DXF Boundary Path object

 \sa gaiaDxfBoundaryPath
 */
    typedef gaiaDxfBoundaryPath *gaiaDxfBoundaryPathPtr;

/**
 wrapper for DXF Pattern Hatch object
 */
    typedef struct gaia_dxf_hatch
    {
/** hatch pattern spacing */
	double spacing;
/** hatch line angle */
	double angle;
/** hatch line base X */
	double base_x;
/** hatch line base Y */
	double base_y;
/** hatch line offset X */
	double offset_x;
/** hatch line offset Y */
	double offset_y;
/** pointer to first Boundary */
	gaiaDxfBoundaryPathPtr first;
/** pointer to last Boundary */
	gaiaDxfBoundaryPathPtr last;
/** pointer to Boundary geometry */
	gaiaGeomCollPtr boundary;
/** pointer to first Pattern segment */
	gaiaDxfHatchSegmPtr first_out;
/** pointer to last Pattern segment */
	gaiaDxfHatchSegmPtr last_out;
/** pointer to next item [linked list] */
	struct gaia_dxf_hatch *next;
    } gaiaDxfHatch;
/**
 Typedef for DXF Hatch object

 \sa gaiaDxfHatch
 */
    typedef gaiaDxfHatch *gaiaDxfHatchPtr;

/**
 wrapper for DXF Block object
 */
    typedef struct gaia_dxf_block
    {
/** Boolean flag: this block is referenced by some Insert */
	int hasInsert;
/** pointer to Layer Name string */
	char *layer_name;
/** pointer to Block ID string */
	char *block_id;
/** pointer to first DXF Text object [linked list] */
	gaiaDxfTextPtr first_text;
/** pointer to last DXF Text object [linked list] */
	gaiaDxfTextPtr last_text;
/** pointer to first DXF Point object [linked list] */
	gaiaDxfPointPtr first_point;
/** pointer to last DXF Point object [linked list] */
	gaiaDxfPointPtr last_point;
/** pointer to first DXF Polyline (Linestring) object [linked list] */
	gaiaDxfPolylinePtr first_line;
/** pointer to last DXF Polyline (Linestring) object [linked list] */
	gaiaDxfPolylinePtr last_line;
/** pointer to first DXF Polyline (Polygon) object [linked list] */
	gaiaDxfPolylinePtr first_polyg;
/** pointer to last DXF Polyline (Polygon) object [linked list] */
	gaiaDxfPolylinePtr last_polyg;
/** pointer to first DXF Hatch object [linked list] */
	gaiaDxfHatchPtr first_hatch;
/** pointer to last DXF Hatch object [linked list] */
	gaiaDxfHatchPtr last_hatch;
/** boolean flag: contains 3d Text objects */
	int is3Dtext;
/** boolean flag: contains 3d Point objects */
	int is3Dpoint;
/** boolean flag: contains 3d Polyline (Linestring) objects */
	int is3Dline;
/** boolean flag: contains 3d Polyline (Polygon) objects */
	int is3Dpolyg;
/** pointer to next item [linked list] */
	struct gaia_dxf_block *next;
    } gaiaDxfBlock;
/**
 Typedef for DXF Block object

 \sa gaiaDxfBlock
 */
    typedef gaiaDxfBlock *gaiaDxfBlockPtr;

/**
 wrapper for DXF Layer object
 */
    typedef struct gaia_dxf_layer
    {
/** pointer to Layer Name string */
	char *layer_name;
/** pointer to first DXF Text object [linked list] */
	gaiaDxfTextPtr first_text;
/** pointer to last DXF Text object [linked list] */
	gaiaDxfTextPtr last_text;
/** pointer to first DXF Point object [linked list] */
	gaiaDxfPointPtr first_point;
/** pointer to lasst DXF Point object [linked list] */
	gaiaDxfPointPtr last_point;
/** pointer to first DXF Polyline (Linestring) object [linked list] */
	gaiaDxfPolylinePtr first_line;
/** pointer to last DXF Polyline (Linestring) object [linked list] */
	gaiaDxfPolylinePtr last_line;
/** pointer to first DXF Polyline (Polygon) object [linked list] */
	gaiaDxfPolylinePtr first_polyg;
/** pointer to last DXF Polyline (Polygon) object [linked list] */
	gaiaDxfPolylinePtr last_polyg;
/** pointer to first DXF Hatch object [linked list] */
	gaiaDxfHatchPtr first_hatch;
/** pointer to last DXF Hatch object [linked list] */
	gaiaDxfHatchPtr last_hatch;
/** pointer to first DXF Insert Text object [linked list] */
	gaiaDxfInsertPtr first_ins_text;
/** pointer to last DXF Insert Text object [linked list] */
	gaiaDxfInsertPtr last_ins_text;
/** pointer to first DXF Insert Point object [linked list] */
	gaiaDxfInsertPtr first_ins_point;
/** pointer to last DXF Insert Point object [linked list] */
	gaiaDxfInsertPtr last_ins_point;
/** pointer to first DXF Insert Polyline (Linestring) object [linked list] */
	gaiaDxfInsertPtr first_ins_line;
/** pointer to last DXF Insert Polyline (Linestring) object [linked list] */
	gaiaDxfInsertPtr last_ins_line;
/** pointer to first DXF Insert Polyline (Polygon) object [linked list] */
	gaiaDxfInsertPtr first_ins_polyg;
/** pointer to last DXF Insert Polyline (Polygon) object [linked list] */
	gaiaDxfInsertPtr last_ins_polyg;
/** pointer to first DXF Insert Hatch object [linked list] */
	gaiaDxfInsertPtr first_ins_hatch;
/** pointer to last DXF Insert Hatch object [linked list] */
	gaiaDxfInsertPtr last_ins_hatch;
/** boolean flag: contains 3d Text objects */
	int is3Dtext;
/** boolean flag: contains 3d Point objects */
	int is3Dpoint;
/** boolean flag: contains 3d Polyline (Linestring) objects */
	int is3Dline;
/** boolean flag: contains 3d Polyline (Polygon) objects */
	int is3Dpolyg;
/** boolean flag: contains 3d Insert Text objects */
	int is3DinsText;
/** boolean flag: contains 3d Insert Point objects */
	int is3DinsPoint;
/** boolean flag: contains 3d Insert Polyline (Linestring) objects */
	int is3DinsLine;
/** boolean flag: contains 3d Insert Polyline (Polygon) objects */
	int is3DinsPolyg;
/** boolean flag: contains Text Extra Attributes */
	int hasExtraText;
/** boolean flag: contains Point Extra Attributes */
	int hasExtraPoint;
/** boolean flag: contains Polyline (Linestring) Extra Attributes */
	int hasExtraLine;
/** boolean flag: contains Polyline (Polygon) Extra Attributes */
	int hasExtraPolyg;
/** boolean flag: contains Insert Text Extra Attributes */
	int hasExtraInsText;
/** boolean flag: contains Insert Text Extra Attributes */
	int hasExtraInsPoint;
/** boolean flag: contains Insert Polyline (Linestring) Extra Attributes */
	int hasExtraInsLine;
/** boolean flag: contains Insert Polyline (Polygon) Extra Attributes */
	int hasExtraInsPolyg;
/** pointer to next item [linked list] */
	struct gaia_dxf_layer *next;
    } gaiaDxfLayer;
/**
 Typedef for DXF Layer object

 \sa gaiaDxfLayer
 */
    typedef gaiaDxfLayer *gaiaDxfLayerPtr;

/**
 wrapper for DXF Parser object
 */
    typedef struct gaia_dxf_parser
    {
/** OUT: origin/input filename */
	char *filename;
/** OUT: pointer to first DXF Layer object [linked list] */
	gaiaDxfLayerPtr first_layer;
/** OUT: pointer to last DXF Layer object [linked list] */
	gaiaDxfLayerPtr last_layer;
/** OUT: pointer to first DXF Block object [linked list] */
	gaiaDxfBlockPtr first_block;
/** OUT: pointer to last DXF Block object [linked list] */
	gaiaDxfBlockPtr last_block;
/** IN: parser option - dimension handlig */
	int force_dims;
/** IN: parser option - the SRID */
	int srid;
/** IN: parser option - pointer the single Layer Name string */
	const char *selected_layer;
/** IN: parser option - pointer to prefix string for DB tables */
	const char *prefix;
/** IN: parser option - linked rings special handling */
	int linked_rings;
/** IN: parser option - unlinked rings special handling */
	int unlinked_rings;
/** internal parser variable */
	int line_no;
/** internal parser variable */
	int op_code_line;
/** internal parser variable */
	int op_code;
/** internal parser variable */
	int section;
/** internal parser variable */
	int tables;
/** internal parser variable */
	int blocks;
/** internal parser variable */
	int entities;
/** internal parser variable */
	int is_layer;
/** internal parser variable */
	int is_block;
/** internal parser variable */
	int is_text;
/** internal parser variable */
	int is_point;
/** internal parser variable */
	int is_polyline;
/** internal parser variable */
	int is_lwpolyline;
/** internal parser variable */
	int is_line;
/** internal parser variable */
	int is_circle;
/** internal parser variable */
	int is_arc;
/** internal parser variable */
	int is_vertex;
/** internal parser variable */
	int is_hatch;
/** internal parser variable */
	int is_hatch_boundary;
/** internal parser variable */
	int is_insert;
/** internal parser variable */
	int eof;
/** internal parser variable */
	int error;
/** internal parser variable */
	char *curr_layer_name;
/** internal parser variable */
	gaiaDxfText curr_text;
/** internal parser variable */
	gaiaDxfInsert curr_insert;
/** internal parser variable */
	gaiaDxfBlock curr_block;
/** internal parser variable */
	gaiaDxfPoint curr_point;
/** internal parser variable */
	gaiaDxfPoint curr_end_point;
/** internal parser variable */
	gaiaDxfCircle curr_circle;
/** internal parser variable */
	gaiaDxfArc curr_arc;
/** internal parser variable */
	int is_closed_polyline;
/** internal parser variable */
	gaiaDxfPointPtr first_pt;
/** internal parser variable */
	gaiaDxfPointPtr last_pt;
/** internal parser variable */
	char *extra_key;
/** internal parser variable */
	char *extra_value;
/** internal parser variable */
	gaiaDxfExtraAttrPtr first_ext;
/** internal parser variable */
	gaiaDxfExtraAttrPtr last_ext;
/** internal parser variable */
	gaiaDxfHatchPtr curr_hatch;
/** internal parser variable */
	int undeclared_layers;
    } gaiaDxfParser;
/**
 Typedef for DXF Layer object

 \sa gaiaDxfParser
 */
    typedef gaiaDxfParser *gaiaDxfParserPtr;

/**
 wrapper for DXF Write object
 */
    typedef struct gaia_dxf_write
    {
/** IN: output DXF file handle */
	FILE *out;
/** IN: coord's precision (number of decimal digits) */
	int precision;
/** IN: DXF version number */
	int version;
/** OUT: count of exported geometries */
	int count;
/** OUT: error flag */
	int error;
    } gaiaDxfWriter;
/**
 Typedef for DXF Writer object
 */
    typedef gaiaDxfWriter *gaiaDxfWriterPtr;


/* function prototypes */


/**
 Creates a DXF Parser object

 \param srid the SRID value to be used for all Geometries
 \param force_dims should be one of GAIA_DXF_AUTO_2D_3D, GAIA_DXF_FORCE_2D 
 or GAIA_DXF_FORCE_3D
 \param prefix an optional prefix to be used for DB target tables 
 (could be NULL)
 \param selected_layers if set, only the DXF Layer of corresponding name will 
 be imported (could be NULL)
 \param special_rings rings handling: should be one of GAIA_DXF_RING_NONE, 
 GAIA_DXF_RING_LINKED of GAIA_DXF_RING_UNLINKED

 \return the pointer to a DXF Parser object

 \sa gaiaDestroyDxfParser, gaiaParseDxfFile, gaiaLoadFromDxfParser

 \note the DXF Parser object corresponds to dynamically allocated memory:
 so you are responsible to destroy this object before or later by invoking
 gaiaDestroyDxfParser().
 */
    GAIAGEO_DECLARE gaiaDxfParserPtr gaiaCreateDxfParser (int srid,
							  int force_dims,
							  const char *prefix,
							  const char
							  *selected_layer,
							  int special_rings);

/**
 Destroying a DXF Parser object

 \param parser pointer to DXF Parser object

 \sa gaiaCreateDxfParser

 \note the pointer to the DXF Parser object to be finalized is expected
 to be the one returned by a previous call to gaiaCreateDxfParser.
 */
    GAIAGEO_DECLARE void gaiaDestroyDxfParser (gaiaDxfParserPtr parser);

/**
 Parsing a DXF file

 \param parser pointer to DXF Parser object
 \param dxf_path pathname of the DXF external file to be parsed

 \return 0 on failure, any other value on success

 \sa gaiaParseDxfFile_r,
 gaiaCreateDxfParser, gaiaDestroyDxfParser, gaiaLoadFromDxfParser

 \note the pointer to the DXF Parser object is expected to be the one 
 returned by a previous call to gaiaCreateDxfParser.
 A DXF Parser object can be used only a single time to parse a DXF file.\n
 not reentrant and thread unsafe.
 */
    GAIAGEO_DECLARE int gaiaParseDxfFile (gaiaDxfParserPtr parser,
					  const char *dxf_path);

/**
 Parsing a DXF file

 \param p_cache a memory pointer returned by spatialite_alloc_connection()
 \param parser pointer to DXF Parser object
 \param dxf_path pathname of the DXF external file to be parsed

 \return 0 on failure, any other value on success

 \sa gaiaParseDxfFile,
 gaiaCreateDxfParser, gaiaDestroyDxfParser, gaiaLoadFromDxfParser

 \note the pointer to the DXF Parser object is expected to be the one 
 returned by a previous call to gaiaCreateDxfParser.
 A DXF Parser object can be used only a single time to parse a DXF file.\n
 reentrant and thread-safe.
 */
    GAIAGEO_DECLARE int gaiaParseDxfFile_r (const void *p_cache,
					    gaiaDxfParserPtr parser,
					    const char *dxf_path);

/**
 Populating a DB so to permanently store all Geometries from a DXF Parser

 \param db_handle handle to a valid DB connection
 \param parser pointer to DXF Parser object
 \param mode should be one of GAIA_DXF_IMPORT_BY_LAYER or GAIA_DXF_IMPORT_MIXED
 \param append boolean flag: if set and some required DB table already exists 
  will attempt to append further rows into the existing table.
  otherwise an error will be returned.

 \return 0 on failure, any other value on success

 \sa gaiaCreateDxfParser, gaiaDestroyDxfParser, gaiaParseDxfFile

 \note the pointer to the DXF Parser object is expected to be the one 
 returned by a previous call to gaiaCreateDxfParser and previously used
 for a succesfull call to gaiaParseDxfFile
 */
    GAIAGEO_DECLARE int gaiaLoadFromDxfParser (sqlite3 * db_handle,
					       gaiaDxfParserPtr parser,
					       int mode, int append);

/**
 Initializing a DXF Writer Object

 \param writer pointer to the gaiaDxfWriter object to be initialized
 \param out file handle to DXF output file
 \param precision number of decimal digits for any coordinate
 \param version currently always expected to be GAIA_DXF_V12

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteHeader, gaiaExportDxf
 */
    GAIAGEO_DECLARE int gaiaDxfWriterInit (gaiaDxfWriterPtr dxf,
					   FILE * out, int precision,
					   int version);

/**
 Writing the DXF Header

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param minx the minimum X coordinate contained within the DXF
 \param minx the minimum Y coordinate contained within the DXF
 \param minx the minimum Z coordinate contained within the DXF
 \param minx the maximum X coordinate contained within the DXF
 \param minx the maximum Y coordinate contained within the DXF
 \param minx the maximum Z coordinate contained within the DXF

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriterInit, gaiaDxfWriteFooter, gaiaDxfWriteTables, gaiaDxfWriteEntities
 */
    GAIAGEO_DECLARE int
	gaiaDxfWriteHeader (gaiaDxfWriterPtr dxf, double minx, double miny,
			    double minz, double maxx, double maxy, double maxz);

/**
 Writing a DXF Entities Section Header 

 \param dxf pointer to a properly initialized gaiaDxfWriter object

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteHeader
 */
    GAIAGEO_DECLARE int gaiaDxfWriteFooter (gaiaDxfWriterPtr dxf);

/**
 Writing the DXF Tables Section Header 

 \param dxf pointer to a properly initialized gaiaDxfWriter object

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteHeader, gaiaDxfWriteEndSection
 */
    GAIAGEO_DECLARE int gaiaDxfWriteTables (gaiaDxfWriterPtr dxf);

/**
 Writing a DXF Table/Layer definition 

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param layer_name name of the layer

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteTables, gaiaDxfWriteEndSection
 */
    GAIAGEO_DECLARE int gaiaDxfWriteLayer (gaiaDxfWriterPtr dxf,
					   const char *layer_name);

/**
 Writing a DXF Entities Section Header 

 \param dxf pointer to a properly initialized gaiaDxfWriter object

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteHeader, gaiaDxfWriteEndSection, gaiaDxfWritePoint,
 gaiaDxfWriteText, gaiaDxfWriteLine, gaiaDxfWriteRing, gaiaDxfWriteGeometry 
 */
    GAIAGEO_DECLARE int gaiaDxfWriteEntities (gaiaDxfWriterPtr dxf);

/**
 Writing a DXF Entities Section Header 

 \param dxf pointer to a properly initialized gaiaDxfWriter object

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteTables, gaiaDxfWriteEntities
 */
    GAIAGEO_DECLARE int gaiaDxfWriteEndSection (gaiaDxfWriterPtr dxf);

/**
 Writing a DXF Point Entity 

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param layer_name name of the corresponding layer
 \param x X coordinate value
 \param y Y coordinate value
 \param z Z coordinate value

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteEntities, gaiaDxfWriteEndSection, gaiaDxfWriteText, 
 gaiaDxfWriteLine, gaiaDxfWriteRing, gaiaDxfWriteGeometry 
 */
    GAIAGEO_DECLARE int gaiaDxfWritePoint (gaiaDxfWriterPtr dxf,
					   const char *layer_name, double x,
					   double y, double z);

/**
 Writing a DXF Text Entity 

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param layer_name name of the corresponding layer
 \param x X coordinate value
 \param y Y coordinate value
 \param z Z coordinate value
 \param label text string containing the label value
 \param text_height height of the text in map units
 \param angle text rotation angle

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteEntities, gaiaDxfWriteEndSection, gaiaDxfWritePoint, 
 gaiaDxfWriteLine, gaiaDxfWriteRing, gaiaDxfWriteGeometry 
 */
    GAIAGEO_DECLARE int gaiaDxfWriteText (gaiaDxfWriterPtr dxf,
					  const char *layer_name, double x,
					  double y, double z, const char *label,
					  double text_height, double angle);

/**
 Writing a DXF Polyline (opened) Entity 

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param layer_name name of the corresponding layer
 \param line pointer to the internal Linestring to be exported into the DXF

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteEntities, gaiaDxfWriteEndSection, gaiaDxfWritePoint, 
 gaiaDxfWriteText, gaiaDxfWriteRing, gaiaDxfWriteGeometry 
 */
    GAIAGEO_DECLARE int
	gaiaDxfWriteLine (gaiaDxfWriterPtr dxf, const char *layer_name,
			  gaiaLinestringPtr line);

/**
 Writing a DXF Polyline (closed) Entity 

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param layer_name name of the corresponding layer
 \param line pointer to the internal Ring to be exported into the DXF

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteEntities, gaiaDxfWriteEndSection, gaiaDxfWritePoint, 
 gaiaDxfWriteText, gaiaDxfWriteLine, gaiaDxfWriteGeometry
 */
    GAIAGEO_DECLARE int
	gaiaDxfWriteRing (gaiaDxfWriterPtr dxf, const char *layer_name,
			  gaiaRingPtr ring);

/**
 Writing a DXF generic Entity

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param layer_name name of the corresponding layer
 \param line pointer to the internal Ring to be exported into the DXF
 \param label text string containing the label value (could be NULL)
 \param text_height only for Text Labels: ingnored in any other case.
 \param text_rotation only for Text Labels: ingnored in any other case.

 \return 0 on failure, any other value on success

 \sa gaiaDxfWriteEntities, gaiaDxfWriteEndSection, gaiaDxfWritePoint, 
 gaiaDxfWriteText, gaiaDxfWriteLine, gaiaDxfWriteRing
 */
    GAIAGEO_DECLARE int
	gaiaDxfWriteGeometry (gaiaDxfWriterPtr dxf, const char *layer_name,
			      const char *label, double text_height,
			      double text_rotation, gaiaGeomCollPtr geometry);

/**
 Exporting a complex DXF file 

 \param dxf pointer to a properly initialized gaiaDxfWriter object
 \param db_hanlde handle to the current DB connection
 \param sql a text string defining the SQL query to be used for
 extracting all geometries/entities to be exported into the output DXF
 \param layer_col_name name of the SQL resultset column containing the Layer name
 \param geom_col_name name of the SQL resultset column containing Geometries
 \param label_col_name name of the SQL resultset column containing Label values
 (could be NULL)
 \param text_height_col_name name of the SQL resultset column containing Text Height values
 (could be NULL)
 \param text_rotation_col_name name of the SQL resultset column containing Text Rotation values
 (could be NULL)
 \param geom_filter an optional arbitrary Geometry to be used as a Spatial Filter
 (could be NULL) 

 \return 0 on failure; the total count of exported  entities on success

 \sa gaiaDxfWriterInit
 */
    GAIAGEO_DECLARE int
	gaiaExportDxf (gaiaDxfWriterPtr dxf, sqlite3 * db_handle,
		       const char *sql, const char *layer_col_name,
		       const char *geom_col_name, const char *label_col_name,
		       const char *text_height_col_name,
		       const char *text_rotation_col_name,
		       gaiaGeomCollPtr geom_filter);

#ifdef __cplusplus
}
#endif

#endif				/* _GG_DXF_H */