2020-02-17 21:05:20 +00:00
|
|
|
/*
|
2020-02-17 21:13:50 +00:00
|
|
|
* Copyright (c) 2001-2008
|
2020-02-17 21:05:20 +00:00
|
|
|
* DecisionSoft Limited. All rights reserved.
|
2020-02-17 21:13:50 +00:00
|
|
|
* Copyright (c) 2004-2008
|
2020-02-17 21:05:20 +00:00
|
|
|
* Oracle. All rights reserved.
|
|
|
|
*
|
2020-02-17 21:12:51 +00:00
|
|
|
* Licensed 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
|
2020-02-17 21:05:20 +00:00
|
|
|
*
|
2020-02-17 21:12:51 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2020-02-17 21:14:54 +00:00
|
|
|
* $Id: XQValidate.hpp 475 2008-01-08 18:47:44Z jpcs $
|
2020-02-17 21:05:20 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-17 21:11:31 +00:00
|
|
|
#ifndef XQVALIDATE_HPP
|
|
|
|
#define XQVALIDATE_HPP
|
2020-02-17 21:05:20 +00:00
|
|
|
|
|
|
|
#include <xqilla/ast/ASTNodeImpl.hpp>
|
2020-02-17 21:11:31 +00:00
|
|
|
#include <xqilla/events/EventHandler.hpp>
|
2020-02-17 21:05:20 +00:00
|
|
|
#include <xqilla/schema/DocumentCache.hpp>
|
|
|
|
|
|
|
|
class XQILLA_API XQValidate : public ASTNodeImpl
|
|
|
|
{
|
|
|
|
public:
|
2020-02-17 21:11:31 +00:00
|
|
|
XQValidate(ASTNode *expr, DocumentCache::ValidationMode mode, XPath2MemoryManager *mm);
|
2020-02-17 21:05:20 +00:00
|
|
|
|
|
|
|
virtual ASTNode* staticResolution(StaticContext *context);
|
|
|
|
virtual ASTNode *staticTyping(StaticContext *context);
|
2020-02-17 21:11:31 +00:00
|
|
|
virtual Sequence createSequence(DynamicContext* context, int flags=0) const;
|
|
|
|
virtual void generateEvents(EventHandler *events, DynamicContext *context,
|
|
|
|
bool preserveNS, bool preserveType) const;
|
|
|
|
|
|
|
|
const ASTNode *getExpression() const { return expr_; }
|
|
|
|
DocumentCache::ValidationMode getMode() const { return mode_; }
|
|
|
|
|
|
|
|
void setExpression(ASTNode *expr) { expr_ = expr; }
|
2020-02-17 21:05:20 +00:00
|
|
|
|
2020-02-17 21:11:31 +00:00
|
|
|
private:
|
|
|
|
ASTNode *expr_;
|
|
|
|
DocumentCache::ValidationMode mode_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class XQILLA_API ValidateArgumentCheckFilter : public EventFilter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ValidateArgumentCheckFilter(EventHandler *next, DocumentCache::ValidationMode mode, DynamicContext *context,
|
|
|
|
const LocationInfo *loc);
|
2020-02-17 21:05:20 +00:00
|
|
|
|
2020-02-17 21:11:31 +00:00
|
|
|
virtual void startDocumentEvent(const XMLCh *documentURI, const XMLCh *encoding);
|
|
|
|
virtual void endDocumentEvent();
|
|
|
|
virtual void startElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname);
|
|
|
|
virtual void endElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname,
|
|
|
|
const XMLCh *typeURI, const XMLCh *typeName);
|
|
|
|
virtual void textEvent(const XMLCh *value);
|
|
|
|
virtual void textEvent(const XMLCh *chars, unsigned int length);
|
|
|
|
virtual void piEvent(const XMLCh *target, const XMLCh *value);
|
|
|
|
virtual void commentEvent(const XMLCh *value);
|
|
|
|
virtual void attributeEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname, const XMLCh *value,
|
|
|
|
const XMLCh *typeURI, const XMLCh *typeName);
|
|
|
|
virtual void namespaceEvent(const XMLCh *prefix, const XMLCh *uri);
|
|
|
|
virtual void atomicItemEvent(AnyAtomicType::AtomicObjectType type, const XMLCh *value, const XMLCh *typeURI,
|
|
|
|
const XMLCh *typeName);
|
2020-02-17 21:05:20 +00:00
|
|
|
|
2020-02-17 21:11:31 +00:00
|
|
|
private:
|
|
|
|
DocumentCache::ValidationMode mode_;
|
|
|
|
const LocationInfo *info_;
|
|
|
|
DynamicContext *context_;
|
|
|
|
bool inDocumentNode_;
|
|
|
|
bool seenDocElem_;
|
|
|
|
unsigned int level_;
|
|
|
|
bool seenOne_;
|
2020-02-17 21:05:20 +00:00
|
|
|
};
|
|
|
|
|
2020-02-17 21:11:31 +00:00
|
|
|
#endif
|