added generic fabric support to SO
[so.git] / common / src / main / java / org / onap / so / logger / LoggerStartupListener.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.logger;
22
23 import java.net.InetAddress;
24 import java.net.UnknownHostException;
25
26 import org.onap.so.utils.UUIDChecker;
27 import org.springframework.stereotype.Component;
28
29 import ch.qos.logback.classic.Level;
30 import ch.qos.logback.classic.Logger;
31 import ch.qos.logback.classic.LoggerContext;
32 import ch.qos.logback.classic.spi.LoggerContextListener;
33 import ch.qos.logback.core.Context;
34 import ch.qos.logback.core.spi.ContextAwareBase;
35 import ch.qos.logback.core.spi.LifeCycle;
36
37 @Component
38 public class LoggerStartupListener extends ContextAwareBase implements LoggerContextListener, LifeCycle {
39
40     private boolean started = false;
41     private static final MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.GENERAL, LoggerStartupListener.class);
42
43     @Override
44     public void start() {
45         if (started) 
46                 return;
47         InetAddress addr= null;
48                 try {
49                         addr = InetAddress.getLocalHost();
50                 } catch (UnknownHostException e) {
51                         LOGGER.error("UnknownHostException",e);
52                         
53                 }    
54         Context context = getContext();
55         if (addr != null) {
56                 context.putProperty("server.name", addr.getHostName());
57         }
58         started = true;
59     }
60
61     @Override
62     public void stop() {
63     }
64
65         @Override
66         public boolean isStarted() {
67                 return started;
68         }
69
70         @Override
71         public boolean isResetResistant() {
72                 return true;
73         }
74
75         @Override
76         public void onLevelChange(Logger arg0, Level arg1) {
77         }
78
79         @Override
80         public void onReset(LoggerContext arg0) {
81         }
82
83         @Override
84         public void onStart(LoggerContext arg0) {
85         }
86
87         @Override
88         public void onStop(LoggerContext arg0) {
89         }
90 }