blob: 793ba59baa12bf16f93de459e927d1e4629708c2 [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.sysds.runtime.instructions.fed;
import org.apache.commons.lang3.tuple.Pair;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.sysds.runtime.DMLRuntimeException;
import org.apache.sysds.runtime.controlprogram.context.ExecutionContext;
import org.apache.sysds.runtime.instructions.cp.VariableCPInstruction;
import org.apache.sysds.runtime.instructions.cp.VariableCPInstruction.VariableOperationCode;
import org.apache.sysds.runtime.lineage.LineageItem;
import org.apache.sysds.runtime.lineage.LineageTraceable;
public class VariableFEDInstruction extends FEDInstruction implements LineageTraceable {
private static final Log LOG = LogFactory.getLog(VariableFEDInstruction.class.getName());
private final VariableCPInstruction _in;
protected VariableFEDInstruction(VariableCPInstruction in) {
super(null, in.getOperator(), in.getOpcode(), in.getInstructionString());
_in = in;
}
public static VariableFEDInstruction parseInstruction(VariableCPInstruction cpInstruction) {
return new VariableFEDInstruction(cpInstruction);
}
@Override
public void processInstruction(ExecutionContext ec) {
VariableOperationCode opcode = _in.getVariableOpcode();
switch(opcode) {
case Write:
processWriteInstruction(ec);
break;
default:
throw new DMLRuntimeException("Unsupported Opcode for federated Variable Instruction : " + opcode);
}
}
private void processWriteInstruction(ExecutionContext ec) {
LOG.warn("Processing write command federated");
// TODO Add write command to the federated site if the matrix has been modified
// this has to be done while appending some string to the federated output file.
// furthermore the outputted file on the federated sites path should be returned
// the controller.
_in.processInstruction(ec);
}
@Override
public Pair<String, LineageItem> getLineageItem(ExecutionContext ec) {
return _in.getLineageItem(ec);
}
}