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
00090
00091
00092
00093
00094
00095 #if !defined(ATTDEF_HPP)
00096 #define ATTDEF_HPP
00097
00098 #include <util/XMLString.hpp>
00099
00100 class XMLAttr;
00101
00120 class XMLAttDef
00121 {
00122 public:
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139 enum AttTypes
00140 {
00141 CData = 0
00142 , ID = 1
00143 , IDRef = 2
00144 , IDRefs = 3
00145 , Entity = 4
00146 , Entities = 5
00147 , NmToken = 6
00148 , NmTokens = 7
00149 , Notation = 8
00150 , Enumeration = 9
00151 , Simple = 10
00152 , Any_Any = 11
00153 , Any_Other = 12
00154 , Any_Local = 13
00155 , Any_List = 14
00156
00157 , AttTypes_Count
00158 , AttTypes_Min = 0
00159 , AttTypes_Max = 14
00160 , AttTypes_Unknown = -1
00161 };
00162
00163 enum DefAttTypes
00164 {
00165 Default = 0
00166 , Required = 1
00167 , Implied = 2
00168 , Fixed = 3
00169 , Prohibited = 4
00170 , Required_And_Fixed = 5
00171 , ProcessContents_Strict = 6
00172 , ProcessContents_Lax = 7
00173 , ProcessContents_Skip = 8
00174
00175 , DefAttTypes_Count
00176 , DefAttTypes_Min = 0
00177 , DefAttTypes_Max = 8
00178 , DefAttTypes_Unknown = -1
00179 };
00180
00181 enum CreateReasons
00182 {
00183 NoReason
00184 , JustFaultIn
00185 };
00186
00187
00188
00189
00190 static const unsigned int fgInvalidAttrId;
00191
00192
00193
00194
00195
00196
00199
00210 static const XMLCh* getAttTypeString(const AttTypes attrType);
00211
00222 static const XMLCh* getDefAttTypeString(const DefAttTypes attrType);
00223
00225
00226
00227
00228
00229
00230
00233
00237 virtual ~XMLAttDef();
00239
00240
00241
00242
00243
00244
00247
00256 virtual const XMLCh* getFullName() const = 0;
00257
00259
00260
00261
00262
00263
00264
00267
00276 DefAttTypes getDefaultType() const;
00277
00287 const XMLCh* getEnumeration() const;
00288
00297 unsigned int getId() const;
00298
00312 bool getProvided() const;
00313
00323 AttTypes getType() const;
00324
00334 const XMLCh* getValue() const;
00335
00344 CreateReasons getCreateReason() const;
00345
00347
00348
00349
00350
00351
00352
00355
00364 void setDefaultType(const XMLAttDef::DefAttTypes newValue);
00365
00374 void setId(const unsigned int newId);
00375
00384 void setProvided(const bool newValue);
00385
00393 void setType(const XMLAttDef::AttTypes newValue);
00394
00405 void setValue(const XMLCh* const newValue);
00406
00417 void setEnumeration(const XMLCh* const newValue);
00418
00424 void setCreateReason(const CreateReasons newReason);
00425
00427
00428 protected :
00429
00430
00431
00432 XMLAttDef
00433 (
00434 const AttTypes type = CData
00435 , const DefAttTypes defType = Implied
00436 );
00437 XMLAttDef
00438 (
00439 const XMLCh* const attValue
00440 , const AttTypes type
00441 , const DefAttTypes defType
00442 , const XMLCh* const enumValues = 0
00443 );
00444
00445
00446 private :
00447
00448
00449
00450 XMLAttDef(const XMLAttDef&);
00451 void operator=(const XMLAttDef&);
00452
00453
00454
00455
00456
00457 void cleanUp();
00458
00459
00460
00461
00462
00463
00464
00465
00466
00467
00468
00469
00470
00471
00472
00473
00474
00475
00476
00477
00478
00479
00480
00481
00482
00483
00484
00485
00486
00487
00488
00489
00490
00491
00492
00493 DefAttTypes fDefaultType;
00494 XMLCh* fEnumeration;
00495 unsigned int fId;
00496 bool fProvided;
00497 AttTypes fType;
00498 XMLCh* fValue;
00499 CreateReasons fCreateReason;
00500 };
00501
00502
00503
00504
00505
00506
00507 inline XMLAttDef::DefAttTypes XMLAttDef::getDefaultType() const
00508 {
00509 return fDefaultType;
00510 }
00511
00512 inline const XMLCh* XMLAttDef::getEnumeration() const
00513 {
00514 return fEnumeration;
00515 }
00516
00517 inline unsigned int XMLAttDef::getId() const
00518 {
00519 return fId;
00520 }
00521
00522 inline bool XMLAttDef::getProvided() const
00523 {
00524 return fProvided;
00525 }
00526
00527 inline XMLAttDef::AttTypes XMLAttDef::getType() const
00528 {
00529 return fType;
00530 }
00531
00532 inline const XMLCh* XMLAttDef::getValue() const
00533 {
00534 return fValue;
00535 }
00536
00537 inline XMLAttDef::CreateReasons XMLAttDef::getCreateReason() const
00538 {
00539 return fCreateReason;
00540 }
00541
00542
00543
00544
00545
00546 inline void XMLAttDef::setDefaultType(const XMLAttDef::DefAttTypes newValue)
00547 {
00548 fDefaultType = newValue;
00549 }
00550
00551 inline void XMLAttDef::setEnumeration(const XMLCh* const newValue)
00552 {
00553 delete [] fEnumeration;
00554 fEnumeration = XMLString::replicate(newValue);
00555 }
00556
00557 inline void XMLAttDef::setId(const unsigned int newId)
00558 {
00559 fId = newId;
00560 }
00561
00562 inline void XMLAttDef::setProvided(const bool newValue)
00563 {
00564 fProvided = newValue;
00565 }
00566
00567 inline void XMLAttDef::setType(const XMLAttDef::AttTypes newValue)
00568 {
00569 fType = newValue;
00570 }
00571
00572 inline void XMLAttDef::setValue(const XMLCh* const newValue)
00573 {
00574 delete [] fValue;
00575 fValue = XMLString::replicate(newValue);
00576 }
00577
00578 inline void
00579 XMLAttDef::setCreateReason(const XMLAttDef::CreateReasons newReason)
00580 {
00581 fCreateReason = newReason;
00582 }
00583
00584 #endif