aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/config/items/cfgitemi.cpp
blob: b8734031db4ad636635a2492d9f6c03ff43aa597 (plain) (blame)
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
#include <precomp.h>

#include "cfgitemi.h"
#include <api/config/items/attrcb.h>
#include <api/config/items/attribs.h>

#include <bfc/wasabi_std.h>
#include <bfc/memblock.h>

CfgItemI::CfgItemI(const wchar_t *name, GUID guid) 
:NamedW(name), myguid(guid), parent_guid(INVALID_GUID) { }

CfgItemI::~CfgItemI()
{
	deregisterAll();
}

const wchar_t *CfgItemI::cfgitem_getName()
{
	return NamedW::getName();
}

GUID CfgItemI::cfgitem_getGuid()
{
	return myguid;
}

void CfgItemI::cfgitem_setPrefix(const wchar_t *_prefix)
{
	prefix = _prefix;
}

const wchar_t *CfgItemI::cfgitem_getPrefix()
{
	return prefix.c_str();
}

int CfgItemI::cfgitem_getNumAttributes()
{
	return attributes.getNumItems();
}

const wchar_t *CfgItemI::cfgitem_enumAttribute(int n)
{
	Attribute *attr = attributes[n];
	if (attr) return attr->getAttributeName();
	return NULL;
}

const wchar_t *CfgItemI::cfgitem_getConfigXML()
{
	return cfgxml.c_str();
}

int CfgItemI::cfgitem_getNumChildren()
{
	return children.getNumItems();
}

CfgItem *CfgItemI::cfgitem_enumChild(int n)
{
	return children[n];
}

GUID CfgItemI::cfgitem_getParentGuid()
{
	return parent_guid;
}

void CfgItemI::cfgitem_onRegister()
{
	foreach(children)
	WASABI_API_CONFIG->config_registerCfgItem(children.getfor());
	endfor
}
void CfgItemI::cfgitem_onDeregister()
{
	foreach(children)
	WASABI_API_CONFIG->config_deregisterCfgItem(children.getfor());
	endfor
}

Attribute *CfgItemI::getAttributeByName(const wchar_t *name)
{
	Attribute *attr;
	foreach(attributes)
	attr = attributes.getfor();
	if (!WCSICMP(name, attr->getAttributeName())) return attr;
	endfor
	return NULL;
}

int CfgItemI::cfgitem_getAttributeType(const wchar_t *name)
{
	Attribute *attr = getAttributeByName(name);
	if (attr == NULL) return AttributeType::NONE;
	return attr->getAttributeType();
}

const wchar_t *CfgItemI::cfgitem_getAttributeConfigGroup(const wchar_t *name)
{
	Attribute *attr = getAttributeByName(name);
	if (attr == NULL) return NULL;
	return attr->getConfigGroup();
}

int CfgItemI::cfgitem_getDataLen(const wchar_t *name)
{
	Attribute *attr = getAttributeByName(name);
	if (attr == NULL) return -1;
	return attr->getDataLen();
}

int CfgItemI::cfgitem_getData(const wchar_t *name, wchar_t *data, int data_len)
{
	Attribute *attr = getAttributeByName(name);
	if (attr == NULL) return -1;
	return attr->getData(data, data_len);
}

int CfgItemI::cfgitem_setData(const wchar_t *name, const wchar_t *data)
{
	Attribute *attr = getAttributeByName(name);
	if (attr == NULL) return -1;
	int ret = attr->setDataNoCB(data);
	if (ret) cfgitem_onAttribSetValue(attr);
	return ret;
}

int CfgItemI::cfgitem_onAttribSetValue(Attribute *attr)
{
	// notify dependency watchers that an attribute changed
	dependent_sendEvent(CfgItem::depend_getClassGuid(), Event_ATTRIBUTE_CHANGED, 0, (void*)attr->getAttributeName());

	//for (int i = 0; ; i++)
	//{
	//	AttrCallback *acb;
	//	if (!callbacks.multiGetItem(attr, i, &acb)) 
	//		break;
	//	
	//	acb->onValueChange(attr);
	//}
	auto elements = callbacks.equal_range(attr);
	for (auto& it = elements.first; it != elements.second; ++it)
	{
		AttrCallback* acb = it->second;
		if (acb)
		{
			acb->onValueChange(attr);
		}
	}

	return 0;
}

void CfgItemI::cfgitem_setGUID(GUID guid)
{
	myguid = guid;
}

int CfgItemI::setName(const wchar_t *name)
{
	NamedW::setName(name);
	// notify dependency watchers that name changed?
	dependent_sendEvent(CfgItem::depend_getClassGuid(), Event_NAMECHANGE);
	return 1;
}

int CfgItemI::registerAttribute(Attribute *attr, AttrCallback *acb)
{
	if (attributes.haveItem(attr)) return 0;
	int ret = attributes.addItem(attr) != NULL;
	if (!ret) return ret;

	attr->setCfgItem(this);

	// set optional callback
	if (acb != NULL)
	{
		addCallback(attr, acb);
	}

	// notify dependency watchers of new attribute
	dependent_sendEvent(CfgItem::depend_getClassGuid(), Event_ATTRIBUTE_ADDED, 0, (void*)attr->getAttributeName());

	return ret;
}

int CfgItemI::deregisterAttribute(Attribute *attr)
{
	if (!attributes.haveItem(attr)) return 0;
	int ret = attributes.removeItem(attr);
	// notify dependency watchers of attribute going away
	dependent_sendEvent(CfgItem::depend_getClassGuid(), Event_ATTRIBUTE_REMOVED, 0, (void*)attr->getAttributeName());

	// remove callbacks
	//callbacks.multiDelAllForItem(attr, TRUE);
	auto elements = callbacks.equal_range(attr);
	for (auto& it = elements.first; it != elements.second; ++it)
	{
		AttrCallback* acb = it->second;
		if (acb)
		{
			delete acb;
		}
	}
	callbacks.erase(attr);


	attr->disconnect();

	return ret;
}

void CfgItemI::addCallback(Attribute *attr, AttrCallback *acb)
{
	ASSERT(attr != NULL);
	ASSERT(acb != NULL);
	//callbacks.multiAddItem(attr, acb);
	callbacks.insert({ attr, acb });
}

void CfgItemI::deregisterAll()
{
	foreach(children)
	children.getfor()->deregisterAll();
	endfor
	while (attributes.getNumItems()) deregisterAttribute(attributes[0]);
}

void CfgItemI::addChildItem(CfgItemI *child)
{
	ASSERT(child != NULL);
	if (!children.haveItem(child))
	{
		children.addItem(child);
		child->setParentGuid(myguid);
	}
}

void CfgItemI::setCfgXml(const wchar_t *groupname)
{
	cfgxml = groupname;
}

void CfgItemI::setParentGuid(GUID guid)
{
	parent_guid = guid;
}

void *CfgItemI::dependent_getInterface(const GUID *classguid)
{
	HANDLEGETINTERFACE(CfgItem);
	return NULL;
}

int CfgItemI::cfgitem_addAttribute(const wchar_t *name, const wchar_t *defval)
{
	if (getAttributeByName(name)) return 0;
	registerAttribute(newattribs.addItem(new _string(name, defval)));
	return 1;
}

int CfgItemI::cfgitem_delAttribute(const wchar_t *name)
{
	Attribute *attr = getAttributeByName(name);
	if (!newattribs.haveItem(attr)) return 0;
	deregisterAttribute(attr);
	delete attr;
	newattribs.removeItem(attr);
	return 1;
}