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

com.sun.tools.xjc.reader.relaxng.RELAXNGCompiler Maven / Gradle / Ivy

There is a newer version: 4.0.5
Show newest version
/*
 * Copyright (c) 1997, 2023 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.tools.xjc.reader.relaxng;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

import javax.xml.namespace.QName;

import com.sun.codemodel.JCodeModel;
import com.sun.codemodel.JPackage;
import com.sun.tools.xjc.Options;
import com.sun.tools.xjc.model.CBuiltinLeafInfo;
import com.sun.tools.xjc.model.CClassInfo;
import com.sun.tools.xjc.model.CClassInfoParent;
import com.sun.tools.xjc.model.CEnumConstant;
import com.sun.tools.xjc.model.CEnumLeafInfo;
import com.sun.tools.xjc.model.CNonElement;
import com.sun.tools.xjc.model.CTypeInfo;
import com.sun.tools.xjc.model.Model;
import com.sun.tools.xjc.model.TypeUse;
import com.sun.tools.xjc.reader.Ring;
import org.glassfish.jaxb.core.api.impl.NameConverter;

import com.sun.tools.rngom.digested.DChoicePattern;
import com.sun.tools.rngom.digested.DDefine;
import com.sun.tools.rngom.digested.DElementPattern;
import com.sun.tools.rngom.digested.DPattern;
import com.sun.tools.rngom.digested.DPatternWalker;
import com.sun.tools.rngom.digested.DRefPattern;
import com.sun.tools.rngom.digested.DValuePattern;
import com.sun.tools.rngom.nc.NameClass;
import com.sun.tools.rngom.xml.util.WellKnownNamespaces;

/**
 * @author Kohsuke Kawaguchi
 */
public final class RELAXNGCompiler {
    /**
     * Schema to compile.
     */
    final DPattern grammar;

    /**
     * All named patterns in this schema.
     */
    final Set defs;

    final Options opts;

    final Model model;

    /**
     * The package to which we generate the code into.
     */
    final JPackage pkg;

    final Map datatypes = new HashMap<>();

    /**
     * Patterns that are mapped to Java concepts.
     *
     * 

* The value is an array because we map elements with finite names * to multiple classes. * * TODO: depending on the type of the key, the type of the values can be further * restricted. Make this into its own class to represent those constraints better. */ final Map classes = new HashMap<>(); /** * Classes that need to be bound. * * The value is the content model to be bound. */ final Map bindQueue = new HashMap<>(); final TypeUseBinder typeUseBinder = new TypeUseBinder(this); public static Model build(DPattern grammar, JCodeModel codeModel, Options opts ) { RELAXNGCompiler compiler = new RELAXNGCompiler(grammar, codeModel, opts); Ring ring = Ring.begin(); try { Ring.add(compiler.model); Ring.add(codeModel); compiler.compile(); return compiler.model; } finally { Ring.end(ring); } } public RELAXNGCompiler(DPattern grammar, JCodeModel codeModel, Options opts) { this.grammar = grammar; this.opts = opts; this.model = new Model(opts,codeModel, NameConverter.smart,opts.classNameAllocator,null); datatypes.put("",DatatypeLib.BUILTIN); datatypes.put(WellKnownNamespaces.XML_SCHEMA_DATATYPES,DatatypeLib.XMLSCHEMA); // find all defines DefineFinder deff = new DefineFinder(); grammar.accept(deff); this.defs = deff.defs; if(opts.defaultPackage2!=null) pkg = codeModel._package(opts.defaultPackage2); else if(opts.defaultPackage!=null) pkg = codeModel._package(opts.defaultPackage); else pkg = codeModel.rootPackage(); } private void compile() { // decide which patterns to map to classes promoteElementDefsToClasses(); promoteTypeSafeEnums(); // TODO: promote patterns with to classes // TODO: promote 'type' patterns to classes promoteTypePatternsToClasses(); for (Map.Entry e : bindQueue.entrySet()) bindContentModel(e.getKey(),e.getValue()); } private void bindContentModel(CClassInfo clazz, DPattern pattern) { // first we decide which patterns in it map to properties // then we process each of them by using RawTypeSetBuilder. // much like DefaultParticleBinder in XSD pattern.accept(new ContentModelBinder(this,clazz)); } private void promoteTypeSafeEnums() { // we'll be trying a lot of choices, // and most of them will not be type-safe enum. // using the same list improves the memory efficiency. List members = new ArrayList<>(); OUTER: for( DDefine def : defs ) { DPattern p = def.getPattern(); if (p instanceof DChoicePattern) { DChoicePattern cp = (DChoicePattern) p; members.clear(); // check if the choice consists of all value patterns // and that they are of the same datatype DValuePattern vp = null; for( DPattern child : cp ) { if(child instanceof DValuePattern) { DValuePattern c = (DValuePattern) child; if(vp==null) vp=c; else { if(!vp.getDatatypeLibrary().equals(c.getDatatypeLibrary()) || !vp.getType().equals(c.getType()) ) continue OUTER; // different type name } members.add(new CEnumConstant( model.getNameConverter().toConstantName(c.getValue()), null, c.getValue(), null, null/*TODO*/, c.getLocation() )); } else continue OUTER; // not a value } if(members.isEmpty()) continue; // empty choice CNonElement base = CBuiltinLeafInfo.STRING; DatatypeLib lib = datatypes.get(vp.getNs()); if(lib!=null) { TypeUse use = lib.get(vp.getType()); if(use instanceof CNonElement) base = (CNonElement)use; } CEnumLeafInfo xducer = new CEnumLeafInfo(model, null, new CClassInfoParent.Package(pkg), def.getName(), base, new ArrayList<>(members), null, null/*TODO*/, cp.getLocation()); classes.put(cp,new CTypeInfo[]{xducer}); } } } private void promoteElementDefsToClasses() { // look for elements among named patterns for( DDefine def : defs ) { DPattern p = def.getPattern(); if (p instanceof DElementPattern) { DElementPattern ep = (DElementPattern) p; mapToClass(ep); } } // also look for root elements grammar.accept(new DPatternWalker() { @Override public Void onRef(DRefPattern p) { return null; // stop recursion } @Override public Void onElement(DElementPattern p) { mapToClass(p); return null; } }); } private void mapToClass(DElementPattern p) { NameClass nc = p.getName(); if(nc.isOpen()) return; // infinite name. can't map to a class. Set names = nc.listNames(); CClassInfo[] types = new CClassInfo[names.size()]; int i=0; for( QName n : names ) { // TODO: read class names from customization String name = model.getNameConverter().toClassName(n.getLocalPart()); bindQueue.put( types[i++] = new CClassInfo(model,pkg,name,p.getLocation(),null,n,null,null/*TODO*/), p.getChild() ); } classes.put(p,types); } /** * Looks for named patterns that are not bound to classes so far, * but that can be bound to classes. */ private void promoteTypePatternsToClasses() { // for( DDefine def : defs ) { // ; // // def.getPattern().accept(new InheritanceChecker()); // } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy