XQuilla/include/xqilla/ast/XQValidate.hpp

80 lines
3.1 KiB
C++
Raw Normal View History

2020-02-17 21:05:20 +00:00
/*
2020-02-17 21:22:42 +00:00
* Copyright (c) 2001, 2008,
2020-02-17 21:05:20 +00:00
* DecisionSoft Limited. All rights reserved.
2020-02-17 21:24:47 +00:00
* Copyright (c) 2004, 2018 Oracle and/or its affiliates. All rights reserved.
2020-02-17 21:23:16 +00:00
*
2020-02-17 21:05:20 +00:00
*
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: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);
2020-02-17 21:17:06 +00:00
virtual ASTNode *staticTypingImpl(StaticContext *context);
virtual Result createResult(DynamicContext* context, int flags=0) const;
virtual EventGenerator::Ptr generateEvents(EventHandler *events, DynamicContext *context,
2020-02-17 21:11:31 +00:00
bool preserveNS, bool preserveType) const;
2020-02-17 21:17:06 +00:00
ASTNode *getExpression() const { return expr_; }
2020-02-17 21:11:31 +00:00
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