use of org.pentaho.di.job.JobExecutionExtension in project pentaho-kettle by pentaho.
the class RunConfigurationInjectExtensionPointTest method setup.
@Before
public void setup() {
runConfigurationInjectExtensionPoint = new RunConfigurationInjectExtensionPoint(runConfigurationManager);
executionExt = new JobExecutionExtension(job, result, jobEntryCopy, false);
when(abstractMeta.getEmbeddedMetaStore()).thenReturn(embeddedMetaStore);
when(transExecutionConfiguration.getRunConfiguration()).thenReturn(runConfName);
when(runConfigurationManager.load(runConfName)).thenReturn(runConfiguration);
when(job.getJobMeta()).thenReturn(jobMeta);
when(jobMeta.getEmbeddedMetaStore()).thenReturn(embeddedMetaStore);
when(jobMeta.environmentSubstitute(anyString())).thenReturn(runConfName);
when(jobEntryJobs.getRunConfiguration()).thenReturn(runConfName);
when(jobEntryTrans.getRunConfiguration()).thenReturn(runConfName);
trans.put(jobEntryCopy, jobEntryTrans);
jobs.put(jobEntryCopy, jobEntryJobs);
when(job.getActiveJobEntryTransformations()).thenReturn(trans);
when(job.getActiveJobEntryJobs()).thenReturn(jobs);
}
use of org.pentaho.di.job.JobExecutionExtension in project pentaho-metaverse by pentaho.
the class JobEntryExternalResourceConsumerListener method callExtensionPoint.
/**
* This method is called by the Kettle code when a job entry is about to start
*
* @param log the logging channel to log debugging information to
* @param object The subject object that is passed to the plugin code
* @throws org.pentaho.di.core.exception.KettleException In case the plugin decides that an error has occurred
* and the parent process should stop.
*/
@Override
public void callExtensionPoint(LogChannelInterface log, Object object) throws KettleException {
if (jobEntryConsumerProvider == null) {
jobEntryConsumerProvider = (IJobEntryExternalResourceConsumerProvider) MetaverseBeanUtil.getInstance().get("IJobEntryExternalResourceConsumerProvider");
}
JobExecutionExtension jobExec = (JobExecutionExtension) object;
JobEntryCopy jobEntryCopy = jobExec.jobEntryCopy;
if (jobEntryCopy != null) {
JobEntryInterface meta = jobEntryCopy.getEntry();
if (meta != null) {
Class<?> metaClass = meta.getClass();
if (JobEntryBase.class.isAssignableFrom(metaClass)) {
if (jobEntryConsumerProvider != null) {
// Put the class into a collection and get the consumers that can process this class
Set<Class<?>> metaClassSet = new HashSet<Class<?>>(1);
metaClassSet.add(metaClass);
List<IJobEntryExternalResourceConsumer> jobEntryConsumers = jobEntryConsumerProvider.getExternalResourceConsumers(metaClassSet);
if (jobEntryConsumers != null) {
for (IJobEntryExternalResourceConsumer jobEntryConsumer : jobEntryConsumers) {
// We might know enough at this point, so call the consumer
Collection<IExternalResourceInfo> resources = jobEntryConsumer.getResourcesFromMeta(meta);
addExternalResources(resources, meta);
// Add a JobEntryListener to collect external resource info after a job entry has finished
if (jobExec.job != null && jobEntryConsumer.isDataDriven(meta)) {
// Add the consumer as a resource listener, this is done to override the default impl
if (jobEntryConsumer instanceof JobEntryExternalResourceListener) {
jobExec.job.addJobEntryListener((JobEntryExternalResourceListener) jobEntryConsumer);
} else {
jobExec.job.addJobEntryListener(new JobEntryExternalResourceListener());
}
}
}
} else {
// Add a JobEntryListener to collect external resource info after a job entry has finished
if (jobExec.job != null) {
jobExec.job.addJobEntryListener(new JobEntryExternalResourceListener());
}
}
}
}
}
}
}
use of org.pentaho.di.job.JobExecutionExtension in project pentaho-metaverse by pentaho.
the class JobEntryExternalResourceConsumerListenerTest method testCallJobEntryExtensionPoint.
@Test
public void testCallJobEntryExtensionPoint() throws Exception {
JobEntryExternalResourceConsumerListener jobEntryExtensionPoint = new JobEntryExternalResourceConsumerListener();
jobEntryExtensionPoint.setJobEntryExternalResourceConsumerProvider(MetaverseTestUtils.getJobEntryExternalResourceConsumerProvider());
JobExecutionExtension jobExec = mock(JobExecutionExtension.class);
JobEntryBase jobEntryBase = mock(JobEntryBase.class, withSettings().extraInterfaces(JobEntryInterface.class));
JobEntryInterface jobEntryInterface = (JobEntryInterface) jobEntryBase;
JobEntryCopy jobEntryCopy = mock(JobEntryCopy.class);
when(jobEntryCopy.getEntry()).thenReturn(jobEntryInterface);
jobExec.jobEntryCopy = jobEntryCopy;
jobEntryExtensionPoint.callExtensionPoint(null, jobExec);
// Adda consumer
Map<Class<? extends JobEntryBase>, Set<IJobEntryExternalResourceConsumer>> jobEntryConsumerMap = new JobEntryExternalResourceConsumerProvider().getJobEntryConsumerMap();
Set<IJobEntryExternalResourceConsumer> consumers = new HashSet<IJobEntryExternalResourceConsumer>();
jobEntryConsumerMap.put(jobEntryBase.getClass(), consumers);
jobEntryExtensionPoint.callExtensionPoint(null, jobExec);
IJobEntryExternalResourceConsumer consumer = mock(IJobEntryExternalResourceConsumer.class);
when(consumer.getResourcesFromMeta(Mockito.any())).thenReturn(Collections.emptyList());
consumers.add(consumer);
Job mockJob = mock(Job.class);
when(jobEntryInterface.getParentJob()).thenReturn(mockJob);
jobExec.job = mockJob;
jobEntryExtensionPoint.callExtensionPoint(null, jobExec);
when(consumer.isDataDriven(Mockito.any())).thenReturn(Boolean.TRUE);
jobEntryExtensionPoint.callExtensionPoint(null, jobExec);
}
use of org.pentaho.di.job.JobExecutionExtension in project pentaho-kettle by pentaho.
the class RunConfigurationInjectExtensionPoint method callExtensionPoint.
@Override
public void callExtensionPoint(LogChannelInterface log, Object object) throws KettleException {
if (!(object instanceof JobExecutionExtension)) {
return;
}
JobExecutionExtension extension = (JobExecutionExtension) object;
Job job = extension.job;
JobMeta jobMeta = job.getJobMeta();
final EmbeddedMetaStore embeddedMetaStore = jobMeta.getEmbeddedMetaStore();
RunConfigurationManager embeddedRunConfigurationManager = EmbeddedRunConfigurationManager.build(embeddedMetaStore);
// will load and save to meta all run configurations
for (JobEntryTrans trans : job.getActiveJobEntryTransformations().values()) {
RunConfiguration loadedRunConfiguration = runConfigurationManager.load(jobMeta.environmentSubstitute(trans.getRunConfiguration()));
embeddedRunConfigurationManager.save(loadedRunConfiguration);
}
for (JobEntryJob subJob : job.getActiveJobEntryJobs().values()) {
RunConfiguration loadedRunConfiguration = runConfigurationManager.load(jobMeta.environmentSubstitute(subJob.getRunConfiguration()));
embeddedRunConfigurationManager.save(loadedRunConfiguration);
}
}
Aggregations