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

com.sun.xml.ws.client.ResponseContext Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 1997, 2022 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.ws.client;

import com.sun.xml.ws.api.message.Packet;
import com.sun.xml.ws.api.message.AttachmentSet;
import com.sun.xml.ws.api.message.Attachment;

import jakarta.xml.ws.handler.MessageContext;
import jakarta.activation.DataHandler;
import java.util.AbstractMap;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
 * Implements "response context" on top of {@link Packet}.
 *
 * 

* This class creates a read-only {@link Map} view that * gets exposed to client applications after an invocation * is complete. * *

* The design goal of this class is to make it efficient * to create a new {@link ResponseContext}, at the expense * of making some {@link Map} operations slower. This is * justified because the response context is mostly just * used to query a few known values, and operations like * enumeration isn't likely. * *

* Some of the {@link Map} methods requre this class to * build the complete {@link Set} of properties, but we * try to avoid that as much as possible. * * *

 * TODO: are we exposing all strongly-typed fields, or
 * do they have appliation/handler scope notion?
 * 
* * @author Kohsuke Kawaguchi */ @SuppressWarnings({"SuspiciousMethodCalls"}) // IDE doesn't like me calling Map methods with key typed as Object public class ResponseContext extends AbstractMap { private final Packet packet; /** * Lazily computed. */ private Set> entrySet; /** * @param packet * The {@link Packet} to wrap. */ public ResponseContext(Packet packet) { this.packet = packet; } @Override public boolean containsKey(Object key) { if(packet.supports(key)) return packet.containsKey(key); // strongly typed if(packet.invocationProperties.containsKey(key)) // if handler-scope, hide it return !packet.getHandlerScopePropertyNames(true).contains(key); return false; } @Override public Object get(Object key) { if(packet.supports(key)) return packet.get(key); // strongly typed if(packet.getHandlerScopePropertyNames(true).contains(key)) return null; // no such application-scope property Object value = packet.invocationProperties.get(key); //add the attachments from the Message to the corresponding attachment property if(key.equals(MessageContext.INBOUND_MESSAGE_ATTACHMENTS)){ Map atts = (Map) value; if(atts == null) atts = new HashMap<>(); AttachmentSet attSet = packet.getMessage().getAttachments(); for(Attachment att : attSet){ atts.put(att.getContentId(), att.asDataHandler()); } return atts; } return value; } @Override public Object put(String key, Object value) { // response context is read-only throw new UnsupportedOperationException(); } @Override public Object remove(Object key) { // response context is read-only throw new UnsupportedOperationException(); } @Override public void putAll(Map t) { // response context is read-only throw new UnsupportedOperationException(); } @Override public void clear() { // response context is read-only throw new UnsupportedOperationException(); } @Override public Set> entrySet() { if(entrySet==null) { // this is where the worst case happens. we have to clone the whole properties // to get this view. // use TreeSet so that toString() sort them nicely. It's easier for apps. // export application-scope properties Map r = new HashMap<>(packet.invocationProperties); // hide handler-scope properties r.keySet().removeAll(packet.getHandlerScopePropertyNames(true)); // and all strongly typed ones r.putAll(packet.asMap()); entrySet = Collections.unmodifiableSet(r.entrySet()); } return entrySet; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy