Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2013-2014 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.
*/
// Portions Copyright [2016-2021] [Payara Foundation and/or its affiliates]
package org.glassfish.batch;
import com.ibm.jbatch.spi.TaggedJobExecution;
import com.sun.enterprise.config.serverbeans.Domain;
import com.sun.enterprise.util.ColumnFormatter;
import fish.payara.jbatch.persistence.rdbms.DB2PersistenceManager;
import fish.payara.jbatch.persistence.rdbms.JBatchJDBCPersistenceManager;
import fish.payara.jbatch.persistence.rdbms.MySqlPersistenceManager;
import fish.payara.jbatch.persistence.rdbms.OraclePersistenceManager;
import fish.payara.jbatch.persistence.rdbms.PostgresPersistenceManager;
import fish.payara.jbatch.persistence.rdbms.SQLServerPersistenceManager;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.*;
import java.util.logging.Level;
import jakarta.batch.operations.*;
import jakarta.batch.runtime.JobExecution;
import jakarta.inject.Inject;
import javax.naming.InitialContext;
import javax.sql.DataSource;
import jakarta.validation.constraints.Min;
import org.glassfish.api.I18n;
import org.glassfish.api.Param;
import org.glassfish.api.admin.*;
import org.glassfish.batch.spi.impl.BatchRuntimeConfiguration;
import org.glassfish.batch.spi.impl.BatchRuntimeHelper;
import org.glassfish.config.support.CommandTarget;
import org.glassfish.config.support.TargetType;
import org.glassfish.hk2.api.PerLookup;
import org.jvnet.hk2.annotations.Service;
import static org.glassfish.batch.BatchConstants.LIST_BATCH_JOBS;
import static org.glassfish.batch.BatchConstants.LIST_JOBS_COUNT;
import static org.glassfish.batch.BatchConstants.SIMPLE_MODE;
/**
* Command to list batch jobs info
*
* 1 * 1 *
* jobName --------> instanceId --------> executionId
*
* @author Mahesh Kannan
*/
@Service(name = "_ListBatchJobs")
@PerLookup
@CommandLock(CommandLock.LockType.NONE)
@I18n("_ListBatchJobs")
@ExecuteOn(value = {RuntimeType.INSTANCE})
@TargetType({CommandTarget.DAS, CommandTarget.STANDALONE_INSTANCE, CommandTarget.CLUSTER, CommandTarget.CLUSTERED_INSTANCE, CommandTarget.CONFIG})
@RestEndpoints({
@RestEndpoint(configBean = Domain.class,
opType = RestEndpoint.OpType.GET,
path = "_ListBatchJobs",
description = "_List Batch Jobs")
})
public class ListBatchJobs extends AbstractLongListCommand {
private static final String JOB_NAME = "jobName";
private static final String APP_NAME = "appName";
private static final String INSTANCE_COUNT = "instanceCount";
private static final String INSTANCE_ID = "instanceId";
private static final String EXECUTION_ID = "executionId";
private static final String BATCH_STATUS = "batchStatus";
private static final String EXIT_STATUS = "exitStatus";
private static final String START_TIME = "startTime";
private static final String END_TIME = "endTime";
@Param(primary = true, optional = true)
String jobName;
@Min(value = 0, message = "Offset value needs to be greater than 0")
@Param(name = "offset", optional = true, defaultValue = "0")
String offSetValue;
@Min(value = 0, message = "Limit value needs to be greater than 0")
@Param(name = "limit", optional = true, defaultValue = "2000")
String limitValue;
@Inject
BatchRuntimeHelper batchRuntimeHelper;
@Inject
BatchRuntimeConfiguration batchRuntimeConfiguration;
private DataSource dataSource;
private String jobInstanceTableKey;
private String queryToGetUniqueJobNames;
@Override
protected void executeCommand(AdminCommandContext context, Properties extraProps)
throws Exception {
String dataSourceName = batchRuntimeHelper.getDataSourceLookupName();
InitialContext ctx = new InitialContext();
Object object = ctx.lookup(dataSourceName);
//check whether the referenced JNDI entry is a DataSource
if (object instanceof DataSource) {
dataSource = DataSource.class.cast(object);
String prefix = batchRuntimeConfiguration.getTablePrefix();
String suffix = batchRuntimeConfiguration.getTableSuffix();
createTables();
jobInstanceTableKey = prefix + "JOBINSTANCEDATA" + suffix;
if (checkIfTableExists(jobInstanceTableKey)) {
queryToGetUniqueJobNames = "SELECT DISTINCT name FROM " + jobInstanceTableKey;
ColumnFormatter columnFormatter = new ColumnFormatter(getDisplayHeaders());
if (isSimpleMode()) {
setToSimpleMode(extraProps, columnFormatter);
} else {
setToLongMode(extraProps, columnFormatter);
}
context.getActionReport().setMessage(columnFormatter.toString());
} else {
context.getActionReport().failure(logger, jobInstanceTableKey + " table doesn't exists");
}
}
}
private void setToSimpleMode(Properties extraProps, ColumnFormatter columnFormatter) {
extraProps.put(SIMPLE_MODE, true);
Map jobsInstanceCount = new HashMap<>();
if (jobName != null) {
jobsInstanceCount.put(jobName, getJobInstanceCount(jobName));
} else {
// Get names of all available Jobs
List jobNames = executeQuery(queryToGetUniqueJobNames, "name");
for (String job_Name : jobNames) {
jobsInstanceCount.put(job_Name, getJobInstanceCount(job_Name));
}
}
extraProps.put(LIST_BATCH_JOBS, findSimpleJobInfo(jobsInstanceCount, columnFormatter));
}
private void setToLongMode(Properties extraProps, ColumnFormatter columnFormatter) {
extraProps.put(SIMPLE_MODE, false);
Map map = new HashMap<>();
map.put("allJobsCount", getAllJobInstanceCount());
extraProps.put(LIST_JOBS_COUNT, map);
List