All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.xsom.SCD Maven / Gradle / Ivy

Go to download

XML Schema Object Model (XSOM) is a Java library that allows applications to easily parse XML Schema documents and inspect information in them. It is expected to be useful for applications that need to take XML Schema as an input.

The newest version!
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.xsom;

/*-
 * #%L
 * XSOM
 * %%
 * Copyright (C) 2019 - 2020 Entur
 * %%
 * Licensed under the EUPL, Version 1.1 or – as soon they will be
 * approved by the European Commission - subsequent versions of the
 * EUPL (the "Licence");
 * 
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 * 
 * http://ec.europa.eu/idabc/eupl5
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and
 * limitations under the Licence.
 * #L%
 */

import com.sun.xml.xsom.impl.scd.Iterators;
import com.sun.xml.xsom.impl.scd.ParseException;
import com.sun.xml.xsom.impl.scd.SCDImpl;
import com.sun.xml.xsom.impl.scd.SCDParser;
import com.sun.xml.xsom.impl.scd.Step;
import com.sun.xml.xsom.impl.scd.TokenMgrError;
import com.sun.xml.xsom.util.DeferedCollection;

import javax.xml.namespace.NamespaceContext;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

/**
 * Schema Component Designator (SCD).
 *
 * 

* SCD for schema is what XPath is for XML. SCD allows you to select a schema component(s) * from a schema component(s). * *

* See XML Schema: Component Designators. * This implementation is based on 03/29/2005 working draft. * * @author Kohsuke Kawaguchi */ public abstract class SCD { /** * Parses the string representation of SCD. * *

* This method involves parsing the path expression and preparing the in-memory * structure, so this is useful when you plan to use the same SCD against * different context node multiple times. * *

* If you want to evaluate SCD just once, use {@link XSComponent#select} methods. * * @param path * the string representation of SCD, such as "/foo/bar". * @param nsContext * Its {@link NamespaceContext#getNamespaceURI(String)} is used * to resolve prefixes in the SCD to the namespace URI. */ public static SCD create(String path, NamespaceContext nsContext) throws java.text.ParseException { try { SCDParser p = new SCDParser(path,nsContext); List list = p.RelativeSchemaComponentPath(); return new SCDImpl(path,list.toArray(new Step[list.size()])); } catch (TokenMgrError e) { throw setCause(new java.text.ParseException(e.getMessage(), -1 ),e); } catch (ParseException e) { throw setCause(new java.text.ParseException(e.getMessage(), e.currentToken.beginColumn ),e); } } private static java.text.ParseException setCause(java.text.ParseException e, Throwable x) { e.initCause(x); return e; } /** * Evaluates the SCD against the given context node and * returns the matched nodes. * * @return * could be empty but never be null. */ public final Collection select(XSComponent contextNode) { return new DeferedCollection(select(Iterators.singleton(contextNode))); } /** * Evaluates the SCD against the whole schema and * returns the matched nodes. * *

* This method is here because {@link XSSchemaSet} * doesn't implement {@link XSComponent}. * * @return * could be empty but never be null. */ public final Collection select(XSSchemaSet contextNode) { return select(contextNode.getSchemas()); } /** * Evaluates the SCD against the given context node and * returns the matched node. * * @return * null if the SCD didn't match anything. If the SCD matched more than one node, * the first one will be returned. */ public final XSComponent selectSingle(XSComponent contextNode) { Iterator r = select(Iterators.singleton(contextNode)); if(r.hasNext()) return r.next(); return null; } /** * Evaluates the SCD against the whole schema set and * returns the matched node. * * @return * null if the SCD didn't match anything. If the SCD matched more than one node, * the first one will be returned. */ public final XSComponent selectSingle(XSSchemaSet contextNode) { Iterator r = select(contextNode.iterateSchema()); if(r.hasNext()) return r.next(); return null; } /** * Evaluates the SCD against the given set of context nodes and * returns the matched nodes. * * @param contextNodes * {@link XSComponent}s that represent the context node against * which {@link SCD} is evaluated. * * @return * could be empty but never be null. */ public abstract Iterator select(Iterator contextNodes); /** * Evaluates the SCD against the given set of context nodes and * returns the matched nodes. * * @param contextNodes * {@link XSComponent}s that represent the context node against * which {@link SCD} is evaluated. * * @return * could be empty but never be null. */ public final Collection select(Collection contextNodes) { return new DeferedCollection(select(contextNodes.iterator())); } /** * Returns the textual SCD representation as given to {@link SCD#create(String, NamespaceContext)}. */ public abstract String toString(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy