001/**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.activemq.store.kahadb.scheduler;
018
019import org.apache.activemq.broker.scheduler.Job;
020import org.apache.activemq.broker.scheduler.JobSupport;
021import org.apache.activemq.util.ByteSequence;
022
023public class JobImpl implements Job {
024
025    private final JobLocation jobLocation;
026    private final byte[] payload;
027
028    protected JobImpl(JobLocation location, ByteSequence bs) {
029        this.jobLocation = location;
030        this.payload = new byte[bs.getLength()];
031        System.arraycopy(bs.getData(), bs.getOffset(), this.payload, 0, bs.getLength());
032    }
033
034    @Override
035    public String getJobId() {
036        return this.jobLocation.getJobId();
037    }
038
039    @Override
040    public byte[] getPayload() {
041        return this.payload;
042    }
043
044    @Override
045    public long getPeriod() {
046        return this.jobLocation.getPeriod();
047    }
048
049    @Override
050    public int getRepeat() {
051        return this.jobLocation.getRepeat();
052    }
053
054    @Override
055    public long getStart() {
056        return this.jobLocation.getStartTime();
057    }
058
059    @Override
060    public long getDelay() {
061        return this.jobLocation.getDelay();
062    }
063
064    @Override
065    public String getCronEntry() {
066        return this.jobLocation.getCronEntry();
067    }
068
069    @Override
070    public String getNextExecutionTime() {
071        return JobSupport.getDateTime(this.jobLocation.getNextTime());
072    }
073
074    @Override
075    public String getStartTime() {
076        return JobSupport.getDateTime(getStart());
077    }
078
079    @Override
080    public int getExecutionCount() {
081        return this.jobLocation.getRescheduledCount();
082    }
083
084    @Override
085    public String toString() {
086        return "Job: " + getJobId();
087    }
088}