blob: 94ad91f3566f52781f45b0f968a39b575d8c2c8a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* $Id: IDREFDatatypeValidator.cpp 568078 2007-08-21 11:43:25Z amassari $
*/
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
#include <xercesc/validators/datatype/IDREFDatatypeValidator.hpp>
#include <xercesc/validators/datatype/InvalidDatatypeValueException.hpp>
XERCES_CPP_NAMESPACE_BEGIN
// ---------------------------------------------------------------------------
// Constructors and Destructor
// ---------------------------------------------------------------------------
IDREFDatatypeValidator::IDREFDatatypeValidator(MemoryManager* const manager)
:StringDatatypeValidator(0, 0, 0, DatatypeValidator::IDREF, manager)
{}
IDREFDatatypeValidator::IDREFDatatypeValidator(
DatatypeValidator* const baseValidator
, RefHashTableOf<KVStringPair>* const facets
, RefArrayVectorOf<XMLCh>* const enums
, const int finalSet
, MemoryManager* const manager)
:StringDatatypeValidator(baseValidator, facets, finalSet, DatatypeValidator::IDREF, manager)
{
init(enums, manager);
}
IDREFDatatypeValidator::~IDREFDatatypeValidator()
{}
DatatypeValidator* IDREFDatatypeValidator::newInstance
(
RefHashTableOf<KVStringPair>* const facets
, RefArrayVectorOf<XMLCh>* const enums
, const int finalSet
, MemoryManager* const manager
)
{
return (DatatypeValidator*) new (manager) IDREFDatatypeValidator(this, facets, enums, finalSet, manager);
}
IDREFDatatypeValidator::IDREFDatatypeValidator(
DatatypeValidator* const baseValidator
, RefHashTableOf<KVStringPair>* const facets
, const int finalSet
, const ValidatorType type
, MemoryManager* const manager)
:StringDatatypeValidator(baseValidator, facets, finalSet, type, manager)
{
// do not invoke init() here!!!
}
void IDREFDatatypeValidator::validate(const XMLCh* const content
, ValidationContext* const context
, MemoryManager* const manager)
{
// use StringDatatypeValidator (which in turn, invoke
// the baseValidator) to validate content against
// facets if any.
//
StringDatatypeValidator::validate(content, context, manager);
// this is different from java, since we always add, while
// in java, it is done as told. REVISIT.
//
if (context)
{
context->addIdRef(content);
}
}
void IDREFDatatypeValidator::checkValueSpace(const XMLCh* const content
, MemoryManager* const manager)
{
//
// 3.3.9 check must: "NCName"
//
if ( !XMLString::isValidNCName(content))
{
ThrowXMLwithMemMgr1(InvalidDatatypeValueException
, XMLExcepts::VALUE_Invalid_NCName
, content
, manager);
}
}
/***
* Support for Serialization/De-serialization
***/
IMPL_XSERIALIZABLE_TOCREATE(IDREFDatatypeValidator)
void IDREFDatatypeValidator::serialize(XSerializeEngine& serEng)
{
StringDatatypeValidator::serialize(serEng);
}
XERCES_CPP_NAMESPACE_END
/**
* End of file IDREFDatatypeValidator.cpp
*/