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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
|
#ifndef _H_XMLFILES_
#define _H_XMLFILES_
// 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 XMLPackage;
class XMLFiles;
class XMLSpec;
using namespace std;
// <file ...>
class XMLFile : public XMLBase
{
//
// object creation static functions
//
public:
/**
* Creates a file object and add it to the correct XMLFiles
* container.
* .
* @param pAttrs The attributes in the XML tag
* @param szPath The file path
* @param pSpec The spec to which these files belong
* @return true on success, false otherwise
**/
static bool parseCreate(XMLAttrs* pAttrs,
const char* szPath,
XMLSpec* pSpec);
//
// constructors/destructor
//
public:
/**
* Default contructor
* .
* @param szMode The file's mode (NULL if default)
* @param szOwner The file's owner (NULL if default)
* @param szGroup The file's group (NULL if default)
* @param szConfig The configuration parameter
* @param szPath The file path
* @return none
**/
XMLFile(const char* szMode,
const char* szUser,
const char* szGroup,
const char* szConfig,
const char* szPath);
/**
* Copy constructire
* .
* @param rFile Reference to the object to copy
* @return none
**/
XMLFile(const XMLFile& rFile);
/**
* Default destructor
* .
* @param none
* @return none
**/
~XMLFile();
//
// operators
//
public:
/**
* Assignment operator
* .
* @param file The file that we wish to copy
* @return a copy of the original
**/
XMLFile operator=(XMLFile file);
//
// member functions
//
public:
/**
* Outputs the obkect to an RPM spec file
* .
* @param rOut Reference to the output stream
* @return none
**/
void toSpecFile(ostream& rOut);
/**
* Outputs the object to an XML spec file
* .
* @param rOut Reference to the output stream
* @return none
**/
void toXMLFile(ostream& rOut);
//
// member variable get/set functions
//
public:
/**
* Returns the file path
* .
* @param none
* @return string containing the path
**/
const char* getPath()
{
return m_sPath.c_str();
}
/**
* Sets the file path
* .
* @param szPath The path to set
* @return none
**/
void setPath(const char* szPath)
{
if (szPath)
m_sPath.assign(szPath);
}
/**
* Checks for a file mode
* .
* @param none
* @return true if we have one, false otherwise
**/
bool hasMode()
{
return m_sMode.length() ? true : false;
}
/**
* Returns the file mode
* .
* @param none
* @return the mode string
**/
const char* getMode()
{
return m_sMode.c_str();
}
/**
* Sets the file mode
* .
* @param szMode The mode to set
* @return none
**/
void setMode(const char* szMode)
{
if (szMode)
m_sMode.assign(szMode);
}
/**
* Checks if we have a file owner
* .
* @param none
* @return true if we have an owner, false otherwise
**/
bool hasOwner()
{
return m_sOwner.length() ? true : false;
}
/**
* Returns the file owner
* .
* @param none
* @return the owner as a string
**/
const char* getOwner()
{
return m_sOwner.c_str();
}
/**
* Sets the file owner
* .
* @param szOwner The file owner
* @return none
**/
void setOwner(const char* szOwner)
{
if (szOwner)
m_sOwner.assign(szOwner);
}
/**
* Checks for a file group
* .
* @param none
* @return true if we have a group, false otherwise
**/
bool hasGroup()
{
return m_sGroup.length() ? true : false;
}
/**
* Returns the file group
* .
* @param none
* @return string containing the group
**/
const char* getGroup()
{
return m_sGroup.c_str();
}
/**
* Sets the file group
* .
* @param szGroup The group to set
* @return none
**/
void setGroup(const char* szGroup)
{
if (szGroup)
m_sGroup.assign(szGroup);
}
/**
* Checks for config directives
* .
* @param none
* @return true if we have one, false otherwise
**/
bool hasConfig()
{
return m_sConfig.length() ? true : false;
}
/**
* Returns the config attribute
* .
* @param none
* @return the sttribute string
**/
const char* getConfig()
{
return m_sConfig.c_str();
}
/**
* Sets the config attribute
* .
* @param szConfig The configuration
* @return none
**/
void setConfig(const char* szConfig)
{
if (szConfig)
m_sConfig.assign(szConfig);
}
//
// member variables
//
protected:
string m_sPath;
string m_sMode;
string m_sOwner;
string m_sGroup;
string m_sConfig;
};
// <files ...>
class XMLFiles : public XMLBase
{
//
// object creation static functions
//
public:
/**
* Creates an object as parsed from an XML spec
* .
* @param pAttrs XML atrtributes to use
* @param pSpec The spec to which we are adding this object to
* @return true on success, false otherwise
**/
static bool parseCreate(XMLAttrs* pAttrs,
XMLSpec* pSpec);
/**
* Creates file objects from an RPM Spec structure
* .
* @param pPackage Pointer to the package
* @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(PackageStruct* pPackage,
Spec pSpec,
XMLSpec* pXSpec);
//
// constructors/destructor
//
public:
/**
* Default constructor
* .
* @param none
* @return none
**/
XMLFiles();
/**
* Copy constructor
* .
* @param rFiles Reference to the object to copy
* @return none
**/
XMLFiles(const XMLFiles& rFiles);
/**
* Destructor
* .
* @param none
* @return none
**/
~XMLFiles();
//
// member functions
//
public:
/**
* Converts the object into an RPM spec
* .
* @param rOut Output stream
* @return none
**/
void toSpecFile(ostream& rOut);
/**
* Converts the object into an XML spec
* .
* @param rOut Output stream
* @return none
**/
void toXMLFile(ostream& rOut);
//
// operators
//
public:
/**
* Assignment operator
* .
* @param files XMLFiles object to copy
* @return copied object
**/
XMLFiles operator=(XMLFiles files);
//
// member variable get/set functions
//
public:
/**
* Adds a file to our file list
* .
* @param rFile File to add
* @return none
**/
void addFile(XMLFile& rFile)
{
m_vFiles.push_back(rFile);
}
/**
* Returns the number of files in our list
* .
* @param none
* @return none
**/
unsigned int numFiles()
{
return m_vFiles.size();
}
/**
* Returns a specific file
* .
* @param nNum Number of the file to return
* @return the file object
**/
XMLFile& getFile(unsigned int nNum)
{
return m_vFiles[nNum];
}
/**
* Checks for a default mode
* .
* @param none
* @return true if we have a default mode, false otherwise
**/
bool hasDefMode()
{
return m_sMode.length() ? true : false;
}
/**
* Sets the default mode
* .
* @param szMode The mode value
* @return none
**/
void setDefMode(const char* szMode)
{
if (szMode)
m_sMode.assign(szMode);
}
/**
* Returns the default mode
* .
* @param none
* @return string containing the mode
**/
const char* getDefMode()
{
return m_sMode.c_str();
}
/**
* Check if we have a default owner
* .
* @param none
* @return true if we have an owner, false otherwise
**/
bool hasDefOwner()
{
return m_sOwner.length() ? true : false;
}
/**
* Sets the default owner
* .
* @param szOwner The owner
* @return none
**/
void setDefOwner(const char* szOwner)
{
if (szOwner)
m_sOwner.assign(szOwner);
}
/**
* Returns the default owner
* .
* @param none
* @return the owner string
**/
const char* getDefOwner()
{
return m_sOwner.c_str();
}
/**
* Checks if we have a default group
* .
* @param none
* @return true if we have an owner, false otherwise
**/
bool hasDefGroup()
{
return m_sGroup.length() ? true : false;
}
/**
* Sets the default group
* .
* @param szGroup The group to set
* @return none
**/
void setDefGroup(const char* szGroup)
{
if (szGroup)
m_sGroup.assign(szGroup);
}
/**
* Gets the default group
* .
* @param none
* @return string representation of the group
**/
const char* getDefGroup()
{
return m_sGroup.c_str();
}
//
// member variables
//
protected:
string m_sMode;
string m_sOwner;
string m_sGroup;
vector<XMLFile> m_vFiles;
};
#endif
|