blob: f52cc7fb07b6ba3197140b20c85455907a24549a [file] [log] [blame]
/*
* 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.reef.runtime.common.driver.evaluator;
import org.apache.reef.annotations.audience.DriverSide;
import org.apache.reef.annotations.audience.Private;
import org.apache.reef.driver.catalog.NodeDescriptor;
import org.apache.reef.driver.evaluator.EvaluatorDescriptor;
import org.apache.reef.driver.evaluator.EvaluatorProcess;
/**
* A simple all-data implementation of EvaluatorDescriptor.
*/
@Private
@DriverSide
final class EvaluatorDescriptorImpl implements EvaluatorDescriptor {
private final NodeDescriptor nodeDescriptor;
private final int megaBytes;
private final int numberOfCores;
private EvaluatorProcess process;
private final String runtimeName;
EvaluatorDescriptorImpl(final NodeDescriptor nodeDescriptor,
final int megaBytes,
final int numberOfCores,
final EvaluatorProcess process,
final String runtimeName) {
this.nodeDescriptor = nodeDescriptor;
this.megaBytes = megaBytes;
this.numberOfCores = numberOfCores;
this.process = process;
this.runtimeName = runtimeName;
}
@Override
public NodeDescriptor getNodeDescriptor() {
return this.nodeDescriptor;
}
@Override
public synchronized EvaluatorProcess getProcess() {
if (null == this.process) {
throw new IllegalArgumentException("EvaluatorProcess must be set");
}
return this.process;
}
public synchronized void setProcess(final EvaluatorProcess process) {
this.process = process;
}
@Override
public int getMemory() {
return this.megaBytes;
}
@Override
public int getNumberOfCores() {
return this.numberOfCores;
}
@Override
public String getRuntimeName() {
return this.runtimeName;
}
}