304 lines
8.5 KiB
Go
304 lines
8.5 KiB
Go
// Licensed to Elasticsearch B.V. under one or more contributor
|
|
// license agreements. See the NOTICE file distributed with
|
|
// this work for additional information regarding copyright
|
|
// ownership. Elasticsearch B.V. licenses this file to you 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 common
|
|
|
|
import (
|
|
"encoding"
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/elastic/beats/libbeat/logp"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const eventDebugSelector = "event"
|
|
|
|
var eventDebugf = logp.MakeDebug(eventDebugSelector)
|
|
|
|
var textMarshalerType = reflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem()
|
|
|
|
type Float float64
|
|
|
|
// ConvertToGenericEvent normalizes the types contained in the given MapStr.
|
|
//
|
|
// Nil values in maps are dropped during the conversion. Any unsupported types
|
|
// that are found in the MapStr are dropped and warnings are logged.
|
|
func ConvertToGenericEvent(m MapStr) MapStr {
|
|
keys := make([]string, 0, 10)
|
|
event, errs := normalizeMap(m, keys...)
|
|
if len(errs) > 0 {
|
|
logp.Warn("Unsuccessful conversion to generic event: %v errors: %v, "+
|
|
"event=%#v", len(errs), errs, m)
|
|
}
|
|
return event
|
|
}
|
|
|
|
// normalizeMap normalizes each element contained in the given map. If an error
|
|
// occurs during normalization, processing of m will continue, and all errors
|
|
// are returned at the end.
|
|
func normalizeMap(m MapStr, keys ...string) (MapStr, []error) {
|
|
var errs []error
|
|
|
|
out := make(MapStr, len(m))
|
|
for key, value := range m {
|
|
v, err := normalizeValue(value, append(keys, key)...)
|
|
if len(err) > 0 {
|
|
errs = append(errs, err...)
|
|
}
|
|
|
|
// Drop nil values from maps.
|
|
if v == nil {
|
|
if logp.IsDebug(eventDebugSelector) {
|
|
eventDebugf("Dropped nil value from event where key=%v", joinKeys(append(keys, key)...))
|
|
}
|
|
continue
|
|
}
|
|
|
|
out[key] = v
|
|
}
|
|
|
|
return out, errs
|
|
}
|
|
|
|
// normalizeMapStrSlice normalizes each individual MapStr.
|
|
func normalizeMapStrSlice(maps []MapStr, keys ...string) ([]MapStr, []error) {
|
|
var errs []error
|
|
|
|
out := make([]MapStr, 0, len(maps))
|
|
for i, m := range maps {
|
|
normalizedMap, err := normalizeMap(m, append(keys, strconv.Itoa(i))...)
|
|
if len(err) > 0 {
|
|
errs = append(errs, err...)
|
|
}
|
|
out = append(out, normalizedMap)
|
|
}
|
|
|
|
return out, errs
|
|
}
|
|
|
|
// normalizeMapStringSlice normalizes each individual map[string]interface{} and
|
|
// returns a []MapStr.
|
|
func normalizeMapStringSlice(maps []map[string]interface{}, keys ...string) ([]MapStr, []error) {
|
|
var errs []error
|
|
|
|
out := make([]MapStr, 0, len(maps))
|
|
for i, m := range maps {
|
|
normalizedMap, err := normalizeMap(m, append(keys, strconv.Itoa(i))...)
|
|
if len(err) > 0 {
|
|
errs = append(errs, err...)
|
|
}
|
|
out = append(out, normalizedMap)
|
|
}
|
|
|
|
return out, errs
|
|
}
|
|
|
|
// normalizeSlice normalizes each element of the slice and returns a []interface{}.
|
|
func normalizeSlice(v reflect.Value, keys ...string) (interface{}, []error) {
|
|
var errs []error
|
|
var sliceValues []interface{}
|
|
|
|
n := v.Len()
|
|
for i := 0; i < n; i++ {
|
|
sliceValue, err := normalizeValue(v.Index(i).Interface(), append(keys, strconv.Itoa(i))...)
|
|
if len(err) > 0 {
|
|
errs = append(errs, err...)
|
|
}
|
|
|
|
sliceValues = append(sliceValues, sliceValue)
|
|
}
|
|
|
|
return sliceValues, errs
|
|
}
|
|
|
|
func normalizeValue(value interface{}, keys ...string) (interface{}, []error) {
|
|
if value == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
// Normalize time values to a common.Time with UTC time zone.
|
|
switch v := value.(type) {
|
|
case time.Time:
|
|
value = Time(v.UTC())
|
|
case []time.Time:
|
|
times := make([]Time, 0, len(v))
|
|
for _, t := range v {
|
|
times = append(times, Time(t.UTC()))
|
|
}
|
|
value = times
|
|
case Time:
|
|
value = Time(time.Time(v).UTC())
|
|
case []Time:
|
|
times := make([]Time, 0, len(v))
|
|
for _, t := range v {
|
|
times = append(times, Time(time.Time(t).UTC()))
|
|
}
|
|
value = times
|
|
}
|
|
|
|
switch value.(type) {
|
|
case encoding.TextMarshaler:
|
|
text, err := value.(encoding.TextMarshaler).MarshalText()
|
|
if err != nil {
|
|
return nil, []error{errors.Wrapf(err, "key=%v: error converting %T to string", joinKeys(keys...), value)}
|
|
}
|
|
return string(text), nil
|
|
case string, []string:
|
|
case bool, []bool:
|
|
case int, int8, int16, int32, int64:
|
|
case []int, []int8, []int16, []int32, []int64:
|
|
case uint, uint8, uint16, uint32, uint64:
|
|
case []uint, []uint8, []uint16, []uint32, []uint64:
|
|
case float64:
|
|
return Float(value.(float64)), nil
|
|
case float32:
|
|
return Float(value.(float32)), nil
|
|
case []float32, []float64:
|
|
case complex64, complex128:
|
|
case []complex64, []complex128:
|
|
case Time, []Time:
|
|
case MapStr:
|
|
return normalizeMap(value.(MapStr), keys...)
|
|
case []MapStr:
|
|
return normalizeMapStrSlice(value.([]MapStr), keys...)
|
|
case map[string]interface{}:
|
|
return normalizeMap(value.(map[string]interface{}), keys...)
|
|
case []map[string]interface{}:
|
|
return normalizeMapStringSlice(value.([]map[string]interface{}), keys...)
|
|
default:
|
|
v := reflect.ValueOf(value)
|
|
|
|
switch v.Type().Kind() {
|
|
case reflect.Ptr:
|
|
// Dereference pointers.
|
|
return normalizeValue(followPointer(value), keys...)
|
|
case reflect.Bool:
|
|
return v.Bool(), nil
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
return v.Int(), nil
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
|
return v.Uint(), nil
|
|
case reflect.Float32, reflect.Float64:
|
|
return Float(v.Float()), nil
|
|
case reflect.Complex64, reflect.Complex128:
|
|
return v.Complex(), nil
|
|
case reflect.String:
|
|
return v.String(), nil
|
|
case reflect.Array, reflect.Slice:
|
|
return normalizeSlice(v, keys...)
|
|
case reflect.Map, reflect.Struct:
|
|
var m MapStr
|
|
err := marshalUnmarshal(value, &m)
|
|
if err != nil {
|
|
return m, []error{errors.Wrapf(err, "key=%v: error converting %T to MapStr", joinKeys(keys...), value)}
|
|
}
|
|
return m, nil
|
|
default:
|
|
// Drop Uintptr, UnsafePointer, Chan, Func, Interface, and any other
|
|
// types not specifically handled above.
|
|
return nil, []error{fmt.Errorf("key=%v: error unsupported type=%T value=%#v", joinKeys(keys...), value, value)}
|
|
}
|
|
}
|
|
|
|
return value, nil
|
|
}
|
|
|
|
// marshalUnmarshal converts an interface to a MapStr by marshalling to JSON
|
|
// then unmarshalling the JSON object into a MapStr.
|
|
func marshalUnmarshal(in interface{}, out interface{}) error {
|
|
// Decode and encode as JSON to normalized the types.
|
|
marshaled, err := json.Marshal(in)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error marshalling to JSON")
|
|
}
|
|
err = json.Unmarshal(marshaled, out)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error unmarshalling from JSON")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// followPointer accepts an interface{} and if the interface is a pointer then
|
|
// the value that v points to is returned. If v is not a pointer then v is
|
|
// returned.
|
|
func followPointer(v interface{}) interface{} {
|
|
if v == nil || reflect.TypeOf(v).Kind() != reflect.Ptr {
|
|
return v
|
|
}
|
|
|
|
val := reflect.ValueOf(v)
|
|
if val.IsNil() {
|
|
return nil
|
|
}
|
|
|
|
return val.Elem().Interface()
|
|
}
|
|
|
|
// joinKeys concatenates the keys into a single string with each key separated
|
|
// by a dot.
|
|
func joinKeys(keys ...string) string {
|
|
// Strip leading empty string.
|
|
if len(keys) > 0 && keys[0] == "" {
|
|
keys = keys[1:]
|
|
}
|
|
return strings.Join(keys, ".")
|
|
}
|
|
|
|
// Defines the marshal of the Float type
|
|
func (f Float) MarshalJSON() ([]byte, error) {
|
|
return []byte(fmt.Sprintf("%.6f", f)), nil
|
|
}
|
|
|
|
// DeDot a string by replacing all . with _
|
|
// This helps when sending data to Elasticsearch to prevent object and key collisions.
|
|
func DeDot(s string) string {
|
|
return strings.Replace(s, ".", "_", -1)
|
|
}
|
|
|
|
// DeDotJSON replaces in keys all . with _
|
|
// This helps when sending data to Elasticsearch to prevent object and key collisions.
|
|
func DeDotJSON(json interface{}) interface{} {
|
|
switch json := json.(type) {
|
|
case map[string]interface{}:
|
|
result := map[string]interface{}{}
|
|
for key, value := range json {
|
|
result[DeDot(key)] = DeDotJSON(value)
|
|
}
|
|
return result
|
|
case MapStr:
|
|
result := MapStr{}
|
|
for key, value := range json {
|
|
result[DeDot(key)] = DeDotJSON(value)
|
|
}
|
|
return result
|
|
case []interface{}:
|
|
result := make([]interface{}, len(json))
|
|
for i, value := range json {
|
|
result[i] = DeDotJSON(value)
|
|
}
|
|
return result
|
|
default:
|
|
return json
|
|
}
|
|
}
|