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 #if !defined(XMLELEMENTDECL_HPP)
00092 #define XMLELEMENTDECL_HPP
00093
00094 #include <util/XMLString.hpp>
00095 #include <framework/XMLAttr.hpp>
00096 #include <framework/XMLAttDefList.hpp>
00097 #include <framework/XMLContentModel.hpp>
00098
00099 class XMLValidator;
00100
00123 class XMLElementDecl
00124 {
00125 public:
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141 enum CreateReasons
00142 {
00143 NoReason
00144 , Declared
00145 , AttList
00146 , InContentModel
00147 , AsRootElem
00148 , JustFaultIn
00149 };
00150
00151 enum LookupOpts
00152 {
00153 AddIfNotFound
00154 , FailIfNotFound
00155 };
00156
00157 enum CharDataOpts
00158 {
00159 NoCharData
00160 , SpacesOk
00161 , AllCharData
00162 };
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179 static const unsigned int fgInvalidElemId;
00180 static const unsigned int fgPCDataElemId;
00181 static const XMLCh fgPCDataElemName[];
00182
00183
00184
00185
00186
00187
00190
00192
00193
00194
00195
00196
00197
00200
00226 virtual XMLAttDef* findAttr
00227 (
00228 const XMLCh* const qName
00229 , const unsigned int uriId
00230 , const XMLCh* const baseName
00231 , const LookupOpts options
00232 , bool& wasAdded
00233 ) const = 0;
00234
00246 virtual XMLAttDefList& getAttDefList() const = 0;
00247
00256 virtual const XMLCh* getBaseName() const = 0;
00257
00265 virtual CharDataOpts getCharDataOpts() const = 0;
00266
00275 virtual const XMLCh* getFullName() const = 0;
00276
00283 virtual bool hasAttDefs() const = 0;
00284
00292 virtual bool resetDefs() = 0;
00293
00295
00296
00297
00298
00299
00300
00303
00315 const XMLContentModel* getContentModel() const;
00316
00322 XMLContentModel* getContentModel();
00323
00334 CreateReasons getCreateReason() const;
00335
00345 unsigned int getId() const;
00346
00356 bool isDeclared() const;
00357
00365
00366 bool isExternal() const;
00367
00369
00370
00371
00372
00373
00374
00377
00389 void setContentModel(XMLContentModel* const newModelToAdopt);
00390
00401 void setCreateReason(const CreateReasons newReason);
00402
00409 void setId(const unsigned int newId);
00410
00411
00415 void setExternalElemDeclaration();
00416
00418
00419
00420
00421
00422
00423
00426
00446 const XMLCh* getFormattedContentModel
00447 (
00448 const XMLValidator& validator
00449 ) const;
00450
00459 const XMLCh* getKey() const;
00460
00462
00463
00464 protected :
00465
00466
00467
00468 XMLElementDecl();
00469
00470
00471
00472
00473
00474 virtual XMLContentModel* makeContentModel() const = 0;
00475 virtual XMLCh* formatContentModel
00476 (
00477 const XMLValidator& validator
00478 ) const = 0;
00479
00480
00481 private :
00482
00483
00484
00485 XMLElementDecl(const XMLElementDecl&);
00486 void operator=(const XMLElementDecl&);
00487
00488
00489
00490
00491
00492
00493
00494
00495
00496
00497
00498
00499
00500
00501
00502
00503
00504
00505
00506
00507
00508
00509
00510
00511
00512
00513
00514
00515
00516
00517
00518 XMLContentModel* fContentModel;
00519 CreateReasons fCreateReason;
00520 XMLCh* fFormattedModel;
00521 unsigned int fId;
00522 bool fExternalElement;
00523 };
00524
00525
00526
00527
00528
00529 inline const XMLCh* XMLElementDecl::getKey() const
00530 {
00531
00532
00533
00534
00535 return getFullName();
00536 }
00537
00538
00539
00540
00541
00542 inline XMLContentModel* XMLElementDecl::getContentModel()
00543 {
00544 if (!fContentModel)
00545 fContentModel = makeContentModel();
00546 return fContentModel;
00547 }
00548
00549 inline const XMLContentModel* XMLElementDecl::getContentModel() const
00550 {
00551
00552 if (!fContentModel)
00553 ((XMLElementDecl*)this)->fContentModel = makeContentModel();
00554 return fContentModel;
00555 }
00556
00557 inline XMLElementDecl::CreateReasons XMLElementDecl::getCreateReason() const
00558 {
00559 return fCreateReason;
00560 }
00561
00562 inline unsigned int XMLElementDecl::getId() const
00563 {
00564 return fId;
00565 }
00566
00567 inline bool XMLElementDecl::isDeclared() const
00568 {
00569 return (fCreateReason == Declared);
00570 }
00571
00572
00573 inline bool XMLElementDecl::isExternal() const
00574 {
00575 return fExternalElement;
00576 }
00577
00578
00579
00580
00581
00582 inline void
00583 XMLElementDecl::setContentModel(XMLContentModel* const newModelToAdopt)
00584 {
00585 delete fContentModel;
00586 fContentModel = newModelToAdopt;
00587 }
00588
00589 inline void
00590 XMLElementDecl::setCreateReason(const XMLElementDecl::CreateReasons newReason)
00591 {
00592 fCreateReason = newReason;
00593 }
00594
00595 inline void XMLElementDecl::setId(const unsigned int newId)
00596 {
00597 fId = newId;
00598 }
00599
00600
00601 inline void XMLElementDecl::setExternalElemDeclaration()
00602 {
00603 fExternalElement = true;
00604 }
00605
00606 #endif