001/**
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *      http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018
019package org.apache.oozie.command;
020
021import org.apache.oozie.client.Job;
022
023public abstract class ResumeTransitionXCommand extends TransitionXCommand<Void> {
024
025    /**
026     * Resume all children of the job
027     *
028     * @throws CommandException
029     */
030    public abstract void resumeChildren() throws CommandException;
031
032    public ResumeTransitionXCommand(String name, String type, int priority) {
033        super(name, type, priority);
034    }
035
036    public ResumeTransitionXCommand(String name, String type, int priority, boolean dryrun) {
037        super(name, type, priority, dryrun);
038    }
039
040    /**
041     * Transit job to PREP from PREPSUSPENDED or to RUNNING from SUSPENDED.
042     *
043     * @see org.apache.oozie.command.TransitionXCommand#transitToNext()
044     */
045    @Override
046    public void transitToNext() {
047        if (job == null) {
048            job = this.getJob();
049        }
050        if (job.getStatus() == Job.Status.PREPSUSPENDED) {
051            job.setStatus(Job.Status.PREP);
052        }
053        else if (job.getStatus() == Job.Status.SUSPENDED) {
054            job.setStatus(Job.Status.RUNNING);
055        }
056        else if (job.getStatus() == Job.Status.SUSPENDEDWITHERROR) {
057            job.setStatus(Job.Status.RUNNINGWITHERROR);
058        }
059        job.setPending();
060    }
061
062    /* (non-Javadoc)
063     * @see org.apache.oozie.command.XCommand#execute()
064     */
065    @Override
066    protected Void execute() throws CommandException {
067        transitToNext();
068        try {
069            resumeChildren();
070            updateJob();
071            performWrites();
072        } finally {
073            notifyParent();
074        }
075        return null;
076    }
077}