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(
40 new NoOpLoggingContextService());
42 private LoggingContext() {
43 // prevent instantiation
46 public static void put(ContextData contextData) {
47 SERVICE.put(contextData);
50 public static void clear() {
54 public static Runnable copyToRunnable(Runnable runnable) {
55 return SERVICE.copyToRunnable(runnable);
58 public static <V> Callable<V> copyToCallable(Callable<V> callable) {
59 return SERVICE.copyToCallable(callable);
62 private static class NoOpLoggingContextService implements LoggingContextService {
65 public void put(ContextData contextData) {
66 Objects.requireNonNull(contextData, "Context data cannot be null");
75 public Runnable copyToRunnable(Runnable runnable) {
76 Objects.requireNonNull(runnable, "Runnable cannot be null");
81 public <V> Callable<V> copyToCallable(Callable<V> callable) {
82 Objects.requireNonNull(callable, "Callable cannot be null");