org.pentaho.di.www.jaxrs.CarteResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kettle-engine Show documentation
Show all versions of kettle-engine Show documentation
Container pom for Pentaho Data Integration modules
The newest version!
/*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2017 by Hitachi Vantara : http://www.pentaho.com
*
*******************************************************************************
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
package org.pentaho.di.www.jaxrs;
import java.util.ArrayList;
import java.util.List;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import org.pentaho.di.job.Job;
import org.pentaho.di.trans.Trans;
import org.pentaho.di.www.CarteObjectEntry;
import org.pentaho.di.www.CarteSingleton;
import org.pentaho.di.www.SlaveServerConfig;
@Path( "/carte" )
public class CarteResource {
public CarteResource() {
}
public static Trans getTransformation( String id ) {
return CarteSingleton.getInstance().getTransformationMap().getTransformation( getCarteObjectEntry( id ) );
}
public static Job getJob( String id ) {
return CarteSingleton.getInstance().getJobMap().getJob( getCarteObjectEntry( id ) );
}
public static CarteObjectEntry getCarteObjectEntry( String id ) {
List transList =
CarteSingleton.getInstance().getTransformationMap().getTransformationObjects();
for ( CarteObjectEntry entry : transList ) {
if ( entry.getId().equals( id ) ) {
return entry;
}
}
List jobList = CarteSingleton.getInstance().getJobMap().getJobObjects();
for ( CarteObjectEntry entry : jobList ) {
if ( entry.getId().equals( id ) ) {
return entry;
}
}
return null;
}
@GET
@Path( "/systemInfo" )
@Produces( { MediaType.APPLICATION_JSON } )
public ServerStatus getSystemInfo() {
ServerStatus serverStatus = new ServerStatus();
serverStatus.setStatusDescription( "Online" );
return serverStatus;
}
@GET
@Path( "/configDetails" )
@Produces( { MediaType.APPLICATION_JSON } )
public List getConfigDetails() {
SlaveServerConfig serverConfig = CarteSingleton.getInstance().getTransformationMap().getSlaveServerConfig();
List list = new ArrayList();
list.add( new NVPair( "maxLogLines", "" + serverConfig.getMaxLogLines() ) );
list.add( new NVPair( "maxLogLinesAge", "" + serverConfig.getMaxLogTimeoutMinutes() ) );
list.add( new NVPair( "maxObjectsAge", "" + serverConfig.getObjectTimeoutMinutes() ) );
list.add( new NVPair( "configFile", "" + serverConfig.getFilename() ) );
return list;
}
@GET
@Path( "/transformations" )
@Produces( { MediaType.APPLICATION_JSON } )
public List getTransformations() {
List transEntries =
CarteSingleton.getInstance().getTransformationMap().getTransformationObjects();
return transEntries;
}
@GET
@Path( "/transformations/detailed" )
@Produces( { MediaType.APPLICATION_JSON } )
public List getTransformationsDetails() {
List transEntries =
CarteSingleton.getInstance().getTransformationMap().getTransformationObjects();
List details = new ArrayList();
TransformationResource transRes = new TransformationResource();
for ( CarteObjectEntry entry : transEntries ) {
details.add( transRes.getTransformationStatus( entry.getId() ) );
}
return details;
}
@GET
@Path( "/jobs" )
@Produces( { MediaType.APPLICATION_JSON } )
public List getJobs() {
List jobEntries = CarteSingleton.getInstance().getJobMap().getJobObjects();
return jobEntries;
}
@GET
@Path( "/jobs/detailed" )
@Produces( { MediaType.APPLICATION_JSON } )
public List getJobsDetails() {
List jobEntries = CarteSingleton.getInstance().getJobMap().getJobObjects();
List details = new ArrayList();
JobResource jobRes = new JobResource();
for ( CarteObjectEntry entry : jobEntries ) {
details.add( jobRes.getJobStatus( entry.getId() ) );
}
return details;
}
}