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
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112 #if !defined(XMLELEMENTDECL_HPP)
00113 #define XMLELEMENTDECL_HPP
00114
00115 #include <util/XMLString.hpp>
00116 #include <framework/XMLAttr.hpp>
00117 #include <framework/XMLAttDefList.hpp>
00118 #include <framework/XMLContentModel.hpp>
00119
00120 class ContentSpecNode;
00121
00137 class XMLElementDecl
00138 {
00139 public:
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155 enum CreateReasons
00156 {
00157 NoReason
00158 , Declared
00159 , AttList
00160 , InContentModel
00161 , AsRootElem
00162 , JustFaultIn
00163 };
00164
00165 enum LookupOpts
00166 {
00167 AddIfNotFound
00168 , FailIfNotFound
00169 };
00170
00171 enum CharDataOpts
00172 {
00173 NoCharData
00174 , SpacesOk
00175 , AllCharData
00176 };
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193 static const unsigned int fgInvalidElemId;
00194 static const unsigned int fgPCDataElemId;
00195 static const XMLCh fgPCDataElemName[];
00196
00197
00198
00199
00200
00201
00204
00206
00207
00208
00209
00210
00211
00214
00243 virtual XMLAttDef* findAttr
00244 (
00245 const XMLCh* const qName
00246 , const unsigned int uriId
00247 , const XMLCh* const baseName
00248 , const XMLCh* const prefix
00249 , const LookupOpts options
00250 , bool& wasAdded
00251 ) const = 0;
00252
00264 virtual XMLAttDefList& getAttDefList() const = 0;
00265
00273 virtual CharDataOpts getCharDataOpts() const = 0;
00274
00281 virtual bool hasAttDefs() const = 0;
00282
00290 virtual bool resetDefs() = 0;
00291
00299 virtual const ContentSpecNode* getContentSpec() const = 0;
00300
00306 virtual ContentSpecNode* getContentSpec() = 0;
00307
00317 virtual void setContentSpec(ContentSpecNode* toAdopt) = 0;
00318
00320
00321
00322
00323
00324
00325
00328
00336 const XMLCh* getBaseName() const;
00337 XMLCh* getBaseName();
00338
00345 const unsigned int getURI() const;
00346
00354 const QName* getElementName() const;
00355 QName* getElementName();
00356
00365 const XMLCh* getFullName() const;
00366
00378 XMLContentModel* getContentModel();
00379
00390
00391 CreateReasons getCreateReason() const;
00392
00402 unsigned int getId() const;
00403
00413 bool isDeclared() const;
00414
00422
00423 bool isExternal() const;
00424
00426
00427
00428
00429
00430
00431
00434
00445 void setElementName(const XMLCh* const prefix
00446 , const XMLCh* const localPart
00447 , const int uriId );
00448
00458 void setElementName(const XMLCh* const rawName
00459 , const int uriId );
00460
00469 void setElementName(QName* const elementName);
00470
00482 void setContentModel(XMLContentModel* const newModelToAdopt);
00483
00494 void setCreateReason(const CreateReasons newReason);
00495
00502 void setId(const unsigned int newId);
00503
00504
00508 void setExternalElemDeclaration();
00509
00511
00512
00513
00514
00515
00516
00519
00532 const XMLCh* getFormattedContentModel () const;
00533
00535
00536
00537 protected :
00538
00539
00540
00541 XMLElementDecl();
00542
00543
00544
00545
00546
00547 virtual XMLContentModel* makeContentModel() = 0;
00548 virtual XMLCh* formatContentModel () const = 0;
00549
00550
00551 private :
00552
00553
00554
00555 XMLElementDecl(const XMLElementDecl&);
00556 void operator=(const XMLElementDecl&);
00557
00558
00559
00560
00561
00562
00563
00564
00565
00566
00567
00568
00569
00570
00571
00572
00573
00574
00575
00576
00577
00578
00579
00580
00581
00582
00583
00584
00585
00586
00587
00588
00589
00590
00591 QName* fElementName;
00592 XMLContentModel* fContentModel;
00593 CreateReasons fCreateReason;
00594 XMLCh* fFormattedModel;
00595 unsigned int fId;
00596 bool fExternalElement;
00597 };
00598
00599
00600
00601
00602
00603 inline const XMLCh* XMLElementDecl::getBaseName() const
00604 {
00605 return fElementName->getLocalPart();
00606 }
00607
00608 inline XMLCh* XMLElementDecl::getBaseName()
00609 {
00610 return fElementName->getLocalPart();
00611 }
00612
00613 inline const unsigned int XMLElementDecl::getURI() const
00614 {
00615 return fElementName->getURI();
00616 }
00617
00618 inline const QName* XMLElementDecl::getElementName() const
00619 {
00620 return fElementName;
00621 }
00622
00623 inline QName* XMLElementDecl::getElementName()
00624 {
00625 return fElementName;
00626 }
00627
00628 inline const XMLCh* XMLElementDecl::getFullName() const
00629 {
00630 return fElementName->getRawName();
00631 }
00632
00633 inline XMLContentModel* XMLElementDecl::getContentModel()
00634 {
00635 if (!fContentModel)
00636 fContentModel = makeContentModel();
00637 return fContentModel;
00638 }
00639
00640 inline XMLElementDecl::CreateReasons XMLElementDecl::getCreateReason() const
00641 {
00642 return fCreateReason;
00643 }
00644
00645 inline unsigned int XMLElementDecl::getId() const
00646 {
00647 return fId;
00648 }
00649
00650 inline bool XMLElementDecl::isDeclared() const
00651 {
00652 return (fCreateReason == Declared);
00653 }
00654
00655
00656 inline bool XMLElementDecl::isExternal() const
00657 {
00658 return fExternalElement;
00659 }
00660
00661
00662
00663
00664
00665 inline void
00666 XMLElementDecl::setContentModel(XMLContentModel* const newModelToAdopt)
00667 {
00668 delete fContentModel;
00669 fContentModel = newModelToAdopt;
00670 }
00671
00672 inline void
00673 XMLElementDecl::setCreateReason(const XMLElementDecl::CreateReasons newReason)
00674 {
00675 fCreateReason = newReason;
00676 }
00677
00678 inline void XMLElementDecl::setId(const unsigned int newId)
00679 {
00680 fId = newId;
00681 }
00682
00683
00684 inline void XMLElementDecl::setExternalElemDeclaration()
00685 {
00686 fExternalElement = true;
00687 }
00688
00689 #endif