87 lines
2.6 KiB
Go
87 lines
2.6 KiB
Go
/*******************************************************************************
|
|
* Copyright 2019 Dell Inc.
|
|
*
|
|
* 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 logger
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
)
|
|
|
|
// These constants identify the log levels in order of increasing severity.
|
|
const (
|
|
TraceLog = "TRACE"
|
|
DebugLog = "DEBUG"
|
|
InfoLog = "INFO"
|
|
WarnLog = "WARN"
|
|
ErrorLog = "ERROR"
|
|
)
|
|
|
|
type LogEntry struct {
|
|
Level string `bson:"logLevel,omitempty" json:"logLevel"`
|
|
Args []interface{} `bson:"args,omitempty" json:"args"`
|
|
OriginService string `bson:"originService,omitempty" json:"originService"`
|
|
Message string `bson:"message,omitempty" json:"message"`
|
|
Created int64 `bson:"created,omitempty" json:"created"`
|
|
isValidated bool // internal member used for validation check
|
|
}
|
|
|
|
// UnmarshalJSON implements the Unmarshaler interface for the LogEntry type
|
|
func (le *LogEntry) UnmarshalJSON(data []byte) error {
|
|
var err error
|
|
type Alias struct {
|
|
Level *string `json:"logLevel,omitempty"`
|
|
Args []interface{} `json:"args,omitempty"`
|
|
OriginService *string `json:"originService,omitempty"`
|
|
Message *string `json:"message,omitempty"`
|
|
Created int64 `json:"created,omitempty"`
|
|
}
|
|
a := Alias{}
|
|
// Error with unmarshaling
|
|
if err = json.Unmarshal(data, &a); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Nillable fields
|
|
if a.Level != nil {
|
|
le.Level = *a.Level
|
|
}
|
|
if a.OriginService != nil {
|
|
le.OriginService = *a.OriginService
|
|
}
|
|
if a.Message != nil {
|
|
le.Message = *a.Message
|
|
}
|
|
le.Args = a.Args
|
|
le.Created = a.Created
|
|
|
|
le.isValidated, err = le.Validate()
|
|
|
|
return err
|
|
}
|
|
|
|
// Validate satisfies the Validator interface
|
|
func (le LogEntry) Validate() (bool, error) {
|
|
if !le.isValidated {
|
|
logLevels := []string{TraceLog, DebugLog, InfoLog, WarnLog, ErrorLog}
|
|
for _, name := range logLevels {
|
|
if name == le.Level {
|
|
return true, nil
|
|
}
|
|
}
|
|
return false, fmt.Errorf("Invalid level in LogEntry: %s", le.Level)
|
|
}
|
|
return le.isValidated, nil
|
|
}
|