Search in sources :

Example 1 with JobLog

use of org.codelibs.fess.es.config.exentity.JobLog in project fess by codelibs.

the class ApiAdminJoblogAction method logs.

// ===================================================================================
//                                                                      Search Execute
//                                                                      ==============
// GET /api/admin/joblog/logs
@Execute
public JsonResponse<ApiResult> logs(final SearchBody body) {
    validateApi(body, messages -> {
    });
    final JobLogPager pager = copyBeanToNewBean(body, JobLogPager.class);
    final List<JobLog> list = jobLogService.getJobLogList(pager);
    return asJson(new ApiResult.ApiLogsResponse<EditBody>().logs(list.stream().map(entity -> createEditBody(entity)).collect(Collectors.toList())).total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result());
}
Also used : ApiResult(org.codelibs.fess.app.web.api.ApiResult) JobLogPager(org.codelibs.fess.app.pager.JobLogPager) JobLog(org.codelibs.fess.es.config.exentity.JobLog) Execute(org.lastaflute.web.Execute)

Example 2 with JobLog

use of org.codelibs.fess.es.config.exentity.JobLog in project fess by codelibs.

the class ScriptExecutorJob method run.

@Override
public void run(final LaJobRuntime runtime) {
    if (!runtime.getParameterMap().containsKey(Constants.SCHEDULED_JOB)) {
        logger.warn(Constants.SCHEDULED_JOB + " is empty.");
        return;
    }
    runtime.stopIfNeeds();
    final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    final JobManager jobManager = ComponentUtil.getJobManager();
    final ScheduledJob scheduledJob = (ScheduledJob) runtime.getParameterMap().get(Constants.SCHEDULED_JOB);
    final String id = scheduledJob.getId();
    final String target = scheduledJob.getTarget();
    if (!isTarget(target)) {
        logger.info("Ignore Job " + id + ":" + scheduledJob.getName() + " because of not target: " + scheduledJob.getTarget());
        return;
    }
    final JobHelper jobHelper = ComponentUtil.getJobHelper();
    if (!jobHelper.isAvailable(id)) {
        logger.info("Job " + id + " is unavailable. Unregistering this job.");
        jobHelper.unregister(scheduledJob);
        return;
    }
    final JobLog jobLog = new JobLog(scheduledJob);
    final String scriptType = scheduledJob.getScriptType();
    final String script = scheduledJob.getScriptData();
    final JobExecutor jobExecutor = ComponentUtil.getJobExecutor(scriptType);
    if (jobExecutor == null) {
        throw new ScheduledJobException("No jobExecutor: " + scriptType);
    }
    if (!jobManager.findJobByUniqueOf(LaJobUnique.of(id)).isPresent()) {
        if (logger.isDebugEnabled()) {
            logger.debug("Job " + id + " is running.");
        }
        return;
    }
    TimeoutTask task = null;
    try {
        if (scheduledJob.isLoggingEnabled()) {
            jobHelper.store(jobLog);
            task = jobHelper.startMonitorTask(jobLog);
        }
        if (logger.isDebugEnabled()) {
            logger.debug("Starting Job " + id + ". scriptType: " + scriptType + ", script: " + script);
        } else if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
            logger.info("Starting Job " + id + ".");
        }
        final Object ret = jobExecutor.execute(script);
        if (ret == null) {
            if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
                logger.info("Finished Job " + id + ".");
            }
        } else {
            if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
                logger.info("Finished Job " + id + ". The return value is:\n" + ret);
            }
            jobLog.setScriptResult(ret.toString());
        }
        jobLog.setJobStatus(Constants.OK);
    } catch (final Throwable t) {
        logger.error("Failed to execute " + id + ": " + script, t);
        jobLog.setJobStatus(Constants.FAIL);
        jobLog.setScriptResult(systemHelper.abbreviateLongText(t.getLocalizedMessage()));
    } finally {
        if (task != null) {
            try {
                task.stop();
            } catch (final Exception e) {
                logger.warn("Failed to stop " + jobLog, e);
            }
        }
        jobLog.setEndTime(ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
        if (logger.isDebugEnabled()) {
            logger.debug("jobLog: " + jobLog);
        }
        if (scheduledJob.isLoggingEnabled()) {
            jobHelper.store(jobLog);
        }
    }
}
Also used : SystemHelper(org.codelibs.fess.helper.SystemHelper) ScheduledJobException(org.codelibs.fess.job.ScheduledJobException) JobExecutor(org.codelibs.fess.job.JobExecutor) ScheduledJob(org.codelibs.fess.es.config.exentity.ScheduledJob) JobHelper(org.codelibs.fess.helper.JobHelper) JobLog(org.codelibs.fess.es.config.exentity.JobLog) JobManager(org.lastaflute.job.JobManager) ScheduledJobException(org.codelibs.fess.job.ScheduledJobException) TimeoutTask(org.codelibs.core.timer.TimeoutTask)

Aggregations

JobLog (org.codelibs.fess.es.config.exentity.JobLog)2 TimeoutTask (org.codelibs.core.timer.TimeoutTask)1 JobLogPager (org.codelibs.fess.app.pager.JobLogPager)1 ApiResult (org.codelibs.fess.app.web.api.ApiResult)1 ScheduledJob (org.codelibs.fess.es.config.exentity.ScheduledJob)1 JobHelper (org.codelibs.fess.helper.JobHelper)1 SystemHelper (org.codelibs.fess.helper.SystemHelper)1 JobExecutor (org.codelibs.fess.job.JobExecutor)1 ScheduledJobException (org.codelibs.fess.job.ScheduledJobException)1 JobManager (org.lastaflute.job.JobManager)1 Execute (org.lastaflute.web.Execute)1