src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/RuntimeUtil.java

changeset 286
f50545b5e2f1
child 368
0989ad8c0860
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/RuntimeUtil.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,133 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.sun.xml.internal.bind.v2.runtime;
    1.30 +
    1.31 +import java.util.Collections;
    1.32 +import java.util.HashMap;
    1.33 +import java.util.Map;
    1.34 +
    1.35 +import javax.xml.bind.ValidationEvent;
    1.36 +import javax.xml.bind.annotation.adapters.XmlAdapter;
    1.37 +import javax.xml.bind.helpers.PrintConversionEventImpl;
    1.38 +import javax.xml.bind.helpers.ValidationEventImpl;
    1.39 +import javax.xml.bind.helpers.ValidationEventLocatorImpl;
    1.40 +
    1.41 +import com.sun.xml.internal.bind.util.ValidationEventLocatorExImpl;
    1.42 +
    1.43 +import org.xml.sax.SAXException;
    1.44 +
    1.45 +
    1.46 +/**
    1.47 + * @author Kohsuke Kawaguchi
    1.48 + */
    1.49 +public class RuntimeUtil {
    1.50 +    /**
    1.51 +     * XmlAdapter for printing arbitrary object by using {@link Object#toString()}.
    1.52 +     */
    1.53 +    public static final class ToStringAdapter extends XmlAdapter<String,Object> {
    1.54 +        public Object unmarshal(String s) {
    1.55 +            throw new UnsupportedOperationException();
    1.56 +        }
    1.57 +
    1.58 +        public String marshal(Object o) {
    1.59 +            if(o==null)     return null;
    1.60 +            return o.toString();
    1.61 +        }
    1.62 +    }
    1.63 +
    1.64 +    /**
    1.65 +     * Map from {@link Class} objects representing primitive types
    1.66 +     * to {@link Class} objects representing their boxed types.
    1.67 +     * <p>
    1.68 +     * e.g., int -> Integer.
    1.69 +     */
    1.70 +    public static final Map<Class,Class> boxToPrimitive;
    1.71 +
    1.72 +    /**
    1.73 +     * Reverse map of {@link #boxToPrimitive}.
    1.74 +     */
    1.75 +    public static final Map<Class,Class> primitiveToBox;
    1.76 +
    1.77 +    static {
    1.78 +        Map<Class,Class> b = new HashMap<Class,Class>();
    1.79 +        b.put(Byte.TYPE,Byte.class);
    1.80 +        b.put(Short.TYPE,Short.class);
    1.81 +        b.put(Integer.TYPE,Integer.class);
    1.82 +        b.put(Long.TYPE,Long.class);
    1.83 +        b.put(Character.TYPE,Character.class);
    1.84 +        b.put(Boolean.TYPE,Boolean.class);
    1.85 +        b.put(Float.TYPE,Float.class);
    1.86 +        b.put(Double.TYPE,Double.class);
    1.87 +        b.put(Void.TYPE,Void.class);
    1.88 +
    1.89 +        primitiveToBox = Collections.unmodifiableMap(b);
    1.90 +
    1.91 +        Map<Class,Class> p = new HashMap<Class,Class>();
    1.92 +        for( Map.Entry<Class,Class> e :  b.entrySet() )
    1.93 +            p.put(e.getValue(),e.getKey());
    1.94 +
    1.95 +        boxToPrimitive = Collections.unmodifiableMap(p);
    1.96 +    }
    1.97 +
    1.98 +    /**
    1.99 +     * Reports a print conversion error while marshalling.
   1.100 +     */
   1.101 +    public static void handlePrintConversionException(
   1.102 +        Object caller, Exception e, XMLSerializer serializer ) throws SAXException {
   1.103 +
   1.104 +        if( e instanceof SAXException )
   1.105 +            // assume this exception is not from application.
   1.106 +            // (e.g., when a marshaller aborts the processing, this exception
   1.107 +            //        will be thrown)
   1.108 +            throw (SAXException)e;
   1.109 +
   1.110 +        ValidationEvent ve = new PrintConversionEventImpl(
   1.111 +            ValidationEvent.ERROR, e.getMessage(),
   1.112 +            new ValidationEventLocatorImpl(caller), e );
   1.113 +        serializer.reportError(ve);
   1.114 +    }
   1.115 +
   1.116 +    /**
   1.117 +     * Reports that the type of an object in a property is unexpected.
   1.118 +     */
   1.119 +    public static void handleTypeMismatchError( XMLSerializer serializer,
   1.120 +            Object parentObject, String fieldName, Object childObject ) throws SAXException {
   1.121 +
   1.122 +         ValidationEvent ve = new ValidationEventImpl(
   1.123 +            ValidationEvent.ERROR, // maybe it should be a fatal error.
   1.124 +             Messages.TYPE_MISMATCH.format(
   1.125 +                getTypeName(parentObject),
   1.126 +                fieldName,
   1.127 +                getTypeName(childObject) ),
   1.128 +            new ValidationEventLocatorExImpl(parentObject,fieldName) );
   1.129 +
   1.130 +        serializer.reportError(ve);
   1.131 +    }
   1.132 +
   1.133 +    private static String getTypeName( Object o ) {
   1.134 +        return o.getClass().getName();
   1.135 +    }
   1.136 +}

mercurial