src/share/jaxws_classes/com/sun/xml/internal/ws/dump/MessageDumpingFeature.java

Wed, 27 Apr 2016 01:27:09 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:27:09 +0800
changeset 0
373ffda63c9a
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/jaxws/
changeset: 657:d47a47f961ee
tag: jdk8u25-b17

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation. Oracle designates this
aoqi@0 8 * particular file as subject to the "Classpath" exception as provided
aoqi@0 9 * by Oracle in the LICENSE file that accompanied this code.
aoqi@0 10 *
aoqi@0 11 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 14 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 15 * accompanied this code).
aoqi@0 16 *
aoqi@0 17 * You should have received a copy of the GNU General Public License version
aoqi@0 18 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 20 *
aoqi@0 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 22 * or visit www.oracle.com if you need additional information or have any
aoqi@0 23 * questions.
aoqi@0 24 */
aoqi@0 25
aoqi@0 26 package com.sun.xml.internal.ws.dump;
aoqi@0 27
aoqi@0 28 import com.sun.xml.internal.ws.api.FeatureConstructor;
aoqi@0 29 import com.sun.org.glassfish.gmbal.ManagedAttribute;
aoqi@0 30 import com.sun.org.glassfish.gmbal.ManagedData;
aoqi@0 31
aoqi@0 32 import javax.xml.ws.WebServiceFeature;
aoqi@0 33 import java.util.Queue;
aoqi@0 34 import java.util.concurrent.atomic.AtomicBoolean;
aoqi@0 35 import java.util.logging.Level;
aoqi@0 36
aoqi@0 37 /**
aoqi@0 38 *
aoqi@0 39 * @author Marek Potociar (marek.potociar at sun.com)
aoqi@0 40 */
aoqi@0 41 @ManagedData
aoqi@0 42 public final class MessageDumpingFeature extends WebServiceFeature {
aoqi@0 43
aoqi@0 44 public static final String ID = "com.sun.xml.internal.ws.messagedump.MessageDumpingFeature";
aoqi@0 45 //
aoqi@0 46 private static final Level DEFAULT_MSG_LOG_LEVEL = Level.FINE;
aoqi@0 47 //
aoqi@0 48 private final Queue<String> messageQueue;
aoqi@0 49 private final AtomicBoolean messageLoggingStatus;
aoqi@0 50 private final String messageLoggingRoot;
aoqi@0 51 private final Level messageLoggingLevel;
aoqi@0 52
aoqi@0 53 public MessageDumpingFeature() {
aoqi@0 54 this(null, null, true);
aoqi@0 55 }
aoqi@0 56
aoqi@0 57 public MessageDumpingFeature(String msgLogRoot, Level msgLogLevel, boolean storeMessages) {
aoqi@0 58 this.messageQueue = (storeMessages) ? new java.util.concurrent.ConcurrentLinkedQueue<String>() : null;
aoqi@0 59 this.messageLoggingStatus = new AtomicBoolean(true);
aoqi@0 60 this.messageLoggingRoot = (msgLogRoot != null && msgLogRoot.length() > 0) ? msgLogRoot : MessageDumpingTube.DEFAULT_MSGDUMP_LOGGING_ROOT;
aoqi@0 61 this.messageLoggingLevel = (msgLogLevel != null) ? msgLogLevel : DEFAULT_MSG_LOG_LEVEL;
aoqi@0 62
aoqi@0 63 super.enabled = true;
aoqi@0 64 }
aoqi@0 65
aoqi@0 66 public MessageDumpingFeature(boolean enabled) {
aoqi@0 67 // this constructor is here just to satisfy JAX-WS specification requirements
aoqi@0 68 this();
aoqi@0 69 super.enabled = enabled;
aoqi@0 70 }
aoqi@0 71
aoqi@0 72 @FeatureConstructor({"enabled", "messageLoggingRoot", "messageLoggingLevel", "storeMessages"})
aoqi@0 73 public MessageDumpingFeature(boolean enabled, String msgLogRoot, String msgLogLevel, boolean storeMessages) {
aoqi@0 74 // this constructor is here just to satisfy JAX-WS specification requirements
aoqi@0 75 this(msgLogRoot, Level.parse(msgLogLevel), storeMessages);
aoqi@0 76
aoqi@0 77 super.enabled = enabled;
aoqi@0 78 }
aoqi@0 79
aoqi@0 80 @Override
aoqi@0 81 @ManagedAttribute
aoqi@0 82 public String getID() {
aoqi@0 83 return ID;
aoqi@0 84 }
aoqi@0 85
aoqi@0 86 public String nextMessage() {
aoqi@0 87 return (messageQueue != null) ? messageQueue.poll() : null;
aoqi@0 88 }
aoqi@0 89
aoqi@0 90 public void enableMessageLogging() {
aoqi@0 91 messageLoggingStatus.set(true);
aoqi@0 92 }
aoqi@0 93
aoqi@0 94 public void disableMessageLogging() {
aoqi@0 95 messageLoggingStatus.set(false);
aoqi@0 96 }
aoqi@0 97
aoqi@0 98 @ManagedAttribute
aoqi@0 99 public boolean getMessageLoggingStatus() {
aoqi@0 100 return messageLoggingStatus.get();
aoqi@0 101 }
aoqi@0 102
aoqi@0 103 @ManagedAttribute
aoqi@0 104 public String getMessageLoggingRoot() {
aoqi@0 105 return messageLoggingRoot;
aoqi@0 106 }
aoqi@0 107
aoqi@0 108 @ManagedAttribute
aoqi@0 109 public Level getMessageLoggingLevel() {
aoqi@0 110 return messageLoggingLevel;
aoqi@0 111 }
aoqi@0 112
aoqi@0 113 boolean offerMessage(String message) {
aoqi@0 114 return (messageQueue != null) ? messageQueue.offer(message) : false;
aoqi@0 115 }
aoqi@0 116 }

mercurial