2 * Copyright © 2016-2018 European Support Limited
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.openecomp.sdc.logging.api;
19 import java.util.Objects;
20 import java.util.concurrent.Callable;
21 import org.openecomp.sdc.logging.spi.LoggingContextService;
24 * <p>Factory to hide a concrete, framework-specific implementation of diagnostic context.</p>
26 * <p>The service used by this factory must implement {@link LoggingContextService}. If no implementation has been
27 * configured or could be instantiated, a <b>no-op context service</b> will be used, and <b>no context</b> will be
28 * stored or propagated. No errors will be generated, so that the application can still work (albeit without proper
33 * @see LoggingContextService
36 public class LoggingContext {
38 private static final LoggingContextService SERVICE =
39 ServiceBinder.getContextServiceBinding().orElse(new NoOpLoggingContextService());
41 private LoggingContext() {
42 // prevent instantiation
45 public static void put(ContextData contextData) {
46 SERVICE.put(contextData);
49 public static ContextData get() {
53 public static void clear() {
57 public static Runnable copyToRunnable(Runnable runnable) {
58 return SERVICE.copyToRunnable(runnable);
61 public static <V> Callable<V> copyToCallable(Callable<V> callable) {
62 return SERVICE.copyToCallable(callable);
65 private static class NoOpLoggingContextService implements LoggingContextService {
67 private static final ContextData EMPTY_CONTEXT = ContextData.builder().build();
70 public void put(ContextData contextData) {
71 Objects.requireNonNull(contextData, "Context data cannot be null");
75 public ContextData get() {
85 public Runnable copyToRunnable(Runnable runnable) {
86 Objects.requireNonNull(runnable, "Runnable cannot be null");
91 public <V> Callable<V> copyToCallable(Callable<V> callable) {
92 Objects.requireNonNull(callable, "Callable cannot be null");