Package org.glassfish.batch

Source Code of org.glassfish.batch.ListBatchJobNames

/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License").  You
* may not use this file except in compliance with the License.  You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt.  See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license."  If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above.  However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.batch;

import com.sun.enterprise.util.ColumnFormatter;
import org.glassfish.api.Param;
import org.glassfish.api.admin.AdminCommandContext;
import org.glassfish.hk2.api.PerLookup;
import org.jvnet.hk2.annotations.Service;

import javax.batch.operations.JobOperator;
import javax.batch.runtime.BatchRuntime;
import javax.batch.runtime.JobExecution;
import java.util.*;

/**
* Command to list batch jobs info
*
*         1      *             1      *
* jobName --------> instanceId --------> executionId
*
* @author Mahesh Kannan
*
*/
@Service(name="list-batch-jobs")
@PerLookup
public class ListBatchJobNames
    extends AbstractListCommand {

    private static final String JOB_NAME = "job-name";

    private static final String INSTANCE_COUNT = "instance-count";

    private static final String INSTANCE_ID = "instance-id";

    private static final String EXECUTION_ID = "execution-id";

    private static final String STATUS = "status";

    private static final String EXIT_STATUS = "exit-status";

    private static final String START_TIME = "start-time";

    private static final String END_TIME = "end-time";

    private static final String JOB_PARAMETERS = "job-parameters";

    @Param(name = "job-name", optional = true)
    String jobName;

    @Param(name = "instance-id", optional = true)
    String instanceId;

    @Param(name = "execution-id", optional = true)
    String executionId;

    @Override
    protected void executeCommand(AdminCommandContext context, Properties extraProps) {

        ColumnFormatter columnFormatter = new ColumnFormatter(getDisplayHeaders());
        if (isSimpleMode()) {
            extraProps.put("simple-mode", true);
            extraProps.put("list-batch-jobs", findSimpleJobInfo(columnFormatter));
        } else {
            extraProps.put("simple-mode", false);
            for (JobExecution je : findJobExecutions()) {
                handleJob(je, columnFormatter);
            }
        }
        context.getActionReport().setMessage(columnFormatter.toString());
    }

    @Override
    protected final String[] getSupportedHeaders() {
        return new String[] {
                JOB_NAME, INSTANCE_COUNT, INSTANCE_ID, EXECUTION_ID, STATUS,
                START_TIME, END_TIME, EXIT_STATUS, JOB_PARAMETERS
        };
    }

    @Override
    protected final String[] getTerseHeaders() {
        return new String[] {JOB_NAME, INSTANCE_COUNT};
    }

    private boolean isSimpleMode() {
        for (String h : getOutputHeaders()) {
            if (!JOB_NAME.equals(h) && !INSTANCE_COUNT.equals(h)) {
                return false;
            }
        }
        return true;
    }

    private Map<String, Integer> findSimpleJobInfo(ColumnFormatter columnFormatter) {
        Map<String, Integer> jobToInstanceCountMap = new HashMap<String, Integer>();
        Set<String> jobNames = new HashSet<String>();
        if (jobName != null)
            jobNames.add(jobName);
        else
            jobNames = BatchRuntime.getJobOperator().getJobNames();
        if (jobNames != null) {
            for (String jName : jobNames) {
                int size = getOutputHeaders().length;
                String[] data = new String[size];
                int instCount = BatchRuntime.getJobOperator().getJobInstanceCount(jName);
                for (int index =0; index<size; index++) {
                    switch (getOutputHeaders()[index]) {
                        case JOB_NAME:
                            data[index] = jobName;
                            break;
                        case INSTANCE_COUNT:
                            data[index] = "" + instCount;
                            break;
                        default:
                            throw new InternalError("Cannot handle " + getOutputHeaders()[index] + " in simple mode");
                    }
                }
                columnFormatter.addRow(data);
                jobToInstanceCountMap.put(jobName, instCount);
            }
        }

        return jobToInstanceCountMap;
    }
    private List<JobExecution> findJobExecutions() {
        List<JobExecution> jobExecutions = new ArrayList<JobExecution>();
        JobOperator jobOperator = BatchRuntime.getJobOperator();
        if (executionId != null) {
            JobExecution jobExecution = jobOperator.getJobExecution(Long.valueOf(executionId));
            if (jobExecution != null)
                jobExecutions.add(jobExecution);
        } else if (instanceId != null) {
            jobExecutions.addAll(getJobExecutionForInstance(Long.valueOf(instanceId)));
        } else if (jobName != null) {
            List<Long> instanceIds = jobOperator.getJobInstanceIds(jobName, 0, Integer.MAX_VALUE - 1);
            if (instanceIds != null) {
                for (Long instId : instanceIds) {
                    jobExecutions.addAll(getJobExecutionForInstance(instId));
                }
            }
        } else {
            Set<String> jobNames = jobOperator.getJobNames();
            if (jobNames != null) {
                for (String j : jobOperator.getJobNames()) {
                    List<Long> instIds = jobOperator.getJobInstanceIds(j, 0, Integer.MAX_VALUE - 1);
                    if (instIds != null) {
                        for (long instId : instIds) {
                            jobExecutions.addAll(getJobExecutionForInstance(instId));
                        }
                    }
                }
            }
        }

        return jobExecutions;
    }

    private static List<JobExecution> getJobExecutionForInstance(long instId) {
        List<JobExecution> jobExecutionList = BatchRuntime.getJobOperator().getJobExecutions(instId);
        return jobExecutionList == null
                ? new ArrayList<JobExecution>() : jobExecutionList;
    }

    private Map<String, Object> handleJob(JobExecution je, ColumnFormatter columnFormatter) {
        Map<String, Object> jobInfo = new HashMap<String, Object>();

        int jobParamIndex = -1;
        StringTokenizer st = new StringTokenizer("", "");
        for (int index=0; index<getOutputHeaders().length; index++) {
            String[] cfData = new String[getOutputHeaders().length];
            Object data = null;
            switch (getOutputHeaders()[index]) {
                case JOB_NAME:
                    data = jobName;
                    break;
                case INSTANCE_ID:
                    data = je.getInstanceId();
                    break;
                case STATUS:
                    data = je.getStatus();
                    break;
                case EXIT_STATUS:
                    data = je.getExitStatus();
                    break;
                case START_TIME:
                    data = je.getStartTime();
                    break;
                case END_TIME:
                    data = je.getEndTime();
                    break;
                case JOB_PARAMETERS:
                    data = je.getJobParameters() == null ? new Properties() : je.getJobParameters();
                    jobParamIndex = index;
                    ColumnFormatter cf = new ColumnFormatter();
                    for (Map.Entry e : ((Properties) data).entrySet())
                        cf.addRow(new String[] {e.getKey().toString(), e.getValue().toString()});
                    st = new StringTokenizer(cf.toString());
                    break;
                default:
                    throw new IllegalArgumentException("Unknown header: " + getOutputHeaders()[index]);
            }
            jobInfo.put(getOutputHeaders()[index], data);
            cfData[index] = (jobParamIndex != index)
                    ? data.toString()
                    : (st.hasMoreTokens()) ? st.nextToken() : "";
            columnFormatter.addRow(cfData);
        }

        String[] cfData = new String[getOutputHeaders().length];
        for (int i=0; i<getOutputHeaders().length; i++)
            cfData[i] = "";
        while (st.hasMoreTokens()) {
            cfData[jobParamIndex] = st.nextToken();
            columnFormatter.addRow(cfData);
        }

        return jobInfo;
    }
}
TOP

Related Classes of org.glassfish.batch.ListBatchJobNames

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.