325N/A/*
325N/A * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
325N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A *
325N/A * This code is free software; you can redistribute it and/or modify it
325N/A * under the terms of the GNU General Public License version 2 only, as
325N/A * published by the Free Software Foundation. Oracle designates this
325N/A * particular file as subject to the "Classpath" exception as provided
325N/A * by Oracle in the LICENSE file that accompanied this code.
325N/A *
325N/A * This code is distributed in the hope that it will be useful, but WITHOUT
325N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A * version 2 for more details (a copy is included in the LICENSE file that
325N/A * accompanied this code).
325N/A *
325N/A * You should have received a copy of the GNU General Public License version
325N/A * 2 along with this work; if not, write to the Free Software Foundation,
325N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A *
325N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A * or visit www.oracle.com if you need additional information or have any
325N/A * questions.
325N/A */
325N/A/*
325N/A * Copyright (C) 2004-2011
325N/A *
325N/A * Permission is hereby granted, free of charge, to any person obtaining a copy
325N/A * of this software and associated documentation files (the "Software"), to deal
325N/A * in the Software without restriction, including without limitation the rights
325N/A * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
325N/A * copies of the Software, and to permit persons to whom the Software is
325N/A * furnished to do so, subject to the following conditions:
325N/A *
325N/A * The above copyright notice and this permission notice shall be included in
325N/A * all copies or substantial portions of the Software.
325N/A *
325N/A * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
325N/A * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
325N/A * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
325N/A * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
325N/A * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
325N/A * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
325N/A * THE SOFTWARE.
325N/A */
325N/Apackage com.sun.xml.internal.rngom.digested;
325N/A
325N/Aimport com.sun.xml.internal.rngom.ast.builder.Annotations;
325N/Aimport com.sun.xml.internal.rngom.ast.builder.BuildException;
325N/Aimport com.sun.xml.internal.rngom.ast.builder.IncludedGrammar;
325N/Aimport com.sun.xml.internal.rngom.ast.builder.SchemaBuilder;
325N/Aimport com.sun.xml.internal.rngom.ast.builder.Scope;
325N/Aimport com.sun.xml.internal.rngom.ast.om.Location;
325N/Aimport com.sun.xml.internal.rngom.ast.om.ParsedNameClass;
325N/Aimport com.sun.xml.internal.rngom.ast.om.ParsedPattern;
325N/Aimport com.sun.xml.internal.rngom.nc.NameClass;
325N/Aimport com.sun.xml.internal.rngom.parse.Parseable;
325N/Aimport org.xml.sax.Locator;
325N/A
325N/Aimport java.util.List;
325N/Aimport java.util.ArrayList;
325N/A
325N/A/**
325N/A * @author Kohsuke Kawaguchi (kk@kohsuke.org)
325N/A */
325N/Afinal class PatternParseable implements Parseable {
325N/A private final DPattern pattern;
325N/A
325N/A public PatternParseable(DPattern p) {
325N/A this.pattern = p;
325N/A }
325N/A
325N/A public ParsedPattern parse(SchemaBuilder sb) throws BuildException {
325N/A return (ParsedPattern)pattern.accept(new Parser(sb));
325N/A }
325N/A
325N/A public ParsedPattern parseInclude(String uri, SchemaBuilder f, IncludedGrammar g, String inheritedNs) throws BuildException {
325N/A throw new UnsupportedOperationException();
325N/A }
325N/A
325N/A public ParsedPattern parseExternal(String uri, SchemaBuilder f, Scope s, String inheritedNs) throws BuildException {
325N/A throw new UnsupportedOperationException();
325N/A }
325N/A
325N/A
325N/A private static class Parser implements DPatternVisitor<ParsedPattern> {
325N/A private final SchemaBuilder sb;
325N/A
325N/A public Parser(SchemaBuilder sb) {
325N/A this.sb = sb;
325N/A }
325N/A
325N/A private Annotations parseAnnotation(DPattern p) {
325N/A // TODO
325N/A return null;
325N/A }
325N/A
325N/A private Location parseLocation(DPattern p) {
325N/A Locator l = p.getLocation();
325N/A return sb.makeLocation(l.getSystemId(),l.getLineNumber(),l.getColumnNumber());
325N/A }
325N/A
325N/A private ParsedNameClass parseNameClass(NameClass name) {
325N/A // TODO: reparse the name class
325N/A return name;
325N/A }
325N/A
325N/A
325N/A
325N/A public ParsedPattern onAttribute(DAttributePattern p) {
325N/A return sb.makeAttribute(
325N/A parseNameClass(p.getName()),
325N/A (ParsedPattern)p.getChild().accept(this),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onChoice(DChoicePattern p) {
325N/A List<ParsedPattern> kids = new ArrayList<ParsedPattern>();
325N/A for( DPattern c=p.firstChild(); c!=null; c=c.next )
325N/A kids.add( (ParsedPattern)c.accept(this) );
325N/A return sb.makeChoice(kids,parseLocation(p),null);
325N/A }
325N/A
325N/A public ParsedPattern onData(DDataPattern p) {
325N/A // TODO
325N/A return null;
325N/A }
325N/A
325N/A public ParsedPattern onElement(DElementPattern p) {
325N/A return sb.makeElement(
325N/A parseNameClass(p.getName()),
325N/A (ParsedPattern)p.getChild().accept(this),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onEmpty(DEmptyPattern p) {
325N/A return sb.makeEmpty(
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onGrammar(DGrammarPattern p) {
325N/A // TODO
325N/A return null;
325N/A }
325N/A
325N/A public ParsedPattern onGroup(DGroupPattern p) {
325N/A List<ParsedPattern> kids = new ArrayList<ParsedPattern>();
325N/A for( DPattern c=p.firstChild(); c!=null; c=c.next )
325N/A kids.add( (ParsedPattern)c.accept(this) );
325N/A return sb.makeGroup(kids,parseLocation(p),null);
325N/A }
325N/A
325N/A public ParsedPattern onInterleave(DInterleavePattern p) {
325N/A List<ParsedPattern> kids = new ArrayList<ParsedPattern>();
325N/A for( DPattern c=p.firstChild(); c!=null; c=c.next )
325N/A kids.add( (ParsedPattern)c.accept(this) );
325N/A return sb.makeInterleave(kids,parseLocation(p),null);
325N/A }
325N/A
325N/A public ParsedPattern onList(DListPattern p) {
325N/A return sb.makeList(
325N/A (ParsedPattern)p.getChild().accept(this),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onMixed(DMixedPattern p) {
325N/A return sb.makeMixed(
325N/A (ParsedPattern)p.getChild().accept(this),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onNotAllowed(DNotAllowedPattern p) {
325N/A return sb.makeNotAllowed(
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onOneOrMore(DOneOrMorePattern p) {
325N/A return sb.makeOneOrMore(
325N/A (ParsedPattern)p.getChild().accept(this),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onOptional(DOptionalPattern p) {
325N/A return sb.makeOptional(
325N/A (ParsedPattern)p.getChild().accept(this),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onRef(DRefPattern p) {
325N/A // TODO
325N/A return null;
325N/A }
325N/A
325N/A public ParsedPattern onText(DTextPattern p) {
325N/A return sb.makeText(
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onValue(DValuePattern p) {
325N/A return sb.makeValue(
325N/A p.getDatatypeLibrary(),
325N/A p.getType(),
325N/A p.getValue(),
325N/A p.getContext(),
325N/A p.getNs(),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A
325N/A public ParsedPattern onZeroOrMore(DZeroOrMorePattern p) {
325N/A return sb.makeZeroOrMore(
325N/A (ParsedPattern)p.getChild().accept(this),
325N/A parseLocation(p),
325N/A parseAnnotation(p) );
325N/A }
325N/A }
325N/A}