Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
KML_Container Class Reference

#include <KML_Container.h>

Inheritance diagram for KML_Container:
KML_Feature KML_Object Object KML_Document KML_Folder

Public Member Functions

 KML_Container ()
 
 ~KML_Container ()
 
void Echo ()
 
void DeepEcho ()
 
void DeepEcho (const char *indent)
 
void Write (FILE *fid, const char *indent)
 
void Read (FILE *fid, char *kstr)
 
void WriteExp (FILE *fid, const char *nstr, int sgn, double cm, double sp)
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
- Public Member Functions inherited from KML_Feature
 KML_Feature ()
 
 ~KML_Feature ()
 
void Echo ()
 
void DeepEcho ()
 
void DeepEcho (const char *indent)
 
void Write (FILE *fid, const char *indent)
 
void Read (FILE *fid, char *kstr)
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
- Public Member Functions inherited from KML_Object
 KML_Object ()
 
 ~KML_Object ()
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
virtual void AddAttrib (const char *name, const char *value)
 
virtual void WriteAttrib (FILE *fid, const char *indent)
 
virtual void AddCommnt (int ncom, char **pcom)
 
virtual void AddCommnt (char *value)
 
virtual void WriteCommnt (FILE *fid, const char *indent)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

DataSetfeature
 
- Data Fields inherited from KML_Feature
char name [KML_FEATURE_NAME_LENGTH+1]
 
bool visibility
 
bool open
 
char snippet [KML_FEATURE_SNIPPET_LENGTH+1]
 
char descript [KML_FEATURE_DESCRIPT_LENGTH+1]
 
char styleurl [KML_FEATURE_STYLEURL_LENGTH+1]
 
DataSetstyle
 
- Data Fields inherited from KML_Object
DataSetattrib
 
DataSetcommnt
 
DataSetkmlobj
 

Detailed Description

Definition at line 15 of file KML_Container.h.

Constructor & Destructor Documentation

◆ KML_Container()

KML_Container::KML_Container ( )

Definition at line 23 of file KML_Container.cpp.

23  {/*{{{*/
24 
25  feature =new DataSet;
26 
27 }

◆ ~KML_Container()

KML_Container::~KML_Container ( )

Definition at line 29 of file KML_Container.cpp.

29  {/*{{{*/
30 
31  if (feature) {
32  delete feature;
33  feature =NULL;
34  }
35 
36 }

Member Function Documentation

◆ Echo()

void KML_Container::Echo ( void  )
virtual

Reimplemented from KML_Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 40 of file KML_Container.cpp.

40  {/*{{{*/
41 
42  bool flag=true;
43 
45 
46  if(flag) _printf0_(" feature: (size=" << feature->Size() << ")\n");
47 
48  return;
49 }

◆ DeepEcho() [1/2]

void KML_Container::DeepEcho ( void  )
virtual

Reimplemented from KML_Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 51 of file KML_Container.cpp.

51  {/*{{{*/
52 
53  char indent[81]="";
54 
56 
57  return;
58 }

◆ DeepEcho() [2/2]

void KML_Container::DeepEcho ( const char *  indent)
virtual

Reimplemented from KML_Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 60 of file KML_Container.cpp.

60  {/*{{{*/
61 
62  int i;
63  char indent2[81];
64  bool flag=true;
65 
66  KML_Feature::DeepEcho(indent);
67 
68 /* loop over the features for the container */
69 
70  memcpy(indent2,indent,(strlen(indent)+1)*sizeof(char));
71  strcat(indent2," ");
72 
73  if (feature->Size())
74  for (i=0; i<feature->Size(); i++) {
75  if(flag) _printf0_(indent << " feature: -------- begin [" << i << "] --------\n");
76  ((KML_Feature *)feature->GetObjectByOffset(i))->DeepEcho(indent2);
77  if(flag) _printf0_(indent << " feature: -------- end [" << i << "] --------\n");
78  }
79  else
80  if(flag) _printf0_(indent << " feature: [empty]\n");
81 
82  return;
83 }

◆ Write()

void KML_Container::Write ( FILE *  fid,
const char *  indent 
)
virtual

Implements KML_Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 85 of file KML_Container.cpp.

85  {/*{{{*/
86 
87  int i;
88  char indent2[81];
89 
90  KML_Feature::Write(filout,indent);
91 
92 /* loop over the features for the container */
93 
94  memcpy(indent2,indent,(strlen(indent)+1)*sizeof(char));
95 
96  strcat(indent2," ");
97 
98  for (i=0; i<feature->Size(); i++)
99  ((KML_Feature *)feature->GetObjectByOffset(i))->Write(filout,indent2);
100 
101  return;
102 }

◆ Read()

void KML_Container::Read ( FILE *  fid,
char *  kstr 
)
virtual

Implements KML_Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 104 of file KML_Container.cpp.

104  {/*{{{*/
105 
106  KML_Object* kobj;
107 
108 /* process field within opening and closing tags */
109 
110  if (!strncmp(kstr,"</Container",11)) {
111  xDelete<char>(kstr);
112  return;
113  }
114  else if (!strncmp(kstr,"</",2))
115  {_error_("KML_Container::Read -- Unexpected closing tag " << kstr );}
116  else if (strncmp(kstr,"<",1))
117  {_error_("KML_Container::Read -- Unexpected field \"" << kstr << "\"");}
118 
119  else if (!strncmp(kstr,"<Placemark",10)) {
120  kobj=(KML_Object*)new KML_Placemark();
121  kobj->Read(fid,kstr);
122  feature ->AddObject((Object*)kobj);
123  }
124 
125  else if (!strncmp(kstr,"<Folder", 7)) {
126  kobj=(KML_Object*)new KML_Folder();
127  kobj->Read(fid,kstr);
128  feature ->AddObject((Object*)kobj);
129  }
130 
131  else if (!strncmp(kstr,"<Document", 9)) {
132  kobj=(KML_Object*)new KML_Document();
133  kobj->Read(fid,kstr);
134  feature ->AddObject((Object*)kobj);
135  }
136 
137  else if (!strncmp(kstr,"<GroundOverlay",14)) {
138  kobj=(KML_Object*)new KML_GroundOverlay();
139  kobj->Read(fid,kstr);
140  feature ->AddObject((Object*)kobj);
141  }
142 
143  else if (!strncmp(kstr,"<",1))
144  KML_Feature::Read(fid,kstr);
145 
146  return;
147 }

◆ WriteExp()

void KML_Container::WriteExp ( FILE *  fid,
const char *  nstr,
int  sgn,
double  cm,
double  sp 
)
virtual

Reimplemented from KML_Object.

Definition at line 149 of file KML_Container.cpp.

149  {/*{{{*/
150 
151  int i;
152 
153 /* loop over the features for the container */
154 
155  for (i=0; i<feature->Size(); i++)
156  ((KML_Object *)feature->GetObjectByOffset(i))->WriteExp(fid,nstr,sgn,cm,sp);
157 
158  return;
159 }

◆ Id()

int KML_Container::Id ( void  )
inlinevirtual

Implements Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 32 of file KML_Container.h.

32 {_error_("Not implemented yet.");};

◆ ObjectEnum()

int KML_Container::ObjectEnum ( void  )
inlinevirtual

Implements Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 33 of file KML_Container.h.

33 {_error_("Not implemented yet.");};

◆ copy()

Object* KML_Container::copy ( void  )
inlinevirtual

Implements Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 34 of file KML_Container.h.

34 {_error_("Not implemented yet.");};

◆ Marshall()

void KML_Container::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Implements Object.

Reimplemented in KML_Folder, and KML_Document.

Definition at line 35 of file KML_Container.h.

35 { _error_("not implemented yet!");};

Field Documentation

◆ feature

DataSet* KML_Container::feature

Definition at line 19 of file KML_Container.h.


The documentation for this class was generated from the following files:
DataSet::Size
int Size()
Definition: DataSet.cpp:399
KML_Document
Definition: KML_Document.h:15
KML_Object
Definition: KML_Object.h:13
_printf0_
#define _printf0_(StreamArgs)
Definition: Print.h:29
DataSet::AddObject
int AddObject(Object *object)
Definition: DataSet.cpp:252
KML_Container::feature
DataSet * feature
Definition: KML_Container.h:19
KML_GroundOverlay
Definition: KML_GroundOverlay.h:17
KML_Container::DeepEcho
void DeepEcho()
Definition: KML_Container.cpp:51
KML_Folder
Definition: KML_Folder.h:15
KML_Feature
Definition: KML_Feature.h:21
KML_Object::Read
virtual void Read(FILE *fid, char *kstr)=0
Definition: KML_Object.cpp:143
Object
Definition: Object.h:13
KML_Placemark
Definition: KML_Placemark.h:16
KML_Feature::DeepEcho
void DeepEcho()
Definition: KML_Feature.cpp:70
KML_Feature::Write
void Write(FILE *fid, const char *indent)
Definition: KML_Feature.cpp:111
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
DataSet::GetObjectByOffset
Object * GetObjectByOffset(int offset)
Definition: DataSet.cpp:334
KML_Feature::Echo
void Echo()
Definition: KML_Feature.cpp:53
DataSet
Declaration of DataSet class.
Definition: DataSet.h:14
KML_Feature::Read
void Read(FILE *fid, char *kstr)
Definition: KML_Feature.cpp:141