/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2010-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.jersey.core.header; import com.sun.jersey.core.header.reader.HttpHeaderReader; import javax.ws.rs.Consumes; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import java.text.ParseException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Common media types and functionality. * * @author Paul.Sandoz@Sun.Com */ public class MediaTypes { private MediaTypes() { } public final static MediaType WADL = MediaType.valueOf("application/vnd.sun.wadl+xml"); public final static MediaType FAST_INFOSET = MediaType.valueOf("application/fastinfoset"); public final static boolean typeEquals(MediaType m1, MediaType m2) { if (m1 == null || m2 == null) return false; return m1.getSubtype().equalsIgnoreCase(m2.getSubtype()) && m1.getType().equalsIgnoreCase(m2.getType()); } public final static boolean intersects(List<? extends MediaType> ml1, List<? extends MediaType> ml2) { for (MediaType m1: ml1) { for (MediaType m2 : ml2) { if (MediaTypes.typeEquals(m1, m2)) return true; } } return false; } /** * Comparator for media types. * <p> * x/y < x/* < *\\/* */ public static final Comparator<MediaType> MEDIA_TYPE_COMPARATOR = new Comparator<MediaType>() { public int compare(MediaType o1, MediaType o2) { if (o1.getType().equals("*") && !o2.getType().equals("*")) { return 1; } if (o2.getType().equals("*") && !o1.getType().equals("*")) { return -1; } if (o1.getSubtype().equals("*") && !o2.getSubtype().equals("*")) { return 1; } if (o2.getSubtype().equals("*") && !o1.getSubtype().equals("*")) { return -1; } return 0; } }; /** * Get the most specific media type from a pair of media types. The most * specific media type is the media type from the pair that has least * wild cards present. * * @param m1 the first media type * @param m2 the second media type * @return the most specific media type. If the media types are equally * specific then the first media type is returned. */ public static final MediaType mostSpecific(MediaType m1, MediaType m2) { if (m1.isWildcardSubtype() && !m2.isWildcardSubtype()) return m2; if (m1.isWildcardType() && !m2.isWildcardType()) return m2; return m1; } /** * Comparator for lists of media types. * <p> * The least specific content type of each list is obtained and then compared * using {@link #MEDIA_TYPE_COMPARATOR}. * <p> * Assumes each list is already ordered according to {@link #MEDIA_TYPE_COMPARATOR} * and therefore the least specific media type is at the end of the list. */ public static final Comparator<List<? extends MediaType>> MEDIA_TYPE_LIST_COMPARATOR = new Comparator<List<? extends MediaType>>() { public int compare(List<? extends MediaType> o1, List<? extends MediaType> o2) { return MEDIA_TYPE_COMPARATOR.compare(getLeastSpecific(o1), getLeastSpecific(o2)); } public MediaType getLeastSpecific(List<? extends MediaType> l) { return l.get(l.size() - 1); } }; /** * The general media type corresponding to *\\/*. * */ public static final MediaType GENERAL_MEDIA_TYPE = new MediaType("*", "*"); /** * A singleton list containing the general media type. */ public static final List<MediaType> GENERAL_MEDIA_TYPE_LIST = createMediaTypeList(); private static List<MediaType> createMediaTypeList() { return Collections.singletonList(GENERAL_MEDIA_TYPE); } /** * The general acceptable media type corresponding to *\\/*. * */ public static final AcceptableMediaType GENERAL_ACCEPT_MEDIA_TYPE = new AcceptableMediaType("*", "*"); /** * A singleton list containing the general acceptable media type. */ public static final List<AcceptableMediaType> GENERAL_ACCEPT_MEDIA_TYPE_LIST = createAcceptMediaTypeList(); private static List<AcceptableMediaType> createAcceptMediaTypeList() { return Collections.singletonList(GENERAL_ACCEPT_MEDIA_TYPE); } /** * Create a list of media type from the {@link Consumes} annotation. * <p> * @param mime the Consumes annotation. * @return the list of {@link MediaType}, ordered according to {@link #MEDIA_TYPE_COMPARATOR}. */ public static List<MediaType> createMediaTypes(Consumes mime) { if (mime == null) { return GENERAL_MEDIA_TYPE_LIST; } return createMediaTypes(mime.value()); } /** * Create a list of media type from the Produces annotation. * <p> * @param mime the Produces annotation. * @return the list of {@link MediaType}, ordered according to {@link #MEDIA_TYPE_COMPARATOR}. */ public static List<MediaType> createMediaTypes(Produces mime) { if (mime == null) { return GENERAL_MEDIA_TYPE_LIST; } return createMediaTypes(mime.value()); } /** * Create a list of media type from an array of media types. * <p> * @param mediaTypes the array of meda types. * @return the list of {@link MediaType}, ordered according to {@link #MEDIA_TYPE_COMPARATOR}. */ public static List<MediaType> createMediaTypes(String[] mediaTypes) { List<MediaType> l = new ArrayList<MediaType>(); try { for (String mediaType : mediaTypes) { HttpHeaderReader.readMediaTypes(l, mediaType); } Collections.sort(l, MEDIA_TYPE_COMPARATOR); return l; } catch (ParseException ex) { throw new IllegalArgumentException(ex); } } /** * Comparator for lists of quality source media types. */ public static final Comparator<QualitySourceMediaType> QUALITY_SOURCE_MEDIA_TYPE_COMPARATOR = new Comparator<QualitySourceMediaType>() { public int compare(QualitySourceMediaType o1, QualitySourceMediaType o2) { int i = o2.getQualitySource() - o1.getQualitySource(); if (i != 0) return i; return MediaTypes.MEDIA_TYPE_COMPARATOR.compare(o1, o2); } }; /** * A singleton list containing the general media type. */ public static final List<MediaType> GENERAL_QUALITY_SOURCE_MEDIA_TYPE_LIST = createQualitySourceMediaTypeList(); private static List<MediaType> createQualitySourceMediaTypeList() { return Collections.<MediaType>singletonList(new QualitySourceMediaType("*", "*")); } /** * Create a list of quality source media type from the Produces annotation. * <p> * @param mime the Produces annotation. * @return the list of {@link QualitySourceMediaType}, ordered according to * {@link #QUALITY_SOURCE_MEDIA_TYPE_COMPARATOR}. */ public static List<MediaType> createQualitySourceMediaTypes(Produces mime) { if (mime == null) { return GENERAL_QUALITY_SOURCE_MEDIA_TYPE_LIST; } return new ArrayList<MediaType>(createQualitySourceMediaTypes(mime.value())); } /** * Create a list of quality source media type from an array of media types. * <p> * @param mediaTypes the array of meda types. * @return the list of {@link QualitySourceMediaType}, ordered according to * the quality source as the primary key and {@link #MEDIA_TYPE_COMPARATOR} * as the secondary key. */ public static List<QualitySourceMediaType> createQualitySourceMediaTypes(String[] mediaTypes) { try { return HttpHeaderReader.readQualitySourceMediaType(mediaTypes); } catch (ParseException ex) { throw new IllegalArgumentException(ex); } } private static Map<String, MediaType> mediaTypeCache = new HashMap<String, MediaType>() { { put("application", new MediaType("application", MediaType.MEDIA_TYPE_WILDCARD)); put("multipart", new MediaType("multipart", MediaType.MEDIA_TYPE_WILDCARD)); put("text", new MediaType("text", MediaType.MEDIA_TYPE_WILDCARD)); } }; /** * Returns MediaType with wildcard in subtype. * * @param mediaType original MediaType. * @return MediaType with wildcard in subtype. */ public static MediaType getTypeWildCart(MediaType mediaType) { MediaType mt = mediaTypeCache.get(mediaType.getType()); if(mt == null) { mt = new MediaType(mediaType.getType(), MediaType.MEDIA_TYPE_WILDCARD); } return mt; } }