9d4d507ac5fa43088834bc1e902a34091b8edb84
[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.slf4j;
18
19 import java.util.Objects;
20 import java.util.concurrent.Callable;
21 import org.openecomp.sdc.logging.api.ContextData;
22 import org.openecomp.sdc.logging.api.Logger;
23 import org.openecomp.sdc.logging.spi.LoggingServiceProvider;
24
25 /**
26  * Uses SLF4J as backend for logging service.
27  *
28  * @author evitaliy
29  * @since 13 Sep 2016
30  */
31 public class SLF4JLoggingServiceProvider implements LoggingServiceProvider {
32
33     @Override
34     public Logger getLogger(String className) {
35         Objects.requireNonNull(className, "Name cannot be null");
36         return new SLF4JLoggerWrapper(className);
37     }
38
39     @Override
40     public Logger getLogger(Class<?> clazz) {
41         Objects.requireNonNull(clazz, "Class cannot be null");
42         return new SLF4JLoggerWrapper(clazz);
43     }
44
45     @Override
46     public void put(ContextData contextData) {
47         Objects.requireNonNull(contextData, "Context data cannot be null");
48         MDCDelegate.put(RequestContextProvider.from(contextData), new GlobalContextProvider());
49     }
50
51     @Override
52     public ContextData get() {
53         return RequestContextProvider.to(MDCDelegate.get());
54     }
55
56     @Override
57     public void clear() {
58         MDCDelegate.clear();
59     }
60
61     @Override
62     public Runnable copyToRunnable(Runnable runnable) {
63         Objects.requireNonNull(runnable, "Runnable cannot be null");
64         return new MDCRunnableWrapper(runnable);
65     }
66
67     @Override
68     public <V> Callable<V> copyToCallable(Callable<V> callable) {
69         Objects.requireNonNull(callable, "Runnable cannot be null");
70         return new MDCCallableWrapper<>(callable);
71     }
72
73     @Override
74     public String toString() {
75         return this.getClass().getName();
76     }
77 }