blob: 9e0c0a57373f1d333e4f9f1261b6a940c1a0072f [file] [log] [blame]
package org.eclipse.basyx.examples.snippets.aas.submodels;
import static org.junit.Assert.assertTrue;
import java.util.List;
import java.util.Map;
import org.eclipse.basyx.aas.api.resources.ISubModel;
import org.eclipse.basyx.aas.backend.connected.ConnectedAssetAdministrationShellManager;
import org.eclipse.basyx.aas.backend.connector.http.HTTPConnectorProvider;
import org.eclipse.basyx.aas.metamodel.factory.MetaModelElementFactory;
import org.eclipse.basyx.aas.metamodel.hashmap.aas.SubModel;
import org.eclipse.basyx.aas.metamodel.hashmap.aas.submodelelement.SubmodelElement;
import org.eclipse.basyx.aas.metamodel.hashmap.aas.submodelelement.SubmodelElementCollection;
import org.eclipse.basyx.aas.metamodel.hashmap.aas.submodelelement.property.Property;
import org.eclipse.basyx.components.servlet.submodel.SubmodelServlet;
import org.eclipse.basyx.examples.contexts.BaSyxExamplesContext_Empty;
import org.eclipse.basyx.examples.deployment.BaSyxDeployment;
import org.eclipse.basyx.examples.support.directory.ExampleAASRegistry;
import org.eclipse.basyx.examples.support.directory.ExamplesPreconfiguredDirectory;
import org.eclipse.basyx.vab.core.VABConnectionManager;
import org.eclipse.basyx.vab.core.proxy.VABElementProxy;
import org.junit.ClassRule;
import org.junit.Test;
/**
* Code snippet that illustrates the use of CRUD Virtual Automation Bus (VAB) operations
*
* The snippet communicates with a VAB element that is deployed to a VABLambdaServlet on a
* Apache Tomcat HTTP server instance. The VABLambdaServlet provides an empty container that
* is able to host any VAB object.
*
* @author kuhn
*
*/
public class ConnectToAASSubModelVAB {
/**
* Example sub model. This example sub model is created with the BaSyx SDK factory and defines the AAS meta model properties
*/
static class SampleSubModel extends SubModel {
/**
* Version number of serialized instance
*/
private static final long serialVersionUID = 1L;
/**
* Constructor - create sub model
*
* This sub model contains static properties, i.e. properties that have a static value assigned.
*/
@SuppressWarnings("unchecked")
public SampleSubModel() {
// Set sub model ID
setId("sm-001");
// Create factory that helps with property creation
// - This factory creates sub model properties and ensures presence of all meta data
MetaModelElementFactory fac = new MetaModelElementFactory();
// Add example properties
// - Add simple property
getProperties().put(fac.create(new Property(), 234, "prop1"));
// - Add container property that holds other properties
List<SubmodelElement> containerProperties = fac.createList(
fac.create(new Property(), 123, "prop11")
);
// - Add container to property map
getProperties().put(fac.createContainer(new SubmodelElementCollection(), containerProperties, fac.emptyList(), "prop2"));
// Add another property manually to sub model container "properties"
{
((Map<String, Object>) this.get(PROPERTIES)).put("prop3", fac.create(new Property(), 17, "prop3"));
}
}
}
/**
* Create VAB connection manager backend
*
* The connection manager uses a preconfigured directory for resolving IDs to
* network addresses, and a HTTP connector to connect to VAB objects.
*/
protected VABConnectionManager connManager = new VABConnectionManager(
// Add example specific mappings
new ExamplesPreconfiguredDirectory()
// - SDK connectors encapsulate relative path to sub model (/aas/submodels/sm-001)
.addMapping("aas-001", "http://localhost:8080/basys.examples/Testsuite/components/BaSys/1.0/SampleModel")
.addMapping("sm-001", "http://localhost:8080/basys.examples/Testsuite/components/BaSys/1.0/SampleModel")
.addMapping("sm-001VAB", "http://localhost:8080/basys.examples/Testsuite/components/BaSys/1.0/SampleModel/aas/submodels/sm-001"),
// We connect via HTTP
new HTTPConnectorProvider());
protected ConnectedAssetAdministrationShellManager manager = new ConnectedAssetAdministrationShellManager(
new ExampleAASRegistry()
.addAASMapping("aas-001", "http://localhost:8080/basys.examples/Testsuite/components/BaSys/1.0/SampleModel")
.addAASMapping("sm-001", "http://localhost:8080/basys.examples/Testsuite/components/BaSys/1.0/SampleModel")
.addAASMapping("sm-001VAB", "http://localhost:8080/basys.examples/Testsuite/components/BaSys/1.0/SampleModel/aas/submodels/sm-001"),
// We connect via HTTP
new HTTPConnectorProvider());
/**
* The BaSyx Deployment instantiates and starts context elements for this example.
*
* This example instantiates the BaSyxExamplesContext_1MemoryAASServer_1SQLDirectory
* example context that creates one AAS server, and one SQL based AAS registry.
*
* BaSyxDeployment contexts instantiate all components on the IP address of the host.
* Therefore, all components use the same IP address.
*/
@ClassRule
public static BaSyxDeployment context = new BaSyxDeployment(
// Servlets for example snippet
new BaSyxExamplesContext_Empty().
// Deploy example specific servlets to Tomcat server in this context
addServletMapping("/Testsuite/components/BaSys/1.0/SampleModel/*", new SubmodelServlet(new SampleSubModel()))
);
/**
* Run code snippet. Access sub model, query data
*/
@Test @SuppressWarnings("unchecked")
public void accessSubModel() throws Exception {
// Retrieve sub model (created by factory) with SDK connector
// Connect to sub model using lower-level VAB interface
VABElementProxy connSubModel1 = this.connManager.connectToVABElement("sm-001VAB");
// - Read properties
String prop1Id = (String) ((Map<String, Object>) connSubModel1.readElementValue("dataElements/prop1"))
.get("idShort");
int prop1Val = (int) connSubModel1.readElementValue("dataElements/prop1/value");
int prop3Val = (int) connSubModel1.readElementValue("dataElements/prop3/value");
String prop2Id = (String) ((Map<String, Object>) connSubModel1.readElementValue("dataElements/prop2"))
.get("idShort");
int prop211 = (int) connSubModel1.readElementValue("dataElements/prop2/dataElements/prop11/value");
// - Change property value using VAB primitive
connSubModel1.updateElementValue("dataElements/prop1/value", 456);
// - Read value back using VAB primitive
int changedProp = (int) connSubModel1.readElementValue("dataElements/prop1/value");
// Create and connect SDK connector
ISubModel subModel = manager.retrieveSM("sm-001");
// - Retrieve sub model values and compare to expected values
String smID = subModel.getId();
// Check results
assertTrue(smID.equals("sm-001"));
assertTrue(prop1Id.equals("prop1"));
assertTrue(prop1Val == 234);
assertTrue(prop3Val == 17);
assertTrue(prop2Id.equals("prop2"));
assertTrue(prop211 == 123);
assertTrue(changedProp == 456);
}
}