Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
rust [2021/08/11 10:46] wikiadmin |
rust [2024/05/21 17:01] (current) wikiadmin |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | This GEM Rust host example uses the code generated from TransSECS using the Native/C++ deployment option. | + | This GEM Rust host example uses the code generated from TransSECS using the Native/C++ deployment option. |
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. | ||
Line 7: | Line 7: | ||
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 samples, even though simple, demonstrates all the features required to collect data from a host. |
In the host code, publish variables you need to change in the interface, here the port, hostname, deviceid, etc. and subscribe to elements to receive data updates. | In the host code, publish variables you need to change in the interface, here the port, hostname, deviceid, etc. and subscribe to elements to receive data updates. | ||
- | For example | + | For example, to set the hostname, you publish to that variable: |
<code rust> | <code rust> | ||
Line 49: | Line 49: | ||
<code rust> | <code rust> | ||
//! Simple GEM host example showing how to start a host and subscribe to some variables | //! Simple GEM host example showing how to start a host and subscribe to some variables | ||
- | |||
use transsecs:: | use transsecs:: | ||
- | use transsecs:: | + | use transsecs:: |
use std:: | use std:: | ||
- | + | use serde::{Deserialize, | |
- | use serde:: | + | use serde:: |
+ | use anyhow:: | ||
# | # | ||
struct LoadedCeid { | struct LoadedCeid { | ||
Line 61: | Line 60: | ||
reports: | reports: | ||
} | } | ||
- | |||
- | |||
# | # | ||
struct Report { | struct Report { | ||
- | # | + | # |
values: | values: | ||
} | } | ||
- | |||
# | # | ||
# | # | ||
Line 74: | Line 70: | ||
LotID{ | LotID{ | ||
# | # | ||
- | lot_id: | + | lot_id: |
# | # | ||
type_int: | type_int: | ||
}, | }, | ||
- | | + | |
- | # | + | # |
- | | + | |
# | # | ||
type_int: | type_int: | ||
- | }, | + | } |
- | | + | } |
- | #[serde(rename="WaferCount")] | + | # |
- | | + | struct SecsValue { |
- | # | + | value: String, |
- | | + | } |
+ | impl Serialize for SecsValue { | ||
+ | fn serialize< | ||
+ | where | ||
+ | S: Serializer, | ||
+ | { | ||
+ | | ||
+ | s.serialize_field(" | ||
+ | s.serialize_field(" | ||
+ | s.end() | ||
+ | } | ||
+ | } | ||
+ | #[derive(Deserialize)] | ||
+ | struct CommandParams { | ||
+ | values: Vec< | ||
+ | } | ||
+ | struct TupleAsObject<' | ||
+ | impl<' | ||
+ | fn serialize< | ||
+ | where | ||
+ | S: Serializer, | ||
+ | { | ||
+ | let mut s = serializer.serialize_struct("TupleAsObject", 2)?; | ||
+ | s.serialize_field(" | ||
+ | | ||
+ | s.end() | ||
+ | } | ||
+ | } | ||
+ | impl Serialize for CommandParams { | ||
+ | fn serialize< | ||
+ | where | ||
+ | | ||
+ | { | ||
+ | let values: Vec< | ||
+ | let mut s = serializer.serialize_struct(" | ||
+ | s.serialize_field(" | ||
+ | s.end() | ||
+ | } | ||
+ | } | ||
+ | # | ||
+ | struct S2F41 { | ||
+ | | ||
+ | | ||
+ | # | ||
+ | command_params: | ||
} | } | ||
- | |||
// examples/ | // examples/ | ||
- | fn main() { | + | fn main() |
- | let wrapper = TransSecsWrapper:: | + | let mut wrapper = TransSecsWrapper:: |
let port = 5010; | let port = 5010; | ||
wrapper.publish_string(" | wrapper.publish_string(" | ||
Line 100: | Line 138: | ||
wrapper.publish_int(" | wrapper.publish_int(" | ||
wrapper.publish_int(" | wrapper.publish_int(" | ||
- | |||
wrapper.start_main(" | wrapper.start_main(" | ||
- | |||
wrapper.subscribe(" | wrapper.subscribe(" | ||
println!(" | println!(" | ||
Line 112: | Line 148: | ||
} | } | ||
}).unwrap(); | }).unwrap(); | ||
- | + | | |
- | | + | |
println!(" | println!(" | ||
}).unwrap(); | }).unwrap(); | ||
- | |||
wrapper.subscribe(" | wrapper.subscribe(" | ||
println!(" | println!(" | ||
}).unwrap(); | }).unwrap(); | ||
- | | + | |
+ | wrapper.set_gem_model(gem_model_json).unwrap(); | ||
loop{ | loop{ | ||
+ | let host_command_start = S2F41 { | ||
+ | command: SecsValue { | ||
+ | value: " | ||
+ | }, | ||
+ | command_params: | ||
+ | values: vec![ | ||
+ | (SecsValue { | ||
+ | value: " | ||
+ | }, | ||
+ | SecsValue { | ||
+ | value: " | ||
+ | }) | ||
+ | ] | ||
+ | }, | ||
+ | }; | ||
+ | // wrapper.publish_json(" | ||
+ | // wrapper.publish_json(" | ||
+ | let complicated_s2f41 = include_str!(" | ||
+ | wrapper.publish_json(" | ||
thread:: | thread:: | ||
} // If we drop the wrapper, it will cleanup the jvm | } // If we drop the wrapper, it will cleanup the jvm | ||
} | } | ||
</ | </ |