コード例 #1
0
		public DefaultFunctionCall (XQueryStaticContext ctx, string name, int minArgs, int maxArgs, SequenceType type, ExprSequence args)
			: base (GetName (name), args)
		{
			this.type = type;
			this.minArgs = minArgs;
			this.maxArgs = maxArgs;
		}
コード例 #2
0
ファイル: XQueryStaticContext.cs プロジェクト: nlhepler/mono
		// Don't keep XQueryCompileOptions and XQueryMainModule
		// inside this class. I don't want them affect this instance
		// by being modified externally after the compilation.

		public XQueryStaticContext (
			XQueryCompileOptions options,
			XQueryCompileContext compileContext,
			ExprSequence queryBody,
			XmlSchemaSet inScopeSchemas,
			IDictionary inScopeVariables,
			XQueryFunctionTable functionSignatures,
			IXmlNamespaceResolver nsResolver,
			string defaultFunctionNamespace,
			bool preserveWhitespace,
			bool constructionSpace,
			bool defaultOrdered,
			string baseUri,
			Evidence evidence,
			XQueryCommandImpl commandImpl)
		{
			// Initialization phase.
			compat = options.Compatibility;
			nameTable = options.NameTable;
			this.queryBody = queryBody;
			this.nsResolver = nsResolver;
			this.defaultFunctionNamespace = defaultFunctionNamespace;
//			elemNSManager = new XmlNamespaceManager (nameTable);
//			funcNSManager = new XmlNamespaceManager (nameTable);
			xqueryFlagger = options.XQueryFlagger;
			xqueryStaticFlagger = options.XQueryStaticFlagger;
//			xqueryResolver = options.KnownDocumentResolver;
			knownCollections = (IDictionary) options.KnownCollections.Clone ();
			functions = functionSignatures;
			this.compileContext = compileContext;
			this.inScopeSchemas = inScopeSchemas;
			this.inScopeVariables = inScopeVariables;
			this.preserveWhitespace = preserveWhitespace;
			this.preserveConstructionSpace = constructionSpace;
			this.defaultOrdered = defaultOrdered;
			this.baseUri = baseUri;
			this.defaultCollation = options.DefaultCollation;
			// FIXME: set contextItemStaticType
			// FIXME: set extDocResolver

			this.evidence = evidence;
			this.commandImpl = commandImpl;
		}
コード例 #3
0
ファイル: XQueryFunction.cs プロジェクト: nlhepler/mono
		public virtual XPathSequence Evaluate (XPathSequence iter, ExprSequence args)
		{
			object [] instParams = new object [args.Count];
			for (int i = 0; i < args.Count; i++) {
				XPathSequence val = args [i].Evaluate (iter);
				instParams [i] = Args [i].Type.ToRuntimeType (val);
			}
			object o = Invoke (iter, instParams);
			if (o == null)
				return new XPathEmptySequence (iter.Context);
			if (o is XPathSequence)
				return (XPathSequence) o;
			XPathItem item = o as XPathItem;
			if (item == null)
				item = new XPathAtomicValue (o, ReturnType.SchemaType);
			return new SingleItemIterator (item, iter.Context);
		}
コード例 #4
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public FilterStepExpr (ExprSingle expr, ExprSequence predicate)
		{
			this.expr = expr;
			this.predicate = predicate;
		}
コード例 #5
0
ファイル: XPathSequence.cs プロジェクト: nlhepler/mono
		private FilteredIterator (FilteredIterator other)
			: base (other)
		{
			left = other.left.Clone ();
			filter = other.filter;
		}
コード例 #6
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlCommentConstructor (ExprSequence content)
			: base (content)
		{
		}
コード例 #7
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlPIConstructor (ExprSequence name, ExprSequence content)
			: base (content)
		{
			this.nameExpr = name;
		}
コード例 #8
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public ParenthesizedExpr (ExprSequence expr)
		{
			if (expr == null)
				expr = new ExprSequence ();
			this.expr = expr;
		}
コード例 #9
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlDocConstructor (ExprSequence content)
			: base (content)
		{
		}
コード例 #10
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public IfExpr (ExprSequence condition, ExprSingle trueExpr, ExprSingle falseExpr)
		{
			this.condition = new ParenthesizedExpr (condition);
			this.trueExpr = trueExpr;
			this.falseExpr = falseExpr;
		}
コード例 #11
0
ファイル: XQueryModuleProlog.cs プロジェクト: nlhepler/mono
		public XQueryVariable (XmlQualifiedName name, SequenceType type, ExprSequence varBody)
		{
			this.name = name;
			this.type = type;
			this.varBody = varBody; // might be null (just declaration).
		}
コード例 #12
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public FLWORExpr (ForLetClauseCollection forlet, ExprSequence whereClause, OrderSpecList orderBy, ExprSingle ret)
		{
			this.fl = forlet;
			if (whereClause != null)
				this.whereClause = new ParenthesizedExpr (whereClause);
			this.orderBy = orderBy;
			this.ret = ret;
		}
コード例 #13
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public TypeswitchExpr (ExprSequence switchExpr, CaseClauseList caseList, XmlQualifiedName defaultVarName, ExprSingle defaultReturn)
		{
			this.switchExpr = switchExpr;
			this.caseList = caseList;
			this.defaultVarName = defaultVarName;
			this.defaultReturn = defaultReturn;
		}
コード例 #14
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public OrderSpecifiedExpr (ExprSequence expr, bool ordered)
		{
			this.ordered = ordered;
			this.expr = expr;
		}
コード例 #15
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public FunctionCallExpr (XmlQualifiedName name, ExprSequence args)
			: base (name, args)
		{
		}
コード例 #16
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public FunctionCallExprBase (XmlQualifiedName name, ExprSequence args)
		{
			if (args == null)
				throw new ArgumentNullException (String.Format ("Function argument expressions for {0} is null.", name));
			this.name = name;
			this.args = args;
		}
コード例 #17
0
ファイル: XQueryFunction.cs プロジェクト: nlhepler/mono
		internal XQueryUserFunction (XmlQualifiedName name,
			XQueryFunctionArgument [] parameters,
			ExprSequence expr,
			SequenceType returnType)
			: base (name, parameters, returnType)
		{
			this.expr = expr;
		}
コード例 #18
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlAttrConstructor (XmlQualifiedName name, ExprSequence content)
			: base (content)
		{
			this.name = name;
		}
コード例 #19
0
ファイル: XQueryFunction.cs プロジェクト: nlhepler/mono
		public override XPathSequence Evaluate (XPathSequence iter, ExprSequence args)
		{
			for (int i = 0; i < Args.Length; i++)
				iter.Context.PushVariable (Args [i].Name, args [i].Evaluate (iter));
			XPathSequence seq = new ExprSequenceIterator (iter, expr);
			for (int i = 0; i < Args.Length; i++)
				iter.Context.PopVariable ();
			return seq;
		}
コード例 #20
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public EnclosedExpr (ExprSequence expr)
		{
			this.expr = expr;
		}
コード例 #21
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlElemConstructor (ExprSequence name, ExprSequence content)
			: base (content)
		{
			this.name = XmlQualifiedName.Empty;
			this.nameExpr = name;
		}
コード例 #22
0
		public FnNodeNameCall (XQueryStaticContext ctx, ExprSequence args)
			: base (ctx, "node-name", 1, 1, SequenceType.Create (XmlSchemaSimpleType.XsQName, Occurence.Optional), args)
		{
		}
コード例 #23
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlNSConstructor (string prefix, ExprSequence content)
			: base (content)
		{
		}
コード例 #24
0
ファイル: XQueryASTCompiler.cs プロジェクト: nlhepler/mono
		private ExprSequence CompileExprSequence (ExprSequence expr)
		{
			for (int i = 0; i < expr.Count; i++)
				expr [i] = expr [i].Compile (this);
			return expr;
		}
コード例 #25
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlConstructorExpr (ExprSequence content)
		{
			this.content = content;
		}
コード例 #26
0
ファイル: XPathSequence.cs プロジェクト: nlhepler/mono
		public ExprSequenceIterator (XPathSequence iter, ExprSequence expr)
			: base (iter.Context)
		{
			contextSequence = iter;
			this.expr = expr;
		}
コード例 #27
0
ファイル: XQueryExpression.cs プロジェクト: Profit0004/mono
		public XmlPIConstructor (string name, ExprSequence content)
			: base (content)
		{
			this.name = name;
		}
コード例 #28
0
ファイル: XPathSequence.cs プロジェクト: nlhepler/mono
		private ExprSequenceIterator (ExprSequenceIterator other)
			: base (other)
		{
			if (other.iter != null)
				iter = other.iter.Clone ();
			expr = other.expr;
			contextSequence = other.contextSequence;
			currentExprIndex = other.currentExprIndex;
		}
コード例 #29
0
ファイル: XPathSequence.cs プロジェクト: nlhepler/mono
		public FilteredIterator (XPathSequence iter, FilterStepExpr source)
			: base (iter.Context)
		{
			left = source.Expr.Evaluate (iter);
			filter = source.Predicate;
		}
コード例 #30
0
ファイル: XPath2Expression.cs プロジェクト: nlhepler/mono
		public ValidateExpr (XmlSchemaContentProcessing schemaMode, ExprSequence expr)
		{
			this.schemaMode = schemaMode;
			this.expr = expr;
		}