GME  13
IDREFDatatypeValidator.cpp
Go to the documentation of this file.
00001 /*
00002  * Licensed to the Apache Software Foundation (ASF) under one or more
00003  * contributor license agreements.  See the NOTICE file distributed with
00004  * this work for additional information regarding copyright ownership.
00005  * The ASF licenses this file to You under the Apache License, Version 2.0
00006  * (the "License"); you may not use this file except in compliance with
00007  * the License.  You may obtain a copy of the License at
00008  * 
00009  *      http://www.apache.org/licenses/LICENSE-2.0
00010  * 
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS,
00013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  */
00017 
00018 /*
00019  * $Id: IDREFDatatypeValidator.cpp 471747 2006-11-06 14:31:56Z amassari $
00020  */
00021 
00022 // ---------------------------------------------------------------------------
00023 //  Includes
00024 // ---------------------------------------------------------------------------
00025 #include <xercesc/validators/datatype/IDREFDatatypeValidator.hpp>
00026 #include <xercesc/validators/datatype/InvalidDatatypeValueException.hpp>
00027 #include <xercesc/util/XMLChar.hpp>
00028 
00029 XERCES_CPP_NAMESPACE_BEGIN
00030 
00031 // ---------------------------------------------------------------------------
00032 //  Constructors and Destructor
00033 // ---------------------------------------------------------------------------
00034 IDREFDatatypeValidator::IDREFDatatypeValidator(MemoryManager* const manager)
00035 :StringDatatypeValidator(0, 0, 0, DatatypeValidator::IDREF, manager)
00036 {}
00037 
00038 IDREFDatatypeValidator::IDREFDatatypeValidator(
00039                                            DatatypeValidator*            const baseValidator
00040                                          , RefHashTableOf<KVStringPair>* const facets
00041                                          , RefArrayVectorOf<XMLCh>*      const enums
00042                                          , const int                           finalSet
00043                                          , MemoryManager* const                manager)
00044 :StringDatatypeValidator(baseValidator, facets, finalSet, DatatypeValidator::IDREF, manager)
00045 {
00046     init(enums, manager);
00047 }
00048 
00049 IDREFDatatypeValidator::~IDREFDatatypeValidator()
00050 {}
00051 
00052 DatatypeValidator* IDREFDatatypeValidator::newInstance
00053 (
00054       RefHashTableOf<KVStringPair>* const facets
00055     , RefArrayVectorOf<XMLCh>* const      enums
00056     , const int                           finalSet
00057     , MemoryManager* const                manager
00058 )
00059 {
00060     return (DatatypeValidator*) new (manager) IDREFDatatypeValidator(this, facets, enums, finalSet, manager);
00061 }
00062 
00063 IDREFDatatypeValidator::IDREFDatatypeValidator(
00064                           DatatypeValidator*            const baseValidator
00065                         , RefHashTableOf<KVStringPair>* const facets
00066                         , const int                           finalSet
00067                         , const ValidatorType                 type
00068                         , MemoryManager* const                manager)
00069 :StringDatatypeValidator(baseValidator, facets, finalSet, type, manager)
00070 {
00071     // do not invoke init() here!!!
00072 }
00073 
00074 void IDREFDatatypeValidator::validate(const XMLCh*             const content
00075                                     ,       ValidationContext* const context
00076                                     ,       MemoryManager*     const manager)
00077 {
00078     // use StringDatatypeValidator (which in turn, invoke
00079     // the baseValidator) to validate content against
00080     // facets if any.
00081     //
00082     StringDatatypeValidator::validate(content, context, manager);
00083 
00084     // this is different from java, since we always add, while
00085     // in java, it is done as told. REVISIT.
00086     //
00087     if (context)
00088     {
00089         context->addIdRef(content);
00090     }
00091 
00092 }
00093 
00094 void IDREFDatatypeValidator::checkValueSpace(const XMLCh* const content
00095                                              , MemoryManager* const manager)
00096 {
00097     //
00098     // 3.3.9 check must: "NCName"
00099     //
00100     if ( !XMLChar1_0::isValidNCName(content, XMLString::stringLen(content)) )
00101     {
00102         ThrowXMLwithMemMgr1(InvalidDatatypeValueException
00103                 , XMLExcepts::VALUE_Invalid_NCName
00104                 , content
00105                 , manager);
00106     }
00107 
00108 }
00109 
00110 /***
00111  * Support for Serialization/De-serialization
00112  ***/
00113 
00114 IMPL_XSERIALIZABLE_TOCREATE(IDREFDatatypeValidator)
00115 
00116 void IDREFDatatypeValidator::serialize(XSerializeEngine& serEng)
00117 {
00118     StringDatatypeValidator::serialize(serEng);
00119 }
00120 
00121 XERCES_CPP_NAMESPACE_END
00122