2dc4afdf586b67384fae2e75cd587be2510220b0
[sdc.git] /
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 package org.openecomp.sdc.logging.api;
18
19 import java.util.Objects;
20 import java.util.concurrent.Callable;
21 import org.openecomp.sdc.logging.spi.LoggingContextService;
22
23 /**
24  * <p>Factory to hide a concrete, framework-specific implementation of diagnostic context.</p>
25  *
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
29  * logging).</p>
30  *
31  * @author evitaliy
32  * @see ServiceBinder
33  * @see LoggingContextService
34  * @since 07 Jan 2018
35  */
36 public class LoggingContext {
37
38     private static final LoggingContextService SERVICE =
39         ServiceBinder.getContextServiceBinding().orElse(
40             new NoOpLoggingContextService());
41
42     private LoggingContext() {
43         // prevent instantiation
44     }
45
46     public static void put(ContextData contextData) {
47         SERVICE.put(contextData);
48     }
49
50     public static void clear() {
51         SERVICE.clear();
52     }
53
54     public static Runnable copyToRunnable(Runnable runnable) {
55         return SERVICE.copyToRunnable(runnable);
56     }
57
58     public static <V> Callable<V> copyToCallable(Callable<V> callable) {
59         return SERVICE.copyToCallable(callable);
60     }
61
62     private static class NoOpLoggingContextService implements LoggingContextService {
63
64         @Override
65         public void put(ContextData contextData) {
66             Objects.requireNonNull(contextData, "Context data cannot be null");
67         }
68
69         @Override
70         public void clear() {
71             // no-op
72         }
73
74         @Override
75         public Runnable copyToRunnable(Runnable runnable) {
76             Objects.requireNonNull(runnable, "Runnable cannot be null");
77             return runnable;
78         }
79
80         @Override
81         public <V> Callable<V> copyToCallable(Callable<V> callable) {
82             Objects.requireNonNull(callable, "Callable cannot be null");
83             return callable;
84         }
85     }
86 }