All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rx.exception.TraceHandler Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.exception;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.rx.annotation.DbColumn;
import org.rx.annotation.Subscribe;
import org.rx.bean.DateTime;
import org.rx.bean.ProceedEventArgs;
import org.rx.codec.CodecUtil;
import org.rx.core.*;
import org.rx.core.StringBuilder;
import org.rx.io.EntityDatabase;
import org.rx.io.EntityQueryLambda;
import org.slf4j.helpers.FormattingTuple;
import org.slf4j.helpers.MessageFormatter;

import java.io.Serializable;
import java.sql.Time;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.ScheduledFuture;

import static org.rx.core.Extends.as;
import static org.rx.core.RxConfig.ConfigNames.TRACE_KEEP_DAYS;
import static org.rx.core.RxConfig.ConfigNames.getWithoutPrefix;
import static org.rx.core.Sys.toJsonString;

@Slf4j
public final class TraceHandler implements Thread.UncaughtExceptionHandler {
    @Getter
    @Setter
    @ToString
    public static class ExceptionEntity implements Serializable {
        private static final long serialVersionUID = 8387064071982888474L;
        @DbColumn(primaryKey = true)
        long id;
        ExceptionLevel level;
        Queue messages;
        String stackTrace;
        int occurCount;

        String appName;
        String threadName;
        Date modifyTime;
    }

    @Getter
    @Setter
    @ToString
    public static class MethodEntity implements Serializable {
        private static final long serialVersionUID = 941255683071148L;
        @DbColumn(primaryKey = true)
        long id;
        String methodName;
        String parameters;
        String returnValue;
        Map MDC;
        long elapsedMicros;
        int occurCount;

        String appName;
        String threadName;
        Date modifyTime;
    }

    @Getter
    @Setter
    @ToString
    public static class MetricsEntity implements Serializable {
        private static final long serialVersionUID = 2049476730423563051L;
        @DbColumn(primaryKey = true)
        String name;
        String message;
        String stackTrace;
        int occurCount;
        Date modifyTime;
    }

    public static final TraceHandler INSTANCE = new TraceHandler();

    public static Object[] getMessageCandidate(Object... args) {
        if (args != null && args.length != 0) {
            int lastIndex = args.length - 1;
            Object last = args[lastIndex];
            if (last instanceof Throwable) {
                if (lastIndex == 0) {
                    return Arrays.EMPTY_OBJECT_ARRAY;
                }
                return Linq.from(args).take(lastIndex).toArray();
            }
        }
        return args;
    }

    ScheduledFuture future;

    private TraceHandler() {
        try {
            Thread.setDefaultUncaughtExceptionHandler(this);
            EntityDatabase db = EntityDatabase.DEFAULT;
            db.createMapping(ExceptionEntity.class, MethodEntity.class, MetricsEntity.class, ThreadEntity.class);
        } catch (Throwable e) {
            log.error("RxMeta init error", e);
        }
    }

    @Subscribe(topicClass = RxConfig.class)
    void onChanged(ObjectChangedEvent event) {
        ObjectChangeTracker.ChangedValue changedValue = event.getChangedMap().get(getWithoutPrefix(TRACE_KEEP_DAYS));
        if (changedValue == null) {
            return;
        }

        int keepDays = changedValue.newValue();
        log.info("RxMeta {} changed {}", TRACE_KEEP_DAYS, changedValue);
        if (keepDays > 0) {
            if (future == null) {
                future = Tasks.scheduleDaily(() -> {
                    EntityDatabase db = EntityDatabase.DEFAULT;
                    DateTime d = DateTime.now().addDays(-keepDays - 1);
                    db.delete(new EntityQueryLambda<>(ExceptionEntity.class)
                            .lt(ExceptionEntity::getModifyTime, d));
                    db.delete(new EntityQueryLambda<>(MethodEntity.class)
                            .lt(MethodEntity::getModifyTime, d));
                    db.delete(new EntityQueryLambda<>(ThreadEntity.class)
                            .lt(ThreadEntity::getSnapshotTime, d));
                    db.compact();
                }, Time.valueOf("3:00:00"));
            }
        } else {
            if (future != null) {
                future.cancel(true);
                future = null;
            }
        }
    }

    public void log(String format, Object... args) {
        try {
            FormattingTuple tuple = MessageFormatter.arrayFormat(format, args);
            if (tuple.getThrowable() == null) {
                log.warn(format + "[NoThrowableCandidate]", args);
                return;
            }

            log.error(format, args);
            saveExceptionTrace(Thread.currentThread(), tuple.getMessage(), tuple.getThrowable());
        } catch (Throwable ie) {
            ie.printStackTrace();
        }
    }

    public void log(Throwable e) {
        uncaughtException(Thread.currentThread(), e);
    }

    @Override
    public void uncaughtException(Thread t, Throwable e) {
        try {
            log.error("Thread[{}] uncaught", t.getId(), e);
            saveExceptionTrace(t, null, e);
        } catch (Throwable ie) {
            ie.printStackTrace();
        }
    }

    public void saveThreadTrace(Linq snapshot) {
        RxConfig.TraceConfig conf = RxConfig.INSTANCE.getTrace();
        if (conf.getKeepDays() <= 0) {
            return;
        }

        Tasks.run(() -> {
            EntityDatabase db = EntityDatabase.DEFAULT;
            db.begin();
            try {
                for (ThreadEntity t : snapshot) {
                    db.save(t, true);
                }
                db.commit();
            } catch (Throwable ex) {
                log.error("dbTrace", ex);
                db.rollback();
            }
        });
    }

    public Linq queryThreadTrace(Long snapshotId, Date startTime, Date endTime) {
        EntityQueryLambda q = new EntityQueryLambda<>(ThreadEntity.class);
        if (snapshotId != null) {
            q.eq(ThreadEntity::getSnapshotId, snapshotId);
        }
        if (startTime != null) {
            q.ge(ThreadEntity::getSnapshotTime, startTime);
        }
        if (endTime != null) {
            q.lt(ThreadEntity::getSnapshotTime, endTime);
        }
        EntityDatabase db = EntityDatabase.DEFAULT;
        return Linq.from(db.findBy(q));
    }

    public void saveExceptionTrace(Thread t, String msg, Throwable e) {
        RxConfig.TraceConfig conf = RxConfig.INSTANCE.getTrace();
        if (conf.getKeepDays() <= 0) {
            return;
        }

        String stackTrace = ExceptionUtils.getStackTrace(e);
        long pk = CodecUtil.hash64(stackTrace);
        Tasks.nextPool().runSerial(() -> {
            EntityDatabase db = EntityDatabase.DEFAULT;
            db.begin();
            try {
                ExceptionEntity entity = db.findById(ExceptionEntity.class, pk);
                boolean doInsert = entity == null;
                if (doInsert) {
                    entity = new ExceptionEntity();
                    entity.setId(pk);
                    InvalidException invalidException = as(e, InvalidException.class);
                    ExceptionLevel level = invalidException != null && invalidException.getLevel() != null ? invalidException.getLevel()
                            : ExceptionLevel.SYSTEM;
                    entity.setLevel(level);
                    entity.setMessages(new ConcurrentLinkedQueue<>());
                    entity.setStackTrace(stackTrace);
                }
                Queue queue = entity.getMessages();
                if (queue.size() > conf.getErrorMessageSize()) {
                    queue.poll();
                }
                StringBuilder b = new StringBuilder();
                b.appendMessageFormat("{}\t{}", DateTime.now().toDateTimeString(), msg);
                Map ctxMap = Sys.getMDCCtxMap();
                if (!ctxMap.isEmpty()) {
                    b.appendMessageFormat("\nMDC:\t{}", ctxMap);
                }
                queue.offer(b.toString());
                entity.occurCount++;
                entity.setAppName(RxConfig.INSTANCE.getId());
                entity.setThreadName(t.getName());
                entity.setModifyTime(DateTime.now());
                db.save(entity, doInsert);
                db.commit();
            } catch (Throwable ex) {
                log.error("dbTrace", ex);
                db.rollback();
            }
            return null;
        }, pk);
    }

    public List queryExceptionTraces(Date startTime, Date endTime, ExceptionLevel level, String keyword,
                                                      Boolean newest, Integer limit) {
        if (newest == null) {
            newest = Boolean.FALSE;
        }
        if (limit == null) {
            limit = 20;
        }

        EntityQueryLambda q = new EntityQueryLambda<>(ExceptionEntity.class).limit(limit);
        if (startTime != null) {
            q.ge(ExceptionEntity::getModifyTime, startTime);
        }
        if (endTime != null) {
            q.lt(ExceptionEntity::getModifyTime, endTime);
        }
        if (level != null) {
            q.eq(ExceptionEntity::getLevel, level);
        }
        if (!Strings.isBlank(keyword)) {
            q.like(ExceptionEntity::getStackTrace, "%" + keyword.trim() + "%");
        }
        if (newest) {
            q.orderByDescending(ExceptionEntity::getModifyTime);
        } else {
            q.orderByDescending(ExceptionEntity::getOccurCount);
        }
        EntityDatabase db = EntityDatabase.DEFAULT;
        return db.findBy(q);
    }

    public void saveMethodTrace(ProceedEventArgs pe, String methodName) {
        RxConfig.TraceConfig conf = RxConfig.INSTANCE.getTrace();
        long elapsedMicros;
        if (conf.getKeepDays() <= 0 || (elapsedMicros = pe.getElapsedNanos() / 1000L) < conf.getSlowMethodElapsedMicros()) {
            return;
        }

        Object[] parameters = pe.getParameters();
        Throwable error = pe.getError();
        Object returnValue = pe.getReturnValue();
        String fullName = String.format("%s.%s(%s)", pe.getDeclaringType().getName(), methodName, parameters == null ? 0 : parameters.length);
        long pk = CodecUtil.hash64(fullName);
        Tasks.nextPool().runSerial(() -> {
            EntityDatabase db = EntityDatabase.DEFAULT;
            db.begin();
            try {
                MethodEntity entity = db.findById(MethodEntity.class, pk);
                boolean doInsert = entity == null;
                if (doInsert) {
                    entity = new MethodEntity();
                    entity.setId(pk);
                    entity.setMethodName(fullName);
                }
                if (parameters != null) {
                    entity.setParameters(toJsonString(parameters));
                }
                if (error != null) {
                    entity.setReturnValue(ExceptionUtils.getStackTrace(error));
                } else if (returnValue != null) {
                    entity.setReturnValue(toJsonString(returnValue));
                }
                entity.setMDC(Sys.getMDCCtxMap());
                entity.elapsedMicros = Math.max(entity.elapsedMicros, elapsedMicros);
                entity.occurCount++;
                entity.setAppName(RxConfig.INSTANCE.getId());
                entity.setThreadName(Thread.currentThread().getName());
                entity.setModifyTime(DateTime.now());
                db.save(entity, doInsert);
                db.commit();
            } catch (Throwable e) {
                log.error("dbTrace", e);
                db.rollback();
            }
            return null;
        }, pk);
    }

    public List queryMethodTraces(String methodNamePrefix, Boolean methodOccurMost, Integer limit) {
        if (methodOccurMost == null) {
            methodOccurMost = Boolean.FALSE;
        }
        if (limit == null) {
            limit = 20;
        }

        EntityQueryLambda q = new EntityQueryLambda<>(MethodEntity.class).limit(limit);
        if (methodNamePrefix != null) {
            q.like(MethodEntity::getMethodName, String.format("%s%%", methodNamePrefix));
        }
        if (methodOccurMost) {
            q.orderByDescending(MethodEntity::getOccurCount);
        } else {
            q.orderByDescending(MethodEntity::getElapsedMicros);
        }
        EntityDatabase db = EntityDatabase.DEFAULT;
        return db.findBy(q);
    }

    public void saveMetric(String name, String message) {
        log.info("saveMetric {} {}", name, message);
        String stackTrace = Reflects.getStackTrace(Thread.currentThread());
        Tasks.nextPool().runSerial(() -> {
            EntityDatabase db = EntityDatabase.DEFAULT;
            db.begin();
            try {
                MetricsEntity entity = db.findById(MetricsEntity.class, name);
                boolean doInsert = entity == null;
                if (doInsert) {
                    entity = new MetricsEntity();
                    entity.setName(name);
                }
                entity.setMessage(message);
                entity.setStackTrace(stackTrace);
                entity.occurCount++;
                entity.setModifyTime(DateTime.now());
                db.save(entity, doInsert);
                db.commit();
            } catch (Throwable e) {
                log.error("dbTrace", e);
                db.rollback();
            }
            return null;
        }, name);
    }

    public List queryMetrics(String name, Integer limit) {
        if (limit == null) {
            limit = 20;
        }

        EntityQueryLambda q = new EntityQueryLambda<>(MetricsEntity.class);
        if (name != null) {
            q.eq(MetricsEntity::getName, name);
        }
        EntityDatabase db = EntityDatabase.DEFAULT;
        return db.findBy(q.orderByDescending(MetricsEntity::getOccurCount).limit(limit));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy