GME  13
IDDatatypeValidator.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: IDDatatypeValidator.cpp 471747 2006-11-06 14:31:56Z amassari $
00020  */
00021 
00022 // ---------------------------------------------------------------------------
00023 //  Includes
00024 // ---------------------------------------------------------------------------
00025 #include <xercesc/validators/datatype/IDDatatypeValidator.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 IDDatatypeValidator::IDDatatypeValidator(MemoryManager* const manager)
00035 :StringDatatypeValidator(0, 0, 0, DatatypeValidator::ID, manager)
00036 {}
00037 
00038 IDDatatypeValidator::IDDatatypeValidator(
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::ID, manager)
00045 {
00046     init(enums, manager);
00047 }
00048 
00049 IDDatatypeValidator::~IDDatatypeValidator()
00050 {}
00051 
00052 DatatypeValidator* IDDatatypeValidator::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) IDDatatypeValidator(this, facets, enums, finalSet, manager);
00061 }
00062 
00063 IDDatatypeValidator::IDDatatypeValidator(
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 IDDatatypeValidator::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     // storing IDs to the global ID table
00085     if (context)
00086     {
00087         context->addId(content);
00088     }
00089 
00090 }
00091 
00092 void IDDatatypeValidator::checkValueSpace(const XMLCh* const content
00093                                           , MemoryManager* const manager)
00094 {
00095     //
00096     // 3.3.8 check must: "NCName"
00097     //
00098     if ( !XMLChar1_0::isValidNCName(content, XMLString::stringLen(content)) )
00099     {
00100         ThrowXMLwithMemMgr1(InvalidDatatypeValueException
00101                 , XMLExcepts::VALUE_Invalid_NCName
00102                 , content
00103                 , manager);
00104     }
00105 
00106 }
00107 
00108 /***
00109  * Support for Serialization/De-serialization
00110  ***/
00111 
00112 IMPL_XSERIALIZABLE_TOCREATE(IDDatatypeValidator)
00113 
00114 void IDDatatypeValidator::serialize(XSerializeEngine& serEng)
00115 {
00116     StringDatatypeValidator::serialize(serEng);
00117 }
00118 
00119 XERCES_CPP_NAMESPACE_END
00120