015875bdc845bb5676ab75a7ebea9fde6a98b601
[sdc.git] /
1 /*
2  * Copyright © 2016-2017 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 org.openecomp.sdc.logging.api.Logger;
20 import org.openecomp.sdc.logging.provider.LoggingServiceProvider;
21 import org.slf4j.MDC;
22
23 import java.util.Objects;
24 import java.util.concurrent.Callable;
25
26 /**
27  * @author evitaliy
28  * @since 13/09/2016.
29  */
30 public class SLF4JLoggingServiceProvider implements LoggingServiceProvider {
31
32     private static final String KEY_CANNOT_BE_NULL = "Key cannot be null";
33
34     @Override
35     public Logger getLogger(String className) {
36         Objects.requireNonNull(className, "Name cannot be null");
37         return new SLF4JLoggerWrapper(className);
38     }
39
40     @Override
41     public Logger getLogger(Class<?> clazz) {
42         Objects.requireNonNull(clazz, "Class cannot be null");
43         return new SLF4JLoggerWrapper(clazz);
44     }
45
46     @Override
47     public void put(String key, String value) {
48         Objects.requireNonNull(key, KEY_CANNOT_BE_NULL);
49         MDC.put(key, value);
50     }
51
52     @Override
53     public String get(String key) {
54         Objects.requireNonNull(key, KEY_CANNOT_BE_NULL);
55         return MDC.get(key);
56     }
57
58     @Override
59     public void remove(String key) {
60         Objects.requireNonNull(key, KEY_CANNOT_BE_NULL);
61         MDC.remove(key);
62     }
63
64     @Override
65     public void clear() {
66         MDC.clear();
67     }
68
69     @Override
70     public Runnable toRunnable(Runnable runnable) {
71         Objects.requireNonNull(runnable, "Runnable cannot be null");
72         return new MDCRunnableWrapper(runnable);
73     }
74
75     @Override
76     public <V> Callable<V> toCallable(Callable<V> callable) {
77         Objects.requireNonNull(callable, "Runnable cannot be null");
78         return new MDCCallableWrapper<>(callable);
79     }
80
81     @Override
82     public String toString() {
83         return this.getClass().getName();
84     }
85 }