summaryrefslogtreecommitdiff
path: root/xmlspec/XMLChangelog.h
blob: 709d15d8adcb384e32a0a5dd88262df7702ed965 (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
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
#ifndef _H_XMLCHANGELOG_
#define _H_XMLCHANGELOG_

// standard C++ includes
#include <iostream>
#include <string>
#include <vector>

// standard includes
#include <stdio.h>

// our includes
#include "XMLAttrs.h"
#include "XMLBase.h"

// rpm includes
#include <rpmbuild.h>

// forward class definitions
class XMLSpec;
class XMLChangelog;

using namespace std;

class XMLChangelogEntry : public XMLBase
{
//
// factory functions
//
public:
	/**
	 * Adds a changelog entry
	 * .
	 * @param pAttrs  The XML attributes
	 * @param szEntry The entry to create
	 * @param pSpec   Pointer to our spec
	 * @return true on success, false othersise
	 */
	static bool parseCreate(XMLAttrs* pAttrs,
							const char* szEntry,
							XMLSpec* pSpec);


	/**
	 * Creates changelog entries from the data provided to us by RPM
	 * @param szEntries The netries we are to evaluate
	 * @param pXSpec pointer to the XML spec we are working with
	 * @return true on success,. false otherwise
	 **/
	static bool structCreate(const char* szEntries,
							 XMLSpec* pXSpec);

//
// constructors/destructor
//
public:
	/**
	 * Default contructor
	 * .
	 * @param szChange The change entry
	 * @return none
	 **/
	 XMLChangelogEntry(const char* szChange);

	 /**
	  * Copy constructor
	  * .
	  * @param rEntry Reference to the entry to copy
	  * @return none
	  **/
	  XMLChangelogEntry(const XMLChangelogEntry& rEntry);

	 /**
	  * Destructor
	  * .
	  * @param none
	  * @return none
	  **/
	  ~XMLChangelogEntry();

//
// member functions
//
public:
	/**
	 * Outputs the object into a spec file
	 * .
	 * @param rOut Reference to our output stream
	 * @return none
	 **/
	void toSpecFile(ostream& rOut);

	/**
	 * Outputs the object into an XML spec file
	 * .
	 * @param rOut Reference to our output stream
	 * @return none
	 **/
	 void toXMLFile(ostream& rOut);

//
// member variable get/set functions
//
public:
	/**
	 * Returns the enrty
	 * .
	 * @param none
	 * @return string containing the entry
	 **/
	 const char* getChange()
	 {
	 	return m_sChange.c_str();
	 }

//
// member variables
//
public:
	string m_sChange;
};

class XMLChangelogDate : public XMLBase
{
//
// factory functions
//
public:
	/**
	 * Creates a XMLChangelogDate object
	 * .
	 * @param pAttrs The XML attributes
	 * @param pSpec The spec to add this object to
	 * @return true on success, false otherwise
	 **/
	static bool parseCreate(XMLAttrs* pAttrs,
							XMLSpec* pSpec);

	/**
	 * Creates an XMLChangelogDate object from the information provided to
	 * us by RPM
	 * .
	 * @param szDate The date to generate this for
	 * @param szEntries The entries to add to this date
	 * @param pXSpec The XML spec we are working with
	 * @return true on success, false otherwise
	 **/
	static bool structCreate(const char* szDate,
							 const char* szName,
							 const char* szEntries,
							 XMLSpec* pXSpec);

//
// constructors/destructor
//
public:
	/**
	 * Default contructor
	 * .
	 * @param szDate The date
	 * @param szAuthor The author
	 * @param szEmail The author's email
	 * @param szVersion The version in which this change was made
	 * @return none
	 **/
	XMLChangelogDate(const char* szDate,
					 const char* szAuthor,
					 const char* szEmail,
					 const char* szVersion);

	/**
	 * Copy contructor
	 * .
	 * @param rDate Reference to the date object to copy
	 * @return none
	 **/
	XMLChangelogDate(const XMLChangelogDate& rDate);

	/**
	 * Destructor
	 * .
	 * @param none
	 * @return none
	 **/
	~XMLChangelogDate();

//
// public member functions
//
public:
	/**
	 * Outputs the object into a spec file
	 * .
	 * @param rOut Reference to our output stream
	 * @return none
	 **/
	void toSpecFile(ostream& rOut);

	/**
	 * Outputs the object into an XML spec file
	 * .
	 * @param rOut Reference to our output stream
	 * @return none
	 **/
	 void toXMLFile(ostream& rOut);

//
// member variables get/set functions
//
public:
	/**
	 * Returns the date for the group of entries
	 * .
	 * @param none
	 * @return string representation of the date
	 **/
	const char* getDate()
	{
		return m_sDate.c_str();
	}

	/**
	 * Checks for an author
	 * .
	 * @param none
	 * @return true if we have an author, false otherwise
	 **/
	bool hasAuthor()
	{
		return m_sAuthor.length() ? true : false;
	}

	/**
	 * Returns the author's name
	 * .
	 * @param none
	 * @return string containing the author's name
	 **/
	const char* getAuthor()
	{
		return m_sAuthor.c_str();
	}

	/**
	 * Checks if we have an email address for the author
	 * .
	 * @param none
	 * @return true if we hava an email, false otherwise
	 **/
	bool hasEmail()
	{
		return m_sEmail.length() ? true : false;
	}

	/**
	 * Returns the author's email addresse
	 * .
	 * @param none
	 * @return a string containing the author's email address
	 **/
	const char* getEmail()
	{
		return m_sEmail.c_str();
	}

	/**
	 * Checks if we have a change version
	 * .
	 * @param none
	 * @return true if we have a version, false otherwise
	 **/
	bool hasVersion()
	{
		return m_sVersion.length() ? true : false;
	}

	/**
	 * Gets the change version
	 * .
	 * @param none
	 * @return string containing the version
	 **/
	const char* getVersion()
	{
		return m_sVersion.c_str();
	}

	/**
	 * Returns the number of entries for this date
	 * .
	 * @param none
	 * @return the number of entries
	 **/
	unsigned int numEntries()
	{
		return m_vEntries.size();
	}

	/**
	 * Returns a specific entry
	 * .
	 * @param nNum The number of the entry to return
	 * @return the enrty
	 **/
	XMLChangelogEntry& getEntry(unsigned int nNum)
	{
		return m_vEntries[nNum];
	}

	/**
	 * Adds an entry for this date
	 * .
	 * @param szEntry The entry to add
	 * @return none
	 **/
	void addEntry(XMLChangelogEntry& rEntry)
	{
		m_vEntries.push_back(rEntry);
	}

//
// member variables
//
protected:
	string                    m_sDate;
	string                    m_sAuthor;
	string                    m_sEmail;
	string                    m_sVersion;
	vector<XMLChangelogEntry> m_vEntries;
};

class XMLChangelog : public XMLBase
{
//
// static factory functions
//
public:
	/**
	 * Creates changelog objects from an RPM Spec structure
	 * .
	 * @param pSpec Pointer to the RPM spec
	 * @param pXSpec pointer to the XMLSpec object to populate
	 * @return true on success, false otherwise
	 **/
	static bool structCreate(Spec pSpec,
							 XMLSpec* pXSpec);

//
// constructors/destructor
//
public:
	/**
	 * Default constructor
	 * .
	 * @param none
	 * @return none
	 **/
	XMLChangelog();

	/**
	 * Copy constructor
	 * .
	 * @param rChangelog The object to copy
	 * @return none
	 **/
	XMLChangelog(const XMLChangelog& rChangelog);

	/**
	 * Destructor
	 * .
	 * @param none
	 * @return none
	 **/
	~XMLChangelog();

//
// public member functions
//
public:
	/**
	 * Converts the object into a spec file
	 * .
	 * @param rOut Reference to the output stream
	 * @return none
	 **/
	void toSpecFile(ostream& rOut);

	/**
	 * Converts the object into an xML spec
	 * .
	 * @param rOut Reference to the output stream
	 * @return none
	 **/
	 void toXMLFile(ostream& rOut);

	 /**
	  * Converts the object into an RPM structure
	  * .
	  * @param spec RPM structure
	  * @return none
	  **/
	  void toRPMStruct(Spec spec);
//
// variable get/set functions
//
public:
	/**
	 * Adds a date to the changelog
	 * .
	 * @param rDate The date to add
	 * @return none
	 **/
	void addDate(XMLChangelogDate& rDate)
	{
		m_vDates.push_back(rDate);
	}

	/**
	 * Returns the number of dates in the changelog
	 * .
	 * @param none
	 * @return the number of dates
	 **/
	unsigned int numDates()
	{
		return m_vDates.size();
	}

	/**
	 * Gets a specific date
	 * .
	 * @param nNum The entry number
	 * @return The requated date
	 **/
	XMLChangelogDate& getDate(unsigned int nNum)
	{
		return m_vDates[nNum];
	}

	/**
	 * Gets the last date we have added
	 * .
	 * @param none
	 * @return the last date
	 **/
	XMLChangelogDate& lastDate()
	{
		return m_vDates[numDates()-1];
	}

//
// member variables
//
protected:
	vector<XMLChangelogDate> m_vDates;
};

#endif