blob: 7687a76d0865ebe560b5e184804974411fb9d7aa [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.app.basic.math;
import org.eclipse.sensinact.gateway.app.api.function.DataItf;
import org.eclipse.sensinact.gateway.common.bundle.Mediator;
import org.json.JSONObject;
import org.json.JSONTokener;
import org.osgi.framework.BundleContext;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.List;
/**
* This class implements the assignment function
*
* @author Remi Druilhe
* @see MathFunction
*/
public class AssignmentFunction extends MathFunction<Object> {
private static final String JSON_SCHEMA = "assignment.json";
public AssignmentFunction(Mediator mediator) {
super(mediator);
}
/**
* Gets the JSON schema of the function from the plugin
*
* @param context the context of the bundle
* @return the JSON schema of the function
*/
public static JSONObject getJSONSchemaFunction(BundleContext context) {
try {
return new JSONObject(new JSONTokener(new InputStreamReader(context.getBundle().getResource("/" + JSON_SCHEMA).openStream())));
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
/**
* @see AbstractFunction#process(List)
*/
public void process(List<DataItf> variables) {
/*if(variables.size() == 2) {
((ComponentData) variables.get(1)).setValue(variables.get(0).getValue());
}*/
super.update(variables.get(0).getValue());
}
}