Standalone TCA with EELF Logger
[dcaegen2/analytics/tca-gen2.git] / eelf-logger / eelf-logger-logback-impl / src / main / java / org / onap / dcae / utils / eelf / logger / logback / log / DebugLogImpl.java
1 /*
2  * ================================================================================
3  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ============LICENSE_END=========================================================
17  *
18  */
19
20 package org.onap.dcae.utils.eelf.logger.logback.log;
21
22
23 import org.onap.dcae.utils.eelf.logger.api.info.LogLevelCategory;
24 import org.onap.dcae.utils.eelf.logger.api.log.DebugLog;
25 import org.onap.dcae.utils.eelf.logger.api.spec.DebugLogSpec;
26 import org.onap.dcae.utils.eelf.logger.api.spec.OptionalLogSpec;
27 import org.onap.dcae.utils.eelf.logger.logback.utils.LogUtils;
28 import org.slf4j.Logger;
29
30
31 /**
32  * Debug Log Logback Implementation
33  *
34  * @author Rajiv Singla
35  */
36 public class DebugLogImpl implements DebugLog {
37
38     private final Logger logger;
39     private final Class<?> clazz;
40
41     public DebugLogImpl(final Logger logger, final Class<?> clazz) {
42         this.logger = logger;
43         this.clazz = clazz;
44     }
45
46     @Override
47     public void log(final LogLevelCategory logLevelCategory, final String message, final DebugLogSpec debugLogSpec,
48                     final OptionalLogSpec optionalLogSpec, final String... args) {
49
50         // if log level category is null throw an exception
51         if (logLevelCategory == null) {
52             throw new IllegalArgumentException("Log level category must not be null");
53         }
54
55         LogUtils.CUSTOM_MDC_MAP.put(LogUtils.LOG_LEVEL_CATEGORY_KEY, logLevelCategory);
56         LogUtils.CUSTOM_MDC_MAP.put(LogUtils.DEBUG_LOG_SPEC_KEY, debugLogSpec);
57         LogUtils.CUSTOM_MDC_MAP.put(LogUtils.LOGGER_CLASS_KEY, clazz);
58         // optional fields
59         LogUtils.CUSTOM_MDC_MAP.put(LogUtils.OPTIONAL_LOG_SPEC_KEY, optionalLogSpec);
60
61         // log with normalized log level category
62         LogUtils.logWithLogLevel(logLevelCategory, logger, LogUtils.DEBUG_LOG_MARKER, message, args);
63
64         // clean up
65         LogUtils.CUSTOM_MDC_MAP.remove(LogUtils.LOG_LEVEL_CATEGORY_KEY);
66         LogUtils.CUSTOM_MDC_MAP.remove(LogUtils.DEBUG_LOG_SPEC_KEY);
67         LogUtils.CUSTOM_MDC_MAP.remove(LogUtils.LOGGER_CLASS_KEY);
68         LogUtils.CUSTOM_MDC_MAP.remove(LogUtils.OPTIONAL_LOG_SPEC_KEY);
69
70     }
71
72     @Override
73     public void log(final LogLevelCategory logLevelCategory, final String message, final DebugLogSpec debugLogSpec,
74                     final String... args) {
75         log(logLevelCategory, message, debugLogSpec, null, args);
76     }
77
78     @Override
79     public void debug(final String message, final DebugLogSpec debugLogSpec, final OptionalLogSpec optionalLogSpec,
80                       final String... args) {
81         log(LogLevelCategory.DEBUG, message, debugLogSpec, optionalLogSpec, args);
82     }
83
84     @Override
85     public void debug(final String message, final DebugLogSpec debugLogSpec, final String... args) {
86         debug(message, debugLogSpec, null, args);
87     }
88 }