/xbird-open/main/src/java/xbird/xquery/expr/dyna/ValidateOp.java

http://xbird.googlecode.com/ · Java · 89 lines · 48 code · 12 blank · 29 comment · 2 complexity · a22d3239072bcb0422d543ad7b9436f5 MD5 · raw file

  1. /*
  2. * @(#)$Id: ValidateOp.java 3619 2008-03-26 07:23:03Z yui $
  3. *
  4. * Copyright 2006-2008 Makoto YUI
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Contributors:
  19. * Makoto YUI - initial implementation
  20. */
  21. package xbird.xquery.expr.dyna;
  22. import xbird.xquery.XQueryException;
  23. import xbird.xquery.dm.value.Item;
  24. import xbird.xquery.dm.value.Sequence;
  25. import xbird.xquery.expr.AbstractXQExpression;
  26. import xbird.xquery.expr.XQExpression;
  27. import xbird.xquery.meta.*;
  28. import xbird.xquery.parser.XQueryParserVisitor;
  29. /**
  30. *
  31. * <DIV lang="en"></DIV>
  32. * <DIV lang="ja"></DIV>
  33. *
  34. * @author Makoto YUI (yuin405+xbird@gmail.com)
  35. * @link http://www.w3.org/TR/xquery/#id-validate
  36. * @link http://www.w3.org/TR/xquery-semantics/#sec_validate_expr
  37. */
  38. public final class ValidateOp extends AbstractXQExpression {
  39. private static final long serialVersionUID = 3230093526066669323L;
  40. private final boolean isStrict;
  41. private final XQExpression expr;
  42. public ValidateOp(XQExpression expr) {
  43. this(expr, true);
  44. }
  45. public ValidateOp(XQExpression expr, boolean strict) {
  46. this.expr = expr;
  47. this.isStrict = strict;
  48. }
  49. public XQExpression visit(XQueryParserVisitor visitor, XQueryContext ctxt) throws XQueryException {
  50. return visitor.visit(this, ctxt);
  51. }
  52. public XQExpression getExpression() {
  53. return this.expr;
  54. }
  55. public boolean isStrict() {
  56. return this.isStrict;
  57. }
  58. @Override
  59. public String toString() {
  60. final StringBuilder buf = new StringBuilder();
  61. buf.append("validate ");
  62. if (isStrict == false) {
  63. buf.append("lax ");
  64. }
  65. buf.append('{');
  66. buf.append(expr.toString());
  67. buf.append('}');
  68. return buf.toString();
  69. }
  70. public XQExpression staticAnalysis(StaticContext statEnv) throws XQueryException {
  71. assert (!_analyzed);
  72. return expr.staticAnalysis(statEnv);
  73. }
  74. public Sequence<? extends Item> eval(Sequence<? extends Item> contextSeq, DynamicContext dynEnv) throws XQueryException {
  75. throw new UnsupportedOperationException("ValidationExpr is not supported.");
  76. }
  77. }