Package org.apache.airavata.gfac.core.monitor

Source Code of org.apache.airavata.gfac.core.monitor.AiravataJobStatusUpdator

/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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.apache.airavata.gfac.core.monitor;

import com.google.common.eventbus.Subscribe;
import org.apache.airavata.gfac.core.monitor.state.JobStatusChangeRequest;
import org.apache.airavata.gfac.core.monitor.state.TaskStatusChangeRequest;
import org.apache.airavata.gfac.core.notification.MonitorPublisher;
import org.apache.airavata.model.workspace.experiment.JobDetails;
import org.apache.airavata.model.workspace.experiment.JobState;
import org.apache.airavata.model.workspace.experiment.TaskState;
import org.apache.airavata.registry.cpi.CompositeIdentifier;
import org.apache.airavata.registry.cpi.RegistryModelType;
import org.apache.airavata.registry.cpi.Registry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Calendar;
import java.util.concurrent.BlockingQueue;

public class AiravataJobStatusUpdator implements AbstractActivityListener {
    private final static Logger logger = LoggerFactory.getLogger(AiravataJobStatusUpdator.class);

    private Registry airavataRegistry;

    private MonitorPublisher monitorPublisher;


    public Registry getAiravataRegistry() {
        return airavataRegistry;
    }

    public void setAiravataRegistry(Registry airavataRegistry) {
        this.airavataRegistry = airavataRegistry;
    }


    @Subscribe
    public void updateRegistry(JobStatusChangeRequest jobStatus) {
        /* Here we need to parse the jobStatus message and update
                the registry accordingly, for now we are just printing to standard Out
                 */
        JobState state = jobStatus.getState();
        if (state != null) {
            try {
                String taskID = jobStatus.getIdentity().getTaskId();
                String jobID = jobStatus.getIdentity().getJobId();
                updateJobStatus(taskID, jobID, state);
            } catch (Exception e) {
                logger.error("Error persisting data" + e.getLocalizedMessage(), e);
            }
            logger.info("Job ID:" + jobStatus.getIdentity().getJobId() + " is "+state.toString());
        }
    }

    @Subscribe
    public void setupTaskStatus(JobStatusChangeRequest jobStatus){
      TaskState state=TaskState.UNKNOWN;
      switch(jobStatus.getState()){
      case ACTIVE:
        state=TaskState.EXECUTING; break;
      case CANCELED:
        state=TaskState.CANCELED; break;
      case COMPLETE:
        state=TaskState.COMPLETED; break;
      case FAILED:
        state=TaskState.FAILED; break;
      case HELD: case SUSPENDED: case QUEUED:
        state=TaskState.WAITING; break;
      case SETUP:
        state=TaskState.PRE_PROCESSING; break;
      case SUBMITTED:
        state=TaskState.STARTED; break;
      case UN_SUBMITTED:
        state=TaskState.CANCELED; break;
      case CANCELING:
        state=TaskState.CANCELING; break;
    default:
      break;
      }
      logger.debug("Publishing Task Status "+state.toString());
      monitorPublisher.publish(new TaskStatusChangeRequest(jobStatus.getIdentity(),state));
    }

    public  void updateJobStatus(String taskId, String jobID, JobState state) throws Exception {
        CompositeIdentifier ids = new CompositeIdentifier(taskId, jobID);
        JobDetails details = (JobDetails)airavataRegistry.get(RegistryModelType.JOB_DETAIL, ids);
        if(details == null) {
            details = new JobDetails();
        }
        org.apache.airavata.model.workspace.experiment.JobStatus status = new org.apache.airavata.model.workspace.experiment.JobStatus();
        status.setJobState(state);
        status.setTimeOfStateChange(Calendar.getInstance().getTimeInMillis());
        details.setJobStatus(status);
        details.setJobID(jobID);
        airavataRegistry.update(RegistryModelType.JOB_DETAIL, details, ids);
    }

  @SuppressWarnings("unchecked")
  public void setup(Object... configurations) {
    for (Object configuration : configurations) {
      if (configuration instanceof Registry){
        this.airavataRegistry=(Registry)configuration;
      } else if (configuration instanceof MonitorPublisher){
        this.monitorPublisher=(MonitorPublisher) configuration;
      }
    }
  }
}
TOP

Related Classes of org.apache.airavata.gfac.core.monitor.AiravataJobStatusUpdator

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.