59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2001-2006
|
|
* DecisionSoft Limited. All rights reserved.
|
|
* Copyright (c) 2004-2006
|
|
* Progress Software Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2006
|
|
* Oracle. All rights reserved.
|
|
*
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* $Id: XQCastableAs.hpp,v 1.9 2007/02/07 12:12:54 jpcs Exp $
|
|
*/
|
|
|
|
#ifndef _XQCASTABLEAS_HPP
|
|
#define _XQCASTABLEAS_HPP
|
|
|
|
#include <xqilla/framework/XQillaExport.hpp>
|
|
|
|
#include <xqilla/ast/ASTNodeImpl.hpp>
|
|
#include <xqilla/runtime/SingleResult.hpp>
|
|
|
|
class SequenceType;
|
|
|
|
class XQILLA_API XQCastableAs : public ASTNodeImpl
|
|
{
|
|
public:
|
|
XQCastableAs(ASTNode* expr, SequenceType* exprType, XPath2MemoryManager* memMgr);
|
|
|
|
virtual Result createResult(DynamicContext* context, int flags=0) const;
|
|
virtual ASTNode* staticResolution(StaticContext *context);
|
|
virtual ASTNode *staticTyping(StaticContext *context);
|
|
|
|
const ASTNode *getExpression() const;
|
|
const SequenceType *getSequenceType() const;
|
|
bool isPrimitive() const { return _isPrimitive; }
|
|
AnyAtomicType::AtomicObjectType getTypeIndex() const { return _typeIndex; }
|
|
|
|
void setExpression(ASTNode *item);
|
|
|
|
protected:
|
|
class CastableAsResult : public SingleResult
|
|
{
|
|
public:
|
|
CastableAsResult(const XQCastableAs *di);
|
|
|
|
Item::Ptr getSingleResult(DynamicContext *context) const;
|
|
std::string asString(DynamicContext *context, int indent) const;
|
|
|
|
private:
|
|
const XQCastableAs *_di;
|
|
};
|
|
|
|
ASTNode* _expr;
|
|
SequenceType* _exprType;
|
|
bool _isPrimitive;
|
|
AnyAtomicType::AtomicObjectType _typeIndex;
|
|
};
|
|
|
|
#endif // _XQCASTABLEAS_HPP
|