00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089 #if !defined(ATTDEF_HPP)
00090 #define ATTDEF_HPP
00091
00092 #include <util/XMLString.hpp>
00093
00094 class XMLAttr;
00095
00114 class XMLAttDef
00115 {
00116 public:
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133 enum AttTypes
00134 {
00135 CData = 0
00136 , ID = 1
00137 , IDRef = 2
00138 , IDRefs = 3
00139 , Entity = 4
00140 , Entities = 5
00141 , NmToken = 6
00142 , NmTokens = 7
00143 , Notation = 8
00144 , Enumeration = 9
00145
00146 , AttTypes_Count
00147 , AttTypes_Min = 0
00148 , AttTypes_Max = 9
00149 , AttTypes_Unknown = -1
00150 };
00151
00152 enum DefAttTypes
00153 {
00154 Default = 0
00155 , Required = 1
00156 , Implied = 2
00157 , Fixed = 3
00158
00159 , DefAttTypes_Count
00160 , DefAttTypes_Min = 0
00161 , DefAttTypes_Max = 3
00162 , DefAttTypes_Unknown = -1
00163 };
00164
00165 enum CreateReasons
00166 {
00167 NoReason
00168 , JustFaultIn
00169 };
00170
00171
00172
00173
00174 static const unsigned int fgInvalidAttrId;
00175
00176
00177
00178
00179
00180
00183
00194 static const XMLCh* getAttTypeString(const AttTypes attrType);
00195
00206 static const XMLCh* getDefAttTypeString(const DefAttTypes attrType);
00207
00209
00210
00211
00212
00213
00214
00217
00221 virtual ~XMLAttDef();
00223
00224
00225
00226
00227
00228
00231
00240 virtual const XMLCh* getFullName() const = 0;
00241
00243
00244
00245
00246
00247
00248
00251
00260 DefAttTypes getDefaultType() const;
00261
00271 const XMLCh* getEnumeration() const;
00272
00281 unsigned int getId() const;
00282
00296 bool getProvided() const;
00297
00307 AttTypes getType() const;
00308
00318 const XMLCh* getValue() const;
00319
00328 CreateReasons getCreateReason() const;
00329
00331
00332
00333
00334
00335
00336
00339
00348 void setDefaultType(const XMLAttDef::DefAttTypes newValue);
00349
00358 void setId(const unsigned int newId);
00359
00368 void setProvided(const bool newValue);
00369
00377 void setType(const XMLAttDef::AttTypes newValue);
00378
00389 void setValue(const XMLCh* const newValue);
00390
00401 void setEnumeration(const XMLCh* const newValue);
00402
00408 void setCreateReason(const CreateReasons newReason);
00409
00411
00412 protected :
00413
00414
00415
00416 XMLAttDef
00417 (
00418 const AttTypes type = CData
00419 , const DefAttTypes defType = Implied
00420 );
00421 XMLAttDef
00422 (
00423 const XMLCh* const attValue
00424 , const AttTypes type
00425 , const DefAttTypes defType
00426 , const XMLCh* const enumValues = 0
00427 );
00428
00429
00430 private :
00431
00432
00433
00434 XMLAttDef(const XMLAttDef&);
00435 void operator=(const XMLAttDef&);
00436
00437
00438
00439
00440
00441 void cleanUp();
00442
00443
00444
00445
00446
00447
00448
00449
00450
00451
00452
00453
00454
00455
00456
00457
00458
00459
00460
00461
00462
00463
00464
00465
00466
00467
00468
00469
00470
00471
00472
00473
00474
00475
00476
00477 DefAttTypes fDefaultType;
00478 XMLCh* fEnumeration;
00479 unsigned int fId;
00480 bool fProvided;
00481 AttTypes fType;
00482 XMLCh* fValue;
00483 CreateReasons fCreateReason;
00484 };
00485
00486
00487
00488
00489
00490
00491 inline XMLAttDef::DefAttTypes XMLAttDef::getDefaultType() const
00492 {
00493 return fDefaultType;
00494 }
00495
00496 inline const XMLCh* XMLAttDef::getEnumeration() const
00497 {
00498 return fEnumeration;
00499 }
00500
00501 inline unsigned int XMLAttDef::getId() const
00502 {
00503 return fId;
00504 }
00505
00506 inline bool XMLAttDef::getProvided() const
00507 {
00508 return fProvided;
00509 }
00510
00511 inline XMLAttDef::AttTypes XMLAttDef::getType() const
00512 {
00513 return fType;
00514 }
00515
00516 inline const XMLCh* XMLAttDef::getValue() const
00517 {
00518 return fValue;
00519 }
00520
00521 inline XMLAttDef::CreateReasons XMLAttDef::getCreateReason() const
00522 {
00523 return fCreateReason;
00524 }
00525
00526
00527
00528
00529
00530 inline void XMLAttDef::setDefaultType(const XMLAttDef::DefAttTypes newValue)
00531 {
00532 fDefaultType = newValue;
00533 }
00534
00535 inline void XMLAttDef::setEnumeration(const XMLCh* const newValue)
00536 {
00537 delete [] fEnumeration;
00538 fEnumeration = XMLString::replicate(newValue);
00539 }
00540
00541 inline void XMLAttDef::setId(const unsigned int newId)
00542 {
00543 fId = newId;
00544 }
00545
00546 inline void XMLAttDef::setProvided(const bool newValue)
00547 {
00548 fProvided = newValue;
00549 }
00550
00551 inline void XMLAttDef::setType(const XMLAttDef::AttTypes newValue)
00552 {
00553 fType = newValue;
00554 }
00555
00556 inline void XMLAttDef::setValue(const XMLCh* const newValue)
00557 {
00558 delete [] fValue;
00559 fValue = XMLString::replicate(newValue);
00560 }
00561
00562 inline void
00563 XMLAttDef::setCreateReason(const XMLAttDef::CreateReasons newReason)
00564 {
00565 fCreateReason = newReason;
00566 }
00567
00568 #endif