Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
python [2021/08/11 10:52] wikiadmin created |
python [2024/09/19 15:57] (current) wikiadmin |
||
---|---|---|---|
Line 3: | Line 3: | ||
Most of the complexity is removed by the definitions you created in TransSECS. | Most of the complexity is removed by the definitions you created in TransSECS. | ||
- | The python wrapper uses the [[JPype|https:// | + | The python wrapper uses the [[https:// |
- | + | For the tool, | |
- | Message notifications are received as JSON maps so that each of the published elements in the message are available directly. | + | |
For the host,copy the GEMHostRuntime.jar from the TransSECS GEMHost project into the build folder | For the host,copy the GEMHostRuntime.jar from the TransSECS GEMHost project into the build folder | ||
- | The samples, even though simple, demonstrates all the features required | + | The sample, demonstrates all the features required |
- | + | ||
- | In the host code, publish variables you need to change | + | |
- | For example, to set the hostname, you publish to that variable: | + | Here's the code sample from the python wrapper |
- | + | ||
- | <code rust> | + | |
- | wrapper.publish_string(" | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | And Events (CEIDs) received as JSON Strings that contains the values configured in TransSECS. | + | |
- | + | ||
- | <code javascript> | + | |
- | { " | + | |
- | </ | + | |
- | + | ||
- | The sample code receives and unpacks that structure: | + | |
- | + | ||
- | <code rust> | + | |
- | wrapper.subscribe(" | + | |
- | println!(" | + | |
- | if let Value:: | + | |
- | // The ceid appears as a json object, which we can parse for example with serde_json | + | |
- | let parsed: | + | |
- | // We'll just immediately reserialize the json to demonstrate that we have the fields | + | |
- | println!(" | + | |
- | } | + | |
- | }).unwrap(); | + | |
- | </ | + | |
- | The tool can subscribe to be notified of the change in value of any VID - used for ECIDs and GEM internal variables: | + | |
- | + | ||
- | <code rust> | + | |
- | wrapper.subscribe(" | + | |
- | println!(" | + | |
- | }).unwrap(); | + | |
- | </ | + | |
- | + | ||
- | Here's the code sample from the rustwrapper | + | |
<code python> | <code python> | ||
Line 57: | Line 20: | ||
from jpype.types import * | from jpype.types import * | ||
- | jpype.startJVM(classpath=[' | + | jpype.startJVM(classpath=[' |
from com.ergotech.util import SimulationManager | from com.ergotech.util import SimulationManager | ||
- | from deploy.GEMHost | + | from deploy.GEMTool |
+ | from com.ergotech.transsecs.secs.gem import GemHandler | ||
+ | from com.ergotech.vib.valueobjects import DoubleValueObject, | ||
import time | import time | ||
+ | import random | ||
- | hostname = " | + | # Configuration |
port = 5010 | port = 5010 | ||
deviceid = 1 | deviceid = 1 | ||
+ | online = 1 # Online state | ||
+ | remote = 1 # Remote state | ||
+ | # Initialize the equipment controller | ||
SimulationManager.getSimulationManager().setSimulating(False) | SimulationManager.getSimulationManager().setSimulating(False) | ||
- | + | equipment | |
- | host = EquipmentController() | + | host.setPort(port) |
- | host.setEquipmentHostName(hostname) | + | |
- | host.setActivePort(port) | + | |
host.setDeviceId(deviceid) | host.setDeviceId(deviceid) | ||
host.init() | host.init() | ||
host.start() | host.start() | ||
- | def event_received(ceid, event_report_values): | + | # Set initial VID values |
- | print("Event received: " + str(ceid) + " with values: | + | host.setIntValue(33006, online) # Go Online |
+ | host.setIntValue(33005, remote) # Allow Local-Remote transition | ||
- | d = {' | + | # Get the gemHandler for setting VID values using names |
- | listener_proxy | + | gemHandler |
+ | gemHandler.setValue("MDLN", StringValueObject(" | ||
+ | gemHandler.setValue(" | ||
- | # Add a listener | + | # Example of setting OnlineOfflineState using VID name |
- | host.setGlobalEventListener(listener_proxy) | + | gemHandler.setValue(" |
+ | |||
+ | # Get data source container | ||
+ | # container = DataSourceContainer.getRootContainer().getContainer(" | ||
+ | |||
+ | # Event and Alarm setup | ||
+ | gemEvent = gemHandler.getServerForName(" | ||
+ | alarm = gemHandler.getServerForName(" | ||
+ | |||
+ | # Host Command START Notifier | ||
+ | class HostCommandSTARTNotifier: | ||
+ | def messageReceived(self, | ||
+ | print(f" | ||
+ | hostCommand = message | ||
+ | command = hostCommand.getCommand() | ||
+ | print(f" | ||
+ | if command != " | ||
+ | print(" | ||
+ | self.sendErrorResponse(1) | ||
+ | return | ||
+ | |||
+ | print(" | ||
+ | self.sendOKResponse() | ||
+ | |||
+ | def sendErrorResponse(self, | ||
+ | connection = GemIDConnection.createConnection(" | ||
+ | response = connection.getController().getMessageBean(" | ||
+ | response.setHCACK([hcack]) | ||
+ | response.sendMessage() | ||
+ | |||
+ | def sendOKResponse(self): | ||
+ | connection = GemIDConnection.createConnection(" | ||
+ | response = connection.getController().getMessageBean(" | ||
+ | response.sendMessage() | ||
+ | |||
+ | # Register the notifier | ||
+ | notifier_proxy = JProxy(" | ||
+ | controller.registerForReceiveNotification(" | ||
+ | |||
+ | print(" | ||
+ | |||
+ | # Main loop to change some SVID values and trigger alarms/ | ||
+ | cycles = 0 | ||
+ | waferCount = 0 | ||
+ | alarm_set = False | ||
while True: | while True: | ||
- | print(' | + | |
- | time.sleep(10)</ | + | # Update process variables |
+ | gemHandler.setValue(" | ||
+ | gemHandler.setValue(" | ||
+ | |||
+ | # Increment the wafer count every 20 cycles | ||
+ | if cycles % 20 == 0: | ||
+ | waferCount += 1 | ||
+ | gemHandler.setValue(" | ||
+ | |||
+ | # Trigger the event every 120 cycles | ||
+ | if cycles % 120 == 0: | ||
+ | gemEvent.setBooleanValue(True) | ||
+ | | ||
+ | else: | ||
+ | gemEvent.setBooleanValue(False) | ||
+ | |||
+ | # Check for alarm conditions | ||
+ | temperature = gemHandler.getServerForName(" | ||
+ | if temperature > 128.5 and not alarm_set: | ||
+ | alarm.set() | ||
+ | alarm_set = True | ||
+ | print(" | ||
+ | elif alarm_set: | ||
+ | alarm.clear() | ||
+ | alarm_set = False | ||
+ | print(" | ||
+ | |||
+ | # Wait for next cycle | ||
+ | time.sleep(0.5) | ||
+ | </ |