summaryrefslogtreecommitdiffstats
path: root/wso2/logging-sdk/src/main/java/org/openo/log/api/LogMessage.java
blob: 4a215840cf696717e48502ba30bcd25744ced07b (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
/**
 * Copyright 2017 ZTE Corporation.
 *
 * 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.
 */
package org.openo.log.api;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import org.slf4j.Logger;

import org.openo.log.impl.Facitility;
import org.slf4j.LoggerFactory;


/**
 * 
 * @author Huabing Zhao
 *
 */

public class LogMessage implements Serializable {
  private static final Logger LOGGER = LoggerFactory.getLogger(LogMessage.class.getName());

  protected long id = -1;


  protected String detail = null;

  protected String hostname = "";



  private String logType = "";


  protected HashMap<String, Object> extendedFields = null;

  private HashMap<String, String> localeMap = null;



  private static final long serialVersionUID = 200408041651009L;

  public String getDetail() {
    return detail;
  }


  public long getId() {
    return id;
  }

  public String getHostname() {
    return hostname;
  }



  public LogMessage() {}



  public String getLogType() {
    return logType;
  }

  public void setLogType(String logType) {
    this.logType = logType;
  }

  public HashMap<String, Object> getExtendedFields() {
    return extendedFields;
  }

  public void setExtendedFields(HashMap<String, Object> extendedFields) {
    this.extendedFields = extendedFields;
  }

  public HashMap<String, String> getLocaleMap() {
    return this.localeMap;
  }

  public void setLocalMap(HashMap<String, String> localeMap) {
    this.localeMap = localeMap;
  }

  protected void set(String condName, Object condValue) {
    if (condValue != null && !"".equals(condValue)) {
      if (localeMap == null) {
        localeMap = new HashMap<String, String>();
      }
      localeMap.put(condName, condValue.toString());

    }
  }


  protected void setLocale(String condName, String condValue) {

    if (condValue != null && !"".equals(condValue)) {
      if (localeMap == null) {
        localeMap = new HashMap<String, String>();
      }



      Map<String, String> mapJson = Facitility.readJson2Map(condValue);
      for (Entry<String, String> entry : mapJson.entrySet()) {
        String key = entry.getKey();

        String value = entry.getValue().replace("\"", "\'");
        localeMap.put(condName + "_" + key, value);
      }
    }

  }


}