Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Implement an exemplary OPC UA subscriber #14

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ categories = ["command-line-utilities"]


[dependencies]
opcua = { version = "0.12.0", features = ["client", "console-logging"] }

[dev-dependencies]
opcua = { version = "0.12.0", features = ["server", "console-logging"] }
Expand Down
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
mod simple_opc_ua_subscriber;

fn main() {
println!("Hello, voraus!");
simple_opc_ua_subscriber::launch_subscriber().unwrap();
}
105 changes: 105 additions & 0 deletions src/simple_opc_ua_subscriber.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
use std::sync::Arc;

use opcua::client::prelude::{
ClientBuilder, DataChangeCallback, IdentityToken, MonitoredItem, MonitoredItemService, Session,
SubscriptionService,
};
use opcua::crypto::SecurityPolicy;
use opcua::sync::RwLock;
use opcua::types::{
MessageSecurityMode, MonitoredItemCreateRequest, NodeId, StatusCode, TimestampsToReturn,
UserTokenPolicy,
};

const DEFAULT_URL: &str = "opc.tcp://127.0.0.1:4855";

pub fn launch_subscriber() -> Result<(), ()> {
// Optional - enable OPC UA logging
opcua::console_logging::init();

// Make the client configuration
let mut client = ClientBuilder::new()
.application_name("Simple Subscriber")
.application_uri("urn:SimpleSubscriber")
.product_uri("urn:SimpleSubscriber")
.trust_server_certs(true)
.create_sample_keypair(true)
.session_retry_limit(5)
.client()
.unwrap();

if let Ok(session) = client.connect_to_endpoint(
(
DEFAULT_URL,
SecurityPolicy::None.to_str(),
MessageSecurityMode::None,
UserTokenPolicy::anonymous(),
),
IdentityToken::Anonymous,
) {
if let Err(result) = subscribe_to_variables(session.clone(), 2) {
println!(
"ERROR: Got an error while subscribing to variables - {}",
result
);
} else {
// Loops forever. The publish thread will call the callback with changes on the variables
Session::run(session);
}
}
Ok(())
}

fn subscribe_to_variables(session: Arc<RwLock<Session>>, namespace: u16) -> Result<(), StatusCode> {
let session = session.read();
// Creates a subscription with a data change callback
let publishing_interval_ms: f64 = 10.0;
let lifetime_count: u32 = 10;
let max_keep_alive_count: u32 = 30;
let max_notifications_per_publish: u32 = 0;
let priority: u8 = 0;
let publishing_enabled: bool = true;

let subscription_id = session.create_subscription(
publishing_interval_ms,
lifetime_count,
max_keep_alive_count,
max_notifications_per_publish,
priority,
publishing_enabled,
DataChangeCallback::new(|changed_monitored_items| {
println!("Data change from server:");
changed_monitored_items
.iter()
.for_each(|item| print_value(item));
}),
)?;
println!("Created a subscription with id = {}", subscription_id);

// Create some monitored items
let items_to_create: Vec<MonitoredItemCreateRequest> = ["ticks_since_launch"]
.iter()
.map(|v| NodeId::new(namespace, *v).into())
.collect();
let _ = session.create_monitored_items(
subscription_id,
TimestampsToReturn::Both,
&items_to_create,
)?;

Ok(())
}

fn print_value(item: &MonitoredItem) {
let node_id = &item.item_to_monitor().node_id;
let data_value = item.last_value();
if let Some(ref value) = data_value.value {
println!("Item \"{}\", Value = {:?}", node_id, value);
} else {
println!(
"Item \"{}\", Value not found, error: {}",
node_id,
data_value.status.as_ref().unwrap()
);
}
}