summaryrefslogtreecommitdiff
path: root/dnn/Event.cc
blob: b231e4e65fb239b1d8856c6052227e6fbfcf89ea (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
/*
 *	DNN - Data News Network
 *
 *	by Stephane Chatty
 *
 *	Copyright 1993-1997
 *	Centre d'Etudes de la Navigation Aerienne (CENA)
 *
 *	Events.
 *
 *	$Id$
 *	$CurLog$
 */

#include "Event.h"
#include <memory.h>

IvlEventFeatureList :: IvlEventFeatureList (const IvlEventFeatureList& base, int nbf, IvlEventFeature* f)
: IvlListOf <IvlEventFeature> (base)
{
	Load (nbf, f);
}

IvlEventFeatureList :: IvlEventFeatureList (int nbf, IvlEventFeature* f)
: IvlListOf <IvlEventFeature> ()
{
	Load (nbf, f);
}

void
IvlEventFeatureList :: Load (int nbf, IvlEventFeature* f)
{
	while (nbf-- > 0)
		Append (f++);
}

IvlEventFeatureList :: ~IvlEventFeatureList ()
{
}

/*?class IvlEventType
A \typ{IvlEventType} contains the description of a -- dynamic -- class of events.
It holds a name and an array of offsets, each describing where to find the corresponding
feature in an event of that class.
?*/

IvlListOf <IvlEventType>* IvlEventType::AllTypes = 0;

/*?hidden?*/
void
IvlEventType :: ClassInit ()
{
	AllTypes = new IvlListOf <IvlEventType>;
}

/*?
Build an event type named \var{name} from an array of features. This is mostly
useful for statically defined event classes. \var{f} is the array of features, and
\var{nbf} is the number of features in that array.
?*/
IvlEventType :: IvlEventType (const char* name, int nbf, IvlEventFeature f [])
: Name (name),
#if 0
  Features (),
#endif
  NbFeatures (nbf),
  FeaturesOffsets (new int [nbf])
{
	if (!AllTypes)
		ClassInit ();
	AllTypes->Append (this);
	int offset = 0;
	for (int i = 0; i < nbf; ++i) {
		offset += f[i].Size;
		FeaturesOffsets [i] = offset;
	}
}

/*?
Build an event type from a list of features.
?*/
IvlEventType :: IvlEventType (const char* name, const IvlEventFeatureList& fl)
: Name (name),
#if 0
  Features (),
#endif
  NbFeatures (fl.Length ()),
  FeaturesOffsets (new int [NbFeatures])
{
	if (!AllTypes)
		ClassInit ();
	AllTypes->Append (this);
	int offset = 0;
	int i = 0;
	IvlListIterOf <IvlEventFeature> f = fl;
	while (++f) {
		offset += (*f)->Size;
		FeaturesOffsets [i] = offset;
		++i;
	}
}

/*?nodoc?*/
IvlEventType :: ~IvlEventType ()
{
	AllTypes->Remove (this);
	delete [] FeaturesOffsets;
}

IvlEvent :: IvlEvent ()
{
}

/* useless, for compatibility only */
IvlEvent :: IvlEvent (const IvlEventType*)
{
}

IvlEvent :: ~IvlEvent ()
{
}

/*?
Build an event of type \var{t}.
?*/
IvlBasicEvent :: IvlBasicEvent (const IvlEventType* t)
: IvlEvent (),
  Type (*t)
{
	int sz = t->GetTotalSize ();
	if (sz > 0)
		Data = new char [sz];
	else
		Data = 0;
}

IvlBasicEvent :: IvlBasicEvent (const IvlEventType* t, bool alloc)
: IvlEvent (),
  Type (*t)
{
	if (alloc) {
		int sz = t->GetTotalSize ();
		if (sz > 0)
			Data = new char [sz];
		else
			Data = 0;
	} else {
		Data = (char*) (&Data + sizeof (char*));
	}
}

/*?nodoc?*/
IvlBasicEvent :: ~IvlBasicEvent ()
{
	if (Data && Data != (char*) (&Data+sizeof (char*)))
		delete [] Data;
}

void
IvlBasicEvent :: SetFeature (int i, const void* data)
{
	int offset = Type.GetOffset (i);
	int size = Type.GetSize (i);
	memcpy (Data+offset, data, size);
}

void
IvlBasicEvent :: GetFeature (int i, void* data)
{
	int offset = Type.GetOffset (i);
	int size = Type.GetSize (i);
	memcpy (data, Data+offset, size);
}

#if 0
void
IvlBasicEvent :: WriteTo (IvlIOS& s)
{
	// what about byte swapping?
	s.WriteBuf ((const byte*) Data, Type.GetTotalSize ());
}

void
IvlBasicEvent :: ReadFrom (IvlIOS& s, lword)
{
	// what about byte swapping?
	s.ReadBuf ((byte*) Data, Type.GetTotalSize ());
}

#endif