aboutsummaryrefslogtreecommitdiffstats
path: root/eelf-logging/src/main/java/org/onap/aai/cl/eelf/AaiLoggerAdapter.java
blob: 88b2f11cb4c6fa07b96d5ed1cb7ee23bff0b4064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * Copyright © 2017 Amdocs
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 */
package org.onap.aai.cl.eelf;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFLogger.Level;
import com.att.eelf.i18n.EELFResolvableErrorEnum;
import com.att.eelf.i18n.EELFResourceManager;
import org.onap.aai.cl.api.LogFields;
import org.onap.aai.cl.api.LogLine;
import org.onap.aai.cl.api.LogLine.LogLineType;
import org.onap.aai.cl.api.Logger;
import org.onap.aai.cl.mdc.MdcOverride;

/**
 * This class provides a logging implementation which wraps the EELF logging
 * framework.
 */
public class AaiLoggerAdapter implements Logger {

    public static final String BAD_ENUM_MSG = "UNRECOGNIZABLE ERROR CODE ";

    /** Field name to use for the message portion of our log lines. */
    public static final String MESSAGE_PREFIX = "Msg";

    /**
     * A place holder to use for fields in the standardized log message that we
     * are not explicitly setting.
     */
    private static final String NOT_APPLICABLE = "na";

    /**
     * The instance of the actual EELF logger that we will be sending our messages
     * to.
     */
    private final EELFLogger eelfLogger;

    /**
     * This indicates the logging format type. It is used for deciding the string
     * builder for constructing standardized log statements.
     */
    private final LogLineType logLineType;

    /** An identifier for the component that is generating the log statements. */
    private String component = NOT_APPLICABLE;

    /**
     * Creates a new instance of the {@link AaiLoggerAdapter}, backed by the
     * supplied {@link EELFLogger} instance.
     *
     * @param eelfLogger
     *          - The instance of {@link EELFLogger} that this logger will invoke.
     */
    public AaiLoggerAdapter(EELFLogger eelfLogger, LogLineType logLineType, String componentName) {

        // Store the supplied EELFLogger instance.
        this.eelfLogger = eelfLogger;
        this.logLineType = logLineType;
        component = componentName;
    }

    @Override
    public boolean isTraceEnabled() {
        return eelfLogger.isTraceEnabled();
    }

    @Override
    public boolean isInfoEnabled() {
        return eelfLogger.isInfoEnabled();
    }

    @Override
    public boolean isErrorEnabled() {
        return eelfLogger.isErrorEnabled();
    }

    @Override
    public boolean isWarnEnabled() {
        return eelfLogger.isWarnEnabled();
    }

    @Override
    public boolean isDebugEnabled() {
        return eelfLogger.isDebugEnabled();
    }

    /**
     * Sets a number of the common fields which prefix all standard log
     * statements.
     */
    private void initLogLine(LogLine logLine, String level, String logCode, String msg,
        LogFields fields) {
        logLine.init(component, logCode, level, msg, fields, new MdcOverride());
    }

    private void initLogLine(LogLine logLine, String level, String logCode, String msg,
        LogFields fields, MdcOverride override) {
        logLine.init(component, logCode, level, msg, fields, override);
    }

    @Override
    public void info(Enum logCode, String... arguments) {
        info(logCode, new LogFields(), arguments);
    }

    @Override
    public void info(Enum logCode, LogFields fields, String... arguments) {

        // We expect our error code to be compatible with the templating
        // functionality provided by the EELF framework, so make sure
        // that this is the case before we try to decode our error code.
        if (logCode instanceof LogMessageEnum) {
            // Cast our error code enum to make the EELF framework happy.
            LogMessageEnum eelfLogCode = (LogMessageEnum) logCode;

            // Initialize the log line
            LogLine logLine = getLogLine();
            if (logLine != null) {
                initLogLine(logLine, Level.INFO.toString(), EELFResourceManager.getIdentifier(eelfLogCode),
                    EELFResourceManager.format(eelfLogCode, arguments),
                    fields == null ? new LogFields() : fields);

                // Pass our log string to the EELF logging framework.
                eelfLogger.info(logLine.getFormattedLine());
            }
        } else {
            eelfLogger.error(BAD_ENUM_MSG + logCode);
        }
    }

    @Override
    public void info(Enum logCode, LogFields fields, MdcOverride override, String... arguments) {

        // We expect our error code to be compatible with the templating
        // functionality provided by the EELF framework, so make sure
        // that this is the case before we try to decode our error code.
        if (logCode instanceof LogMessageEnum) {
            // Cast our error code enum to make the EELF framework happy.
            LogMessageEnum eelfLogCode = (LogMessageEnum) logCode;

            // Initialize the log line
            LogLine logLine = getLogLine();
            if (logLine != null) {
                initLogLine(logLine, Level.INFO.toString(), EELFResourceManager.getIdentifier(eelfLogCode),
                    EELFResourceManager.format(eelfLogCode, arguments),
                    fields == null ? new LogFields() : fields, override);

                // Pass our log string to the EELF logging framework.
                eelfLogger.info(logLine.getFormattedLine());
            }
        } else {
            eelfLogger.error(BAD_ENUM_MSG + logCode);
        }
    }

    @Override
    public void debug(String message) {
        // Initialize the log line
        LogLine logLine = getLogLine();
        if (logLine != null) {
            initLogLine(logLine, Level.DEBUG.toString(), "", message, new LogFields());

            // Pass our log string the the EELF logging framework.
            eelfLogger.debug(logLine.getFormattedLine());
        }
    }

    @Override
    public void debug(Enum logCode, String... arguments) {
        debug(logCode, new LogFields(), arguments);
    }

    @Override
    public void debug(Enum logCode, LogFields fields, String... arguments) {

        // We expect our log code to be compatible with the templating
        // functionality provided by the EELF framework, so make sure
        // that this is the case before we try to decode it.
        if (logCode instanceof LogMessageEnum) {
            // Cast our error code enum to make the EELF framework happy.
            LogMessageEnum eelfLogCode = (LogMessageEnum) logCode;

            // Initialize the log lineLogLine logLine = getLogLine()
            LogLine logLine = getLogLine();
            if (logLine != null) {
                initLogLine(logLine, Level.DEBUG.toString(), EELFResourceManager.getIdentifier(eelfLogCode),
                    EELFResourceManager.format(eelfLogCode, arguments),
                    fields == null ? new LogFields() : fields);

                // Pass our log string to the EELF logging framework.
                eelfLogger.debug(logLine.getFormattedLine());
            }
        } else {
            eelfLogger.error(BAD_ENUM_MSG + logCode);
        }
    }

    @Override
    public void warn(Enum logCode, String... arguments) {
        warn(logCode, new LogFields(), arguments);
    }

    @Override
    public void warn(Enum logCode, LogFields fields, String... arguments) {

        // We expect our log code to be compatible with the templating
        // functionality provided by the EELF framework, so make sure
        // that this is the case before we try to decode our it.
        if (logCode instanceof LogMessageEnum) {
            // Cast our error code enum to make the EELF framework happy.
            LogMessageEnum eelfLogCode = (LogMessageEnum) logCode;

            // Initialize the log line
            LogLine logLine = getLogLine();
            if (logLine != null) {
                initLogLine(logLine, Level.WARN.toString(), EELFResourceManager.getIdentifier(eelfLogCode),
                    EELFResourceManager.format(eelfLogCode, arguments),
                    fields == null ? new LogFields() : fields);

                // Pass our log string to the EELF logging framework.
                eelfLogger.warn(logLine.getFormattedLine());
            }
        } else {
            eelfLogger.error(BAD_ENUM_MSG + logCode);
        }
    }

    @Override
    public void trace(Enum logCode, String... arguments) {
        trace(logCode, new LogFields(), arguments);
    }

    @Override
    public void trace(Enum logCode, LogFields fields, String... arguments) {

        // We expect our log code to be compatible with the templating
        // functionality provided by the EELF framework, so make sure
        // that this is the case before we try to decode our it.
        if (logCode instanceof LogMessageEnum) {
            // Cast our error code enum to make the EELF framework happy.
            LogMessageEnum eelfLogCode = (LogMessageEnum) logCode;

            // Initialize the log line
            LogLine logLine = getLogLine();
            if (logLine != null) {
                initLogLine(logLine, Level.TRACE.toString(), EELFResourceManager.getIdentifier(eelfLogCode),
                    EELFResourceManager.format(eelfLogCode, arguments),
                    fields == null ? new LogFields() : fields);

                // Pass our log string to the EELF logging framework.
                eelfLogger.trace(logLine.getFormattedLine());
            }
        } else {
            eelfLogger.error(BAD_ENUM_MSG + logCode);
        }
    }

    @Override
    public void error(Enum logCode, String... arguments) {
        error(logCode, new LogFields(), arguments);
    }

    @Override
    public void error(Enum logCode, LogFields fields, String... arguments) {

        // We expect our log code to be compatible with the templating
        // functionality provided by the EELF framework, so make sure
        // that this is the case before we try to decode it.
        if (logCode instanceof LogMessageEnum) {

            // Cast our error code enum to make the EELF framework happy.
            LogMessageEnum eelfLogCode = (LogMessageEnum) logCode;

            // Initialize the log line
            LogLine logLine = getLogLine();
            if (logLine != null) {
                initLogLine(logLine, Level.ERROR.toString(), EELFResourceManager.getIdentifier(eelfLogCode),
                    EELFResourceManager.format(eelfLogCode, arguments),
                    fields == null ? new LogFields() : fields);

                // Pass our log string to the EELF logging framework.
                eelfLogger.error(logLine.getFormattedLine());
            }
        } else {
            eelfLogger.error(BAD_ENUM_MSG + logCode);
        }
    }

    @Override
    public void error(Enum logCode, Throwable ex, String... arguments) {
        error(logCode, new LogFields(), ex, arguments);
    }

    @Override
    public void error(Enum logCode, LogFields fields, Throwable ex, String... arguments) {

        // We expect our log code to be compatible with the templating
        // functionality provided by the EELF framework, so make sure
        // that this is the case before we try to decode it.
        if (logCode instanceof LogMessageEnum) {
            // Cast our error code enum to make the EELF framework happy.
            LogMessageEnum eelfLogCode = (LogMessageEnum) logCode;

            // Initialize the log line
            LogLine logLine = getLogLine();
            if (logLine != null) {
                initLogLine(logLine, Level.ERROR.toString(), EELFResourceManager.getIdentifier(eelfLogCode),
                    EELFResourceManager.format(eelfLogCode, arguments),
                    fields == null ? new LogFields() : fields);

                // Pass our log string to the EELF logging framework.
                eelfLogger.error(logLine.getFormattedLine(), ex);
            }
        } else {
            eelfLogger.error(BAD_ENUM_MSG + logCode);
        }
    }

    @Override
    public String formatMsg(Enum logCode, String... arguments) {
        return EELFResourceManager.getMessage((EELFResolvableErrorEnum) logCode, arguments);
    }

    private LogLine getLogLine() {
        if (logLineType == LogLineType.AUDIT) {
            return new AuditLogLine();
        }

        if (logLineType == LogLineType.ERROR) {
            return new ErrorLogLine();
        }

        if (logLineType == LogLineType.METRICS) {
            return new MetricsLogLine();
        }

        eelfLogger.warn("Unsupported LogLineType: " + logLineType);
        return null;
    }
}