-
Notifications
You must be signed in to change notification settings - Fork 0
/
DSAtomComponent.cpp
176 lines (143 loc) · 4.04 KB
/
DSAtomComponent.cpp
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
/****************************************************************************
* Modul: $RCSfile: DSAtomComponent.cpp,v $
*
* $Author: md $
* $Date: 1998/01/13 12:48:22 $
* $Revision: 1.2 $
* Aufgabe: Basisklasse fuer alle SDL-Strukturen in denen SDL-Bloecke
* definiert werden koennen.
*
* Funktionen:
****************************************************************************/
#ifdef USE_PRAGMA
#pragma interface
#endif
/****************************************************************************
* Konstanten
****************************************************************************/
/****************************************************************************
* Include-Anweisungen
****************************************************************************/
#include <stdio.h>
#include "DSAtomComponent.h"
#include "DSAtom.h"
#include "DSString.h"
#ifdef DEBUG
#include <dmalloc.h>
#endif
/****************************************************************************
* Externe Atomn
****************************************************************************/
/****************************************************************************
* Globale Atomn
****************************************************************************/
/****************************************************************************
* Konstruktoren
****************************************************************************/
DSAtomComponent::DSAtomComponent(DSObject *father) :
parent(father)
{
atom_definition_list = NULL;
}
/****************************************************************************
* Destruktor
****************************************************************************/
DSAtomComponent::~DSAtomComponent(void)
{
if (atom_definition_list) delete atom_definition_list;
}
DSAtomKeyList* DSAtomComponent::GetAtomList(void) const
{
return atom_definition_list;
}
DSAtom *DSAtomComponent::GetAtom(DSString* n) const
{
if (n == NULL)
{
return NULL;
}
if (atom_definition_list == NULL)
{
return NULL;
}
if (atom_definition_list->GotoKeyElement(n) != DS_OK)
{
return NULL;
}
return atom_definition_list->GetCurrentData();
}
DSAtom *DSAtomComponent::GetAtom(DSString& n) const
{
return GetAtom(&n);
}
DSAtom *DSAtomComponent::GetAtom(const char *n) const
{
DSAtom *atom;
DSString *str;
assert(n);
str = new DSString(n);
assert(str);
atom = GetAtom(str);
delete str;
return atom;
}
DSAtom *DSAtomComponent::GetFirstAtom(void) const
{
if (atom_definition_list == NULL)
{
return NULL;
}
if (atom_definition_list->MoveFirst() != DS_OK)
{
return NULL;
}
return atom_definition_list->GetCurrentData();
}
DSAtom *DSAtomComponent::GetNextAtom(void) const
{
if (atom_definition_list == NULL)
{
return NULL;
}
if (atom_definition_list->MoveNext() != DS_OK)
{
return NULL;
}
return atom_definition_list->GetCurrentData();
}
DSResult DSAtomComponent::SetAtomList(DSAtomKeyList *list)
{
if (atom_definition_list == list) return DS_OK;
if (atom_definition_list) delete atom_definition_list;
atom_definition_list = list;
return DS_OK;
}
DSResult DSAtomComponent::InsertAtom(DSAtom* atom)
{
assert(atom != NULL);
assert(atom->GetName() != NULL);
if (atom_definition_list == NULL)
{
atom_definition_list = new DSAtomKeyList;
assert(atom_definition_list != NULL);
}
if (atom->GetParent() == NULL) // Vater noch nicht gesetzt ?
{
atom->SetParent(this->parent);
}
return atom_definition_list->Append(atom, new DSString(*atom->GetName()));
}
/****************************************************************************
* GetParent(): Liefert das Vaterobjekt des Objekts
* Ergebnis: Zeiger auf DSObject
* Seiteneffekte: keine
****************************************************************************/
DSObject* DSAtomComponent::GetComponentParent(void) const
{
return parent;
}
DSResult DSAtomComponent::SetComponentParent(const DSObject *par)
{
parent = (DSObject *)par;
return DS_OK;
}