io.lenar.easy.log.support.Processor Maven / Gradle / Ivy
The newest version!
/**
* The MIT License (MIT)
*
* Copyright (c) 2018 Lenar Badretdinov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package io.lenar.easy.log.support;
import static io.lenar.easy.log.support.Processor.ObjectType.*;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Processor {
public static final String MASKED_VALUE = "XXXMASKEDXXX";
private static final boolean DEBUG = false;
public static Object process(Object object, String[] maskFields) {
return processObject(object, maskFields);
}
private static Object processObject(Object object, String[] maskFields) {
if (object == null) return null;
ObjectType type = getType(object);
debug(" TYPE: " + type.name() + " " + object.toString());
switch (type) {
case STRING:
case PRIMITIVE:
case DATE:
case ENUM: return object;
case MAP: return processMap(object, maskFields);
case OBJECT: return processMap(objectAsMap(object), maskFields);
case COLLECTION: return processCollection(object, maskFields);
case ARRAY: return processCollection(Arrays.asList((Object[]) object), maskFields);
}
debug("!!! LOGGING: Couldn't serialize - not supported Type !!!");
return object;
}
private static List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy