node-opcua-address-space 2.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mocharc.yml +12 -0
- package/LICENSE +20 -0
- package/dist/source/address_space_ts.d.ts +122 -0
- package/dist/source/address_space_ts.js +18 -0
- package/dist/source/address_space_ts.js.map +1 -0
- package/dist/source/continuation_points/continuation_point_manager.d.ts +21 -0
- package/dist/source/continuation_points/continuation_point_manager.js +100 -0
- package/dist/source/continuation_points/continuation_point_manager.js.map +1 -0
- package/dist/source/helpers/adjust_browse_direction.d.ts +5 -0
- package/dist/source/helpers/adjust_browse_direction.js +12 -0
- package/dist/source/helpers/adjust_browse_direction.js.map +1 -0
- package/dist/source/helpers/argument_list.d.ts +30 -0
- package/dist/source/helpers/argument_list.js +237 -0
- package/dist/source/helpers/argument_list.js.map +1 -0
- package/dist/source/helpers/call_helpers.d.ts +6 -0
- package/dist/source/helpers/call_helpers.js +71 -0
- package/dist/source/helpers/call_helpers.js.map +1 -0
- package/dist/source/helpers/check_event_clause.d.ts +17 -0
- package/dist/source/helpers/check_event_clause.js +53 -0
- package/dist/source/helpers/check_event_clause.js.map +1 -0
- package/dist/source/helpers/coerce_enum_value.d.ts +6 -0
- package/dist/source/helpers/coerce_enum_value.js +34 -0
- package/dist/source/helpers/coerce_enum_value.js.map +1 -0
- package/dist/source/helpers/dump_tools.d.ts +14 -0
- package/dist/source/helpers/dump_tools.js +79 -0
- package/dist/source/helpers/dump_tools.js.map +1 -0
- package/dist/source/helpers/ensure_secure_access.d.ts +9 -0
- package/dist/source/helpers/ensure_secure_access.js +90 -0
- package/dist/source/helpers/ensure_secure_access.js.map +1 -0
- package/dist/source/helpers/make_optionals_map.d.ts +21 -0
- package/dist/source/helpers/make_optionals_map.js +30 -0
- package/dist/source/helpers/make_optionals_map.js.map +1 -0
- package/dist/source/helpers/resolve_opaque_on_address_space.d.ts +3 -0
- package/dist/source/helpers/resolve_opaque_on_address_space.js +37 -0
- package/dist/source/helpers/resolve_opaque_on_address_space.js.map +1 -0
- package/dist/source/index.d.ts +39 -0
- package/dist/source/index.js +62 -0
- package/dist/source/index.js.map +1 -0
- package/dist/source/interfaces/alarms_and_conditions/condition_info_i.d.ts +12 -0
- package/dist/source/interfaces/alarms_and_conditions/condition_info_i.js +3 -0
- package/dist/source/interfaces/alarms_and_conditions/condition_info_i.js.map +1 -0
- package/dist/source/interfaces/alarms_and_conditions/ua_condition_base_i.d.ts +1 -0
- package/dist/source/interfaces/alarms_and_conditions/ua_condition_base_i.js +3 -0
- package/dist/source/interfaces/alarms_and_conditions/ua_condition_base_i.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_discrete_item.d.ts +4 -0
- package/dist/source/interfaces/data_access/ua_discrete_item.js +3 -0
- package/dist/source/interfaces/data_access/ua_discrete_item.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_multistate_discrete.d.ts +25 -0
- package/dist/source/interfaces/data_access/ua_multistate_discrete.js +3 -0
- package/dist/source/interfaces/data_access/ua_multistate_discrete.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_multistate_discrete_ex.d.ts +21 -0
- package/dist/source/interfaces/data_access/ua_multistate_discrete_ex.js +3 -0
- package/dist/source/interfaces/data_access/ua_multistate_discrete_ex.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_multistate_value_discrete.d.ts +27 -0
- package/dist/source/interfaces/data_access/ua_multistate_value_discrete.js +3 -0
- package/dist/source/interfaces/data_access/ua_multistate_value_discrete.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_multistate_value_discrete_ex.d.ts +24 -0
- package/dist/source/interfaces/data_access/ua_multistate_value_discrete_ex.js +3 -0
- package/dist/source/interfaces/data_access/ua_multistate_value_discrete_ex.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_two_state_discrete.d.ts +17 -0
- package/dist/source/interfaces/data_access/ua_two_state_discrete.js +3 -0
- package/dist/source/interfaces/data_access/ua_two_state_discrete.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_two_state_discrete_ex.d.ts +12 -0
- package/dist/source/interfaces/data_access/ua_two_state_discrete_ex.js +3 -0
- package/dist/source/interfaces/data_access/ua_two_state_discrete_ex.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_y_array_item.d.ts +4 -0
- package/dist/source/interfaces/data_access/ua_y_array_item.js +3 -0
- package/dist/source/interfaces/data_access/ua_y_array_item.js.map +1 -0
- package/dist/source/interfaces/data_access/ua_y_array_item_ex.d.ts +8 -0
- package/dist/source/interfaces/data_access/ua_y_array_item_ex.js +3 -0
- package/dist/source/interfaces/data_access/ua_y_array_item_ex.js.map +1 -0
- package/dist/source/interfaces/state_machine/exclusive_limit_state_machine.d.ts +11 -0
- package/dist/source/interfaces/state_machine/exclusive_limit_state_machine.js +3 -0
- package/dist/source/interfaces/state_machine/exclusive_limit_state_machine.js.map +1 -0
- package/dist/source/interfaces/state_machine/finite_state_machine.d.ts +69 -0
- package/dist/source/interfaces/state_machine/finite_state_machine.js +3 -0
- package/dist/source/interfaces/state_machine/finite_state_machine.js.map +1 -0
- package/dist/source/interfaces/state_machine/program_finite_state_machine.d.ts +74 -0
- package/dist/source/interfaces/state_machine/program_finite_state_machine.js +3 -0
- package/dist/source/interfaces/state_machine/program_finite_state_machine.js.map +1 -0
- package/dist/source/interfaces/state_machine/state_machine.d.ts +342 -0
- package/dist/source/interfaces/state_machine/state_machine.js +3 -0
- package/dist/source/interfaces/state_machine/state_machine.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_exclusive_limit_state_machine_type_ex.d.ts +12 -0
- package/dist/source/interfaces/state_machine/ua_exclusive_limit_state_machine_type_ex.js +3 -0
- package/dist/source/interfaces/state_machine/ua_exclusive_limit_state_machine_type_ex.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_finite_state_machine_type.d.ts +49 -0
- package/dist/source/interfaces/state_machine/ua_finite_state_machine_type.js +3 -0
- package/dist/source/interfaces/state_machine/ua_finite_state_machine_type.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_finite_state_variable.d.ts +18 -0
- package/dist/source/interfaces/state_machine/ua_finite_state_variable.js +3 -0
- package/dist/source/interfaces/state_machine/ua_finite_state_variable.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_program_state_machine_type.d.ts +11 -0
- package/dist/source/interfaces/state_machine/ua_program_state_machine_type.js +3 -0
- package/dist/source/interfaces/state_machine/ua_program_state_machine_type.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_state_machine_type.d.ts +222 -0
- package/dist/source/interfaces/state_machine/ua_state_machine_type.js +3 -0
- package/dist/source/interfaces/state_machine/ua_state_machine_type.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_state_variable.d.ts +29 -0
- package/dist/source/interfaces/state_machine/ua_state_variable.js +3 -0
- package/dist/source/interfaces/state_machine/ua_state_variable.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_transition_ex.d.ts +6 -0
- package/dist/source/interfaces/state_machine/ua_transition_ex.js +3 -0
- package/dist/source/interfaces/state_machine/ua_transition_ex.js.map +1 -0
- package/dist/source/interfaces/state_machine/ua_two_state_variable.d.ts +26 -0
- package/dist/source/interfaces/state_machine/ua_two_state_variable.js +3 -0
- package/dist/source/interfaces/state_machine/ua_two_state_variable.js.map +1 -0
- package/dist/source/interfaces/subscription_diagnostics_variable.d.ts +41 -0
- package/dist/source/interfaces/subscription_diagnostics_variable.js +3 -0
- package/dist/source/interfaces/subscription_diagnostics_variable.js.map +1 -0
- package/dist/source/interfaces/ua_authorisation_service.d.ts +1 -0
- package/dist/source/interfaces/ua_authorisation_service.js +3 -0
- package/dist/source/interfaces/ua_authorisation_service.js.map +1 -0
- package/dist/source/interfaces/ua_subscription_diagnostics_variable_ex.d.ts +8 -0
- package/dist/source/interfaces/ua_subscription_diagnostics_variable_ex.js +3 -0
- package/dist/source/interfaces/ua_subscription_diagnostics_variable_ex.js.map +1 -0
- package/dist/source/loader/generateAddressSpaceRaw.d.ts +10 -0
- package/dist/source/loader/generateAddressSpaceRaw.js +59 -0
- package/dist/source/loader/generateAddressSpaceRaw.js.map +1 -0
- package/dist/source/loader/load_nodeset2.d.ts +13 -0
- package/dist/source/loader/load_nodeset2.js +1392 -0
- package/dist/source/loader/load_nodeset2.js.map +1 -0
- package/dist/source/loader/namespace_post_step.d.ts +6 -0
- package/dist/source/loader/namespace_post_step.js +48 -0
- package/dist/source/loader/namespace_post_step.js.map +1 -0
- package/dist/source/loader/register_node_promoter.d.ts +3 -0
- package/dist/source/loader/register_node_promoter.js +10 -0
- package/dist/source/loader/register_node_promoter.js.map +1 -0
- package/dist/source/namespace.d.ts +6 -0
- package/dist/source/namespace.js +3 -0
- package/dist/source/namespace.js.map +1 -0
- package/dist/source/namespace_alarm_and_condition.d.ts +24 -0
- package/dist/source/namespace_alarm_and_condition.js +3 -0
- package/dist/source/namespace_alarm_and_condition.js.map +1 -0
- package/dist/source/namespace_data_access.d.ts +42 -0
- package/dist/source/namespace_data_access.js +3 -0
- package/dist/source/namespace_data_access.js.map +1 -0
- package/dist/source/namespace_machine_state.d.ts +7 -0
- package/dist/source/namespace_machine_state.js +3 -0
- package/dist/source/namespace_machine_state.js.map +1 -0
- package/dist/source/pseudo_session.d.ts +55 -0
- package/dist/source/pseudo_session.js +205 -0
- package/dist/source/pseudo_session.js.map +1 -0
- package/dist/source/session_context.d.ts +111 -0
- package/dist/source/session_context.js +266 -0
- package/dist/source/session_context.js.map +1 -0
- package/dist/source/set_namespace_meta_data.d.ts +2 -0
- package/dist/source/set_namespace_meta_data.js +60 -0
- package/dist/source/set_namespace_meta_data.js.map +1 -0
- package/dist/source/ua_namespace_meta_data_type.d.ts +71 -0
- package/dist/source/ua_namespace_meta_data_type.js +3 -0
- package/dist/source/ua_namespace_meta_data_type.js.map +1 -0
- package/dist/source/ua_root_folder.d.ts +9 -0
- package/dist/source/ua_root_folder.js +3 -0
- package/dist/source/ua_root_folder.js.map +1 -0
- package/dist/source/ua_two_state_variable_ex.d.ts +23 -0
- package/dist/source/ua_two_state_variable_ex.js +3 -0
- package/dist/source/ua_two_state_variable_ex.js.map +1 -0
- package/dist/source/xml_writer.d.ts +9 -0
- package/dist/source/xml_writer.js +3 -0
- package/dist/source/xml_writer.js.map +1 -0
- package/dist/src/address_space.d.ts +393 -0
- package/dist/src/address_space.js +1375 -0
- package/dist/src/address_space.js.map +1 -0
- package/dist/src/address_space_change_event_tools.d.ts +6 -0
- package/dist/src/address_space_change_event_tools.js +150 -0
- package/dist/src/address_space_change_event_tools.js.map +1 -0
- package/dist/src/address_space_private.d.ts +44 -0
- package/dist/src/address_space_private.js +3 -0
- package/dist/src/address_space_private.js.map +1 -0
- package/dist/src/alarms_and_conditions/base_event_type.d.ts +26 -0
- package/dist/src/alarms_and_conditions/base_event_type.js +41 -0
- package/dist/src/alarms_and_conditions/base_event_type.js.map +1 -0
- package/dist/src/alarms_and_conditions/check_where_clause.d.ts +4 -0
- package/dist/src/alarms_and_conditions/check_where_clause.js +110 -0
- package/dist/src/alarms_and_conditions/check_where_clause.js.map +1 -0
- package/dist/src/alarms_and_conditions/condition.d.ts +5 -0
- package/dist/src/alarms_and_conditions/condition.js +81 -0
- package/dist/src/alarms_and_conditions/condition.js.map +1 -0
- package/dist/src/alarms_and_conditions/condition_info.d.ts +27 -0
- package/dist/src/alarms_and_conditions/condition_info.js +55 -0
- package/dist/src/alarms_and_conditions/condition_info.js.map +1 -0
- package/dist/src/alarms_and_conditions/condition_snapshot.d.ts +232 -0
- package/dist/src/alarms_and_conditions/condition_snapshot.js +667 -0
- package/dist/src/alarms_and_conditions/condition_snapshot.js.map +1 -0
- package/dist/src/alarms_and_conditions/deviation_alarm_helper.d.ts +21 -0
- package/dist/src/alarms_and_conditions/deviation_alarm_helper.js +47 -0
- package/dist/src/alarms_and_conditions/deviation_alarm_helper.js.map +1 -0
- package/dist/src/alarms_and_conditions/extract_event_fields.d.ts +10 -0
- package/dist/src/alarms_and_conditions/extract_event_fields.js +90 -0
- package/dist/src/alarms_and_conditions/extract_event_fields.js.map +1 -0
- package/dist/src/alarms_and_conditions/index.d.ts +18 -0
- package/dist/src/alarms_and_conditions/index.js +31 -0
- package/dist/src/alarms_and_conditions/index.js.map +1 -0
- package/dist/src/alarms_and_conditions/shelving_state_machine.d.ts +22 -0
- package/dist/src/alarms_and_conditions/shelving_state_machine.js +241 -0
- package/dist/src/alarms_and_conditions/shelving_state_machine.js.map +1 -0
- package/dist/src/alarms_and_conditions/trip_alarm.d.ts +16 -0
- package/dist/src/alarms_and_conditions/trip_alarm.js +21 -0
- package/dist/src/alarms_and_conditions/trip_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_acknowledgeable_condition_base.d.ts +54 -0
- package/dist/src/alarms_and_conditions/ua_acknowledgeable_condition_base.js +255 -0
- package/dist/src/alarms_and_conditions/ua_acknowledgeable_condition_base.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_acknowledgeable_condition_impl.d.ts +62 -0
- package/dist/src/alarms_and_conditions/ua_acknowledgeable_condition_impl.js +244 -0
- package/dist/src/alarms_and_conditions/ua_acknowledgeable_condition_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_alarm_condition_base.d.ts +138 -0
- package/dist/src/alarms_and_conditions/ua_alarm_condition_base.js +460 -0
- package/dist/src/alarms_and_conditions/ua_alarm_condition_base.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_alarm_condition_impl.d.ts +118 -0
- package/dist/src/alarms_and_conditions/ua_alarm_condition_impl.js +417 -0
- package/dist/src/alarms_and_conditions/ua_alarm_condition_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_base_event_impl.d.ts +29 -0
- package/dist/src/alarms_and_conditions/ua_base_event_impl.js +39 -0
- package/dist/src/alarms_and_conditions/ua_base_event_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_certificate_expiration_alarm.d.ts +35 -0
- package/dist/src/alarms_and_conditions/ua_certificate_expiration_alarm.js +32 -0
- package/dist/src/alarms_and_conditions/ua_certificate_expiration_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_certificate_expiration_alarm_impl.d.ts +21 -0
- package/dist/src/alarms_and_conditions/ua_certificate_expiration_alarm_impl.js +26 -0
- package/dist/src/alarms_and_conditions/ua_certificate_expiration_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_condition_base.d.ts +191 -0
- package/dist/src/alarms_and_conditions/ua_condition_base.js +1029 -0
- package/dist/src/alarms_and_conditions/ua_condition_base.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_condition_impl.d.ts +182 -0
- package/dist/src/alarms_and_conditions/ua_condition_impl.js +1021 -0
- package/dist/src/alarms_and_conditions/ua_condition_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_discrete_alarm.d.ts +11 -0
- package/dist/src/alarms_and_conditions/ua_discrete_alarm.js +58 -0
- package/dist/src/alarms_and_conditions/ua_discrete_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_discrete_alarm_impl.d.ts +17 -0
- package/dist/src/alarms_and_conditions/ua_discrete_alarm_impl.js +58 -0
- package/dist/src/alarms_and_conditions/ua_discrete_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_deviation_alarm.d.ts +24 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_deviation_alarm.js +59 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_deviation_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_deviation_alarm_impl.d.ts +27 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_deviation_alarm_impl.js +57 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_deviation_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_level_alarm.d.ts +14 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_level_alarm.js +17 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_level_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_level_alarm_impl.d.ts +9 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_level_alarm_impl.js +12 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_level_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_limit_alarm.d.ts +22 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_limit_alarm.js +87 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_limit_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_limit_alarm_impl.d.ts +38 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_limit_alarm_impl.js +87 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_limit_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_rate_of_change_alarm.d.ts +6 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_rate_of_change_alarm.js +11 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_rate_of_change_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_rate_of_change_alarm_impl.d.ts +10 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_rate_of_change_alarm_impl.js +8 -0
- package/dist/src/alarms_and_conditions/ua_exclusive_rate_of_change_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_limit_alarm.d.ts +76 -0
- package/dist/src/alarms_and_conditions/ua_limit_alarm.js +237 -0
- package/dist/src/alarms_and_conditions/ua_limit_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_limit_alarm_impl.d.ts +98 -0
- package/dist/src/alarms_and_conditions/ua_limit_alarm_impl.js +233 -0
- package/dist/src/alarms_and_conditions/ua_limit_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_deviation_alarm.d.ts +27 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_deviation_alarm.js +62 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_deviation_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_deviation_alarm_impl.d.ts +28 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_deviation_alarm_impl.js +51 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_deviation_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_limit_alarm.d.ts +49 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_limit_alarm.js +176 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_limit_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_limit_alarm_impl.d.ts +25 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_limit_alarm_impl.js +163 -0
- package/dist/src/alarms_and_conditions/ua_non_exclusive_limit_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_off_normal_alarm.d.ts +47 -0
- package/dist/src/alarms_and_conditions/ua_off_normal_alarm.js +151 -0
- package/dist/src/alarms_and_conditions/ua_off_normal_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_off_normal_alarm_impl.d.ts +39 -0
- package/dist/src/alarms_and_conditions/ua_off_normal_alarm_impl.js +136 -0
- package/dist/src/alarms_and_conditions/ua_off_normal_alarm_impl.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_system_off_normal_alarm.d.ts +16 -0
- package/dist/src/alarms_and_conditions/ua_system_off_normal_alarm.js +18 -0
- package/dist/src/alarms_and_conditions/ua_system_off_normal_alarm.js.map +1 -0
- package/dist/src/alarms_and_conditions/ua_system_off_normal_alarm_impl.d.ts +16 -0
- package/dist/src/alarms_and_conditions/ua_system_off_normal_alarm_impl.js +18 -0
- package/dist/src/alarms_and_conditions/ua_system_off_normal_alarm_impl.js.map +1 -0
- package/dist/src/apply_condition_refresh.d.ts +6 -0
- package/dist/src/apply_condition_refresh.js +28 -0
- package/dist/src/apply_condition_refresh.js.map +1 -0
- package/dist/src/base_node.d.ts +279 -0
- package/dist/src/base_node.js +1364 -0
- package/dist/src/base_node.js.map +1 -0
- package/dist/src/base_node_impl.d.ts +281 -0
- package/dist/src/base_node_impl.js +1394 -0
- package/dist/src/base_node_impl.js.map +1 -0
- package/dist/src/base_node_private.d.ts +61 -0
- package/dist/src/base_node_private.js +521 -0
- package/dist/src/base_node_private.js.map +1 -0
- package/dist/src/data_access/add_dataItem_stuff.d.ts +11 -0
- package/dist/src/data_access/add_dataItem_stuff.js +62 -0
- package/dist/src/data_access/add_dataItem_stuff.js.map +1 -0
- package/dist/src/data_access/check_variant_compatibility_ua_analog_item.d.ts +1 -0
- package/dist/src/data_access/check_variant_compatibility_ua_analog_item.js +35 -0
- package/dist/src/data_access/check_variant_compatibility_ua_analog_item.js.map +1 -0
- package/dist/src/data_access/ua_analog_item.d.ts +13 -0
- package/dist/src/data_access/ua_analog_item.js +37 -0
- package/dist/src/data_access/ua_analog_item.js.map +1 -0
- package/dist/src/data_access/ua_data_item.d.ts +16 -0
- package/dist/src/data_access/ua_data_item.js +66 -0
- package/dist/src/data_access/ua_data_item.js.map +1 -0
- package/dist/src/data_access/ua_multistate_discrete.d.ts +23 -0
- package/dist/src/data_access/ua_multistate_discrete.js +131 -0
- package/dist/src/data_access/ua_multistate_discrete.js.map +1 -0
- package/dist/src/data_access/ua_multistate_discrete_impl.d.ts +32 -0
- package/dist/src/data_access/ua_multistate_discrete_impl.js +131 -0
- package/dist/src/data_access/ua_multistate_discrete_impl.js.map +1 -0
- package/dist/src/data_access/ua_multistate_value_discrete.d.ts +51 -0
- package/dist/src/data_access/ua_multistate_value_discrete.js +249 -0
- package/dist/src/data_access/ua_multistate_value_discrete.js.map +1 -0
- package/dist/src/data_access/ua_two_state_discrete.d.ts +25 -0
- package/dist/src/data_access/ua_two_state_discrete.js +154 -0
- package/dist/src/data_access/ua_two_state_discrete.js.map +1 -0
- package/dist/src/event_data.d.ts +29 -0
- package/dist/src/event_data.js +96 -0
- package/dist/src/event_data.js.map +1 -0
- package/dist/src/extension_object_array_node.d.ts +61 -0
- package/dist/src/extension_object_array_node.js +266 -0
- package/dist/src/extension_object_array_node.js.map +1 -0
- package/dist/src/historical_access/address_space_historical_data_node.d.ts +26 -0
- package/dist/src/historical_access/address_space_historical_data_node.js +662 -0
- package/dist/src/historical_access/address_space_historical_data_node.js.map +1 -0
- package/dist/src/index_current.d.ts +42 -0
- package/dist/src/index_current.js +71 -0
- package/dist/src/index_current.js.map +1 -0
- package/dist/src/namespace.d.ts +475 -0
- package/dist/src/namespace.js +1775 -0
- package/dist/src/namespace.js.map +1 -0
- package/dist/src/namespace_impl.d.ts +463 -0
- package/dist/src/namespace_impl.js +1763 -0
- package/dist/src/namespace_impl.js.map +1 -0
- package/dist/src/namespace_private.d.ts +21 -0
- package/dist/src/namespace_private.js +29 -0
- package/dist/src/namespace_private.js.map +1 -0
- package/dist/src/nodeid_manager.d.ts +36 -0
- package/dist/src/nodeid_manager.js +196 -0
- package/dist/src/nodeid_manager.js.map +1 -0
- package/dist/src/nodeset_tools/adjust_namespace_array.d.ts +2 -0
- package/dist/src/nodeset_tools/adjust_namespace_array.js +14 -0
- package/dist/src/nodeset_tools/adjust_namespace_array.js.map +1 -0
- package/dist/src/nodeset_tools/construct_namespace_dependency.d.ts +2 -0
- package/dist/src/nodeset_tools/construct_namespace_dependency.js +39 -0
- package/dist/src/nodeset_tools/construct_namespace_dependency.js.map +1 -0
- package/dist/src/nodeset_tools/nodeset_to_xml.d.ts +2 -0
- package/dist/src/nodeset_tools/nodeset_to_xml.js +1155 -0
- package/dist/src/nodeset_tools/nodeset_to_xml.js.map +1 -0
- package/dist/src/nodeset_tools/typedictionary_to_xml.d.ts +2 -0
- package/dist/src/nodeset_tools/typedictionary_to_xml.js +147 -0
- package/dist/src/nodeset_tools/typedictionary_to_xml.js.map +1 -0
- package/dist/src/reference.d.ts +43 -0
- package/dist/src/reference.js +138 -0
- package/dist/src/reference.js.map +1 -0
- package/dist/src/reference_impl.d.ts +43 -0
- package/dist/src/reference_impl.js +138 -0
- package/dist/src/reference_impl.js.map +1 -0
- package/dist/src/role_permissions.d.ts +2 -0
- package/dist/src/role_permissions.js +11 -0
- package/dist/src/role_permissions.js.map +1 -0
- package/dist/src/session_context.d.ts +4 -0
- package/dist/src/session_context.js +9 -0
- package/dist/src/session_context.js.map +1 -0
- package/dist/src/state_machine/finite_state_machine.d.ts +67 -0
- package/dist/src/state_machine/finite_state_machine.js +354 -0
- package/dist/src/state_machine/finite_state_machine.js.map +1 -0
- package/dist/src/state_machine/ua_shelving_state_machine_ex.d.ts +34 -0
- package/dist/src/state_machine/ua_shelving_state_machine_ex.js +244 -0
- package/dist/src/state_machine/ua_shelving_state_machine_ex.js.map +1 -0
- package/dist/src/state_machine/ua_two_state_variable.d.ts +61 -0
- package/dist/src/state_machine/ua_two_state_variable.js +332 -0
- package/dist/src/state_machine/ua_two_state_variable.js.map +1 -0
- package/dist/src/tool_isSupertypeOf.d.ts +17 -0
- package/dist/src/tool_isSupertypeOf.js +103 -0
- package/dist/src/tool_isSupertypeOf.js.map +1 -0
- package/dist/src/ua_condition_type.d.ts +8 -0
- package/dist/src/ua_condition_type.js +3 -0
- package/dist/src/ua_condition_type.js.map +1 -0
- package/dist/src/ua_data_type.d.ts +83 -0
- package/dist/src/ua_data_type.js +289 -0
- package/dist/src/ua_data_type.js.map +1 -0
- package/dist/src/ua_data_type_impl.d.ts +83 -0
- package/dist/src/ua_data_type_impl.js +291 -0
- package/dist/src/ua_data_type_impl.js.map +1 -0
- package/dist/src/ua_method.d.ts +42 -0
- package/dist/src/ua_method.js +204 -0
- package/dist/src/ua_method.js.map +1 -0
- package/dist/src/ua_method_impl.d.ts +40 -0
- package/dist/src/ua_method_impl.js +203 -0
- package/dist/src/ua_method_impl.js.map +1 -0
- package/dist/src/ua_object.d.ts +29 -0
- package/dist/src/ua_object.js +153 -0
- package/dist/src/ua_object.js.map +1 -0
- package/dist/src/ua_object_impl.d.ts +29 -0
- package/dist/src/ua_object_impl.js +156 -0
- package/dist/src/ua_object_impl.js.map +1 -0
- package/dist/src/ua_object_type.d.ts +49 -0
- package/dist/src/ua_object_type.js +124 -0
- package/dist/src/ua_object_type.js.map +1 -0
- package/dist/src/ua_object_type_impl.d.ts +48 -0
- package/dist/src/ua_object_type_impl.js +124 -0
- package/dist/src/ua_object_type_impl.js.map +1 -0
- package/dist/src/ua_reference_type.d.ts +42 -0
- package/dist/src/ua_reference_type.js +138 -0
- package/dist/src/ua_reference_type.js.map +1 -0
- package/dist/src/ua_reference_type_impl.d.ts +43 -0
- package/dist/src/ua_reference_type_impl.js +138 -0
- package/dist/src/ua_reference_type_impl.js.map +1 -0
- package/dist/src/ua_variable.d.ts +346 -0
- package/dist/src/ua_variable.js +1721 -0
- package/dist/src/ua_variable.js.map +1 -0
- package/dist/src/ua_variable_impl.d.ts +353 -0
- package/dist/src/ua_variable_impl.js +1719 -0
- package/dist/src/ua_variable_impl.js.map +1 -0
- package/dist/src/ua_variable_type.d.ts +54 -0
- package/dist/src/ua_variable_type.js +555 -0
- package/dist/src/ua_variable_type.js.map +1 -0
- package/dist/src/ua_variable_type_impl.d.ts +63 -0
- package/dist/src/ua_variable_type_impl.js +556 -0
- package/dist/src/ua_variable_type_impl.js.map +1 -0
- package/dist/src/ua_view.d.ts +16 -0
- package/dist/src/ua_view.js +42 -0
- package/dist/src/ua_view.js.map +1 -0
- package/dist/src/ua_view_impl.d.ts +15 -0
- package/dist/src/ua_view_impl.js +37 -0
- package/dist/src/ua_view_impl.js.map +1 -0
- package/distHelpers/add_event_generator_object.d.ts +3 -0
- package/distHelpers/add_event_generator_object.js +66 -0
- package/distHelpers/add_event_generator_object.js.map +1 -0
- package/distHelpers/alarms_and_conditions_demo.d.ts +10 -0
- package/distHelpers/alarms_and_conditions_demo.js +115 -0
- package/distHelpers/alarms_and_conditions_demo.js.map +1 -0
- package/distHelpers/assertHasMatchingReference.d.ts +19 -0
- package/distHelpers/assertHasMatchingReference.js +41 -0
- package/distHelpers/assertHasMatchingReference.js.map +1 -0
- package/distHelpers/boiler_system.d.ts +113 -0
- package/distHelpers/boiler_system.js +397 -0
- package/distHelpers/boiler_system.js.map +1 -0
- package/distHelpers/create_minimalist_address_space_nodeset.d.ts +5 -0
- package/distHelpers/create_minimalist_address_space_nodeset.js +171 -0
- package/distHelpers/create_minimalist_address_space_nodeset.js.map +1 -0
- package/distHelpers/dump_statemachine.d.ts +6 -0
- package/distHelpers/dump_statemachine.js +116 -0
- package/distHelpers/dump_statemachine.js.map +1 -0
- package/distHelpers/get_address_space_fixture.d.ts +1 -0
- package/distHelpers/get_address_space_fixture.js +31 -0
- package/distHelpers/get_address_space_fixture.js.map +1 -0
- package/distHelpers/get_mini_address_space.d.ts +7 -0
- package/distHelpers/get_mini_address_space.js +37 -0
- package/distHelpers/get_mini_address_space.js.map +1 -0
- package/distHelpers/index.d.ts +11 -0
- package/distHelpers/index.js +24 -0
- package/distHelpers/index.js.map +1 -0
- package/distNodeJS/generate_address_space.d.ts +4 -0
- package/distNodeJS/generate_address_space.js +31 -0
- package/distNodeJS/generate_address_space.js.map +1 -0
- package/distNodeJS/index.d.ts +1 -0
- package/distNodeJS/index.js +14 -0
- package/distNodeJS/index.js.map +1 -0
- package/generate.js +1 -0
- package/nodeJS.d.ts +1 -0
- package/nodeJS.js +1 -0
- package/package.json +87 -0
- package/source/address_space_ts.ts +217 -0
- package/source/continuation_points/continuation_point_manager.ts +121 -0
- package/source/helpers/adjust_browse_direction.ts +15 -0
- package/source/helpers/argument_list.ts +286 -0
- package/source/helpers/call_helpers.ts +112 -0
- package/source/helpers/check_event_clause.ts +62 -0
- package/source/helpers/coerce_enum_value.ts +33 -0
- package/source/helpers/dump_tools.ts +92 -0
- package/source/helpers/ensure_secure_access.ts +88 -0
- package/source/helpers/make_optionals_map.ts +49 -0
- package/source/helpers/resolve_opaque_on_address_space.ts +23 -0
- package/source/index.ts +49 -0
- package/source/interfaces/alarms_and_conditions/condition_info_i.ts +13 -0
- package/source/interfaces/data_access/ua_multistate_discrete_ex.ts +26 -0
- package/source/interfaces/data_access/ua_multistate_value_discrete_ex.ts +34 -0
- package/source/interfaces/data_access/ua_two_state_discrete_ex.ts +14 -0
- package/source/interfaces/data_access/ua_y_array_item_ex.ts +10 -0
- package/source/interfaces/state_machine/ua_exclusive_limit_state_machine_type_ex.ts +14 -0
- package/source/interfaces/state_machine/ua_finite_state_machine_type.ts +50 -0
- package/source/interfaces/state_machine/ua_program_state_machine_type.ts +13 -0
- package/source/interfaces/state_machine/ua_state_machine_type.ts +261 -0
- package/source/interfaces/state_machine/ua_transition_ex.ts +7 -0
- package/source/interfaces/ua_subscription_diagnostics_variable_ex.ts +8 -0
- package/source/loader/generateAddressSpaceRaw.ts +79 -0
- package/source/loader/load_nodeset2.ts +1600 -0
- package/source/loader/namespace_post_step.ts +36 -0
- package/source/loader/register_node_promoter.ts +8 -0
- package/source/namespace.ts +9 -0
- package/source/namespace_alarm_and_condition.ts +47 -0
- package/source/namespace_data_access.ts +60 -0
- package/source/namespace_machine_state.ts +13 -0
- package/source/pseudo_session.ts +288 -0
- package/source/session_context.ts +345 -0
- package/source/set_namespace_meta_data.ts +68 -0
- package/source/ua_root_folder.ts +10 -0
- package/source/ua_two_state_variable_ex.ts +35 -0
- package/source/xml_writer.ts +15 -0
- package/source_nodejs/generate_address_space.ts +36 -0
- package/source_nodejs/index.ts +1 -0
- package/src/address_space.ts +1575 -0
- package/src/address_space_change_event_tools.ts +177 -0
- package/src/address_space_private.ts +98 -0
- package/src/alarms_and_conditions/check_where_clause.ts +148 -0
- package/src/alarms_and_conditions/condition.ts +89 -0
- package/src/alarms_and_conditions/condition_info.ts +66 -0
- package/src/alarms_and_conditions/condition_snapshot.ts +766 -0
- package/src/alarms_and_conditions/deviation_alarm_helper.ts +66 -0
- package/src/alarms_and_conditions/extract_event_fields.ts +104 -0
- package/src/alarms_and_conditions/index.ts +18 -0
- package/src/alarms_and_conditions/ua_acknowledgeable_condition_impl.ts +339 -0
- package/src/alarms_and_conditions/ua_alarm_condition_impl.ts +513 -0
- package/src/alarms_and_conditions/ua_base_event_impl.ts +55 -0
- package/src/alarms_and_conditions/ua_certificate_expiration_alarm_impl.ts +50 -0
- package/src/alarms_and_conditions/ua_condition_impl.ts +1298 -0
- package/src/alarms_and_conditions/ua_discrete_alarm_impl.ts +81 -0
- package/src/alarms_and_conditions/ua_exclusive_deviation_alarm_impl.ts +110 -0
- package/src/alarms_and_conditions/ua_exclusive_level_alarm_impl.ts +19 -0
- package/src/alarms_and_conditions/ua_exclusive_limit_alarm_impl.ts +130 -0
- package/src/alarms_and_conditions/ua_exclusive_rate_of_change_alarm_impl.ts +24 -0
- package/src/alarms_and_conditions/ua_limit_alarm_impl.ts +305 -0
- package/src/alarms_and_conditions/ua_non_exclusive_deviation_alarm_impl.ts +108 -0
- package/src/alarms_and_conditions/ua_non_exclusive_limit_alarm_impl.ts +224 -0
- package/src/alarms_and_conditions/ua_off_normal_alarm_impl.ts +186 -0
- package/src/alarms_and_conditions/ua_system_off_normal_alarm_impl.ts +27 -0
- package/src/apply_condition_refresh.ts +30 -0
- package/src/base_node_impl.ts +1749 -0
- package/src/base_node_private.ts +690 -0
- package/src/data_access/add_dataItem_stuff.ts +75 -0
- package/src/data_access/check_variant_compatibility_ua_analog_item.ts +41 -0
- package/src/data_access/ua_multistate_discrete_impl.ts +168 -0
- package/src/data_access/ua_multistate_value_discrete.ts +299 -0
- package/src/data_access/ua_two_state_discrete.ts +185 -0
- package/src/event_data.ts +117 -0
- package/src/extension_object_array_node.ts +325 -0
- package/src/historical_access/address_space_historical_data_node.ts +828 -0
- package/src/index_current.ts +52 -0
- package/src/namespace_impl.ts +2181 -0
- package/src/namespace_private.ts +60 -0
- package/src/nodeid_manager.ts +228 -0
- package/src/nodeset_tools/adjust_namespace_array.ts +11 -0
- package/src/nodeset_tools/construct_namespace_dependency.ts +40 -0
- package/src/nodeset_tools/nodeset_to_xml.ts +1317 -0
- package/src/nodeset_tools/typedictionary_to_xml.ts +175 -0
- package/src/reference_impl.ts +169 -0
- package/src/role_permissions.ts +6 -0
- package/src/state_machine/finite_state_machine.ts +428 -0
- package/src/state_machine/ua_shelving_state_machine_ex.ts +314 -0
- package/src/state_machine/ua_two_state_variable.ts +421 -0
- package/src/tool_isSupertypeOf.ts +129 -0
- package/src/ua_condition_type.ts +10 -0
- package/src/ua_data_type_impl.ts +356 -0
- package/src/ua_method_impl.ts +278 -0
- package/src/ua_object_impl.ts +203 -0
- package/src/ua_object_type_impl.ts +158 -0
- package/src/ua_reference_type_impl.ts +174 -0
- package/src/ua_variable_impl.ts +2277 -0
- package/src/ua_variable_type_impl.ts +741 -0
- package/src/ua_view_impl.ts +54 -0
- package/testHelpers.d.ts +1 -0
- package/testHelpers.js +1 -0
- package/test_helpers/add_event_generator_object.ts +71 -0
- package/test_helpers/alarms_and_conditions_demo.ts +147 -0
- package/test_helpers/assertHasMatchingReference.ts +43 -0
- package/test_helpers/boiler_system.ts +618 -0
- package/test_helpers/create_minimalist_address_space_nodeset.ts +208 -0
- package/test_helpers/dump_statemachine.ts +155 -0
- package/test_helpers/get_address_space_fixture.ts +30 -0
- package/test_helpers/get_mini_address_space.ts +42 -0
- package/test_helpers/index.ts +11 -0
- package/test_helpers/test_fixtures/dataType_in_separateNamespace.xml +150 -0
- package/test_helpers/test_fixtures/dataType_in_separateNamespace_basic.xml +57 -0
- package/test_helpers/test_fixtures/dataType_in_separateNamespace_mix.xml +136 -0
- package/test_helpers/test_fixtures/dataType_withEnumeration.xml +82 -0
- package/test_helpers/test_fixtures/dataType_with_isOptionSet.xml +194 -0
- package/test_helpers/test_fixtures/dataType_with_structures.xml +605 -0
- package/test_helpers/test_fixtures/dataType_with_union.xml +1 -0
- package/test_helpers/test_fixtures/datatype_as_per_1.04.xml +91 -0
- package/test_helpers/test_fixtures/fixture_empty_nodeset2.xml +106 -0
- package/test_helpers/test_fixtures/fixture_simple_statemachine_nodeset2.xml +1303 -0
- package/test_helpers/test_fixtures/fixuture_nodeset_objects_with_some_methods.xml +362 -0
- package/test_helpers/test_fixtures/issue_846.xml +3172 -0
- package/test_helpers/test_fixtures/issue_899_variable_with_nodeid_value.xml +33 -0
- package/test_helpers/test_fixtures/mini.Node.Set2.xml +4508 -0
- package/test_helpers/test_fixtures/mini.nodeset.withVariousVariables.xml +194 -0
- package/test_helpers/test_fixtures/minimalist_nodeset_with_models.xml +8 -0
- package/test_helpers/test_fixtures/minimalist_nodeset_with_models_more_complex.xml +16 -0
- package/test_helpers/test_fixtures/nodeset_with_analog_items.xml +45 -0
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-address-space
|
|
3
|
+
*/
|
|
4
|
+
// tslint:disable:no-console
|
|
5
|
+
// tslint:disable:max-line-length
|
|
6
|
+
|
|
7
|
+
import * as chalk from "chalk";
|
|
8
|
+
import { assert } from "node-opcua-assert";
|
|
9
|
+
import { DataTypeIds, ObjectIds, ObjectTypeIds, ReferenceTypeIds, VariableTypeIds } from "node-opcua-constants";
|
|
10
|
+
import { NodeClass } from "node-opcua-data-model";
|
|
11
|
+
import { NodeId, resolveNodeId } from "node-opcua-nodeid";
|
|
12
|
+
|
|
13
|
+
import { AddReferenceOpts, AddressSpace, UAFolder, UAObject, UAReferenceType, UAVariableType, NamespacePrivate } from "..";
|
|
14
|
+
|
|
15
|
+
const doDebug = false;
|
|
16
|
+
|
|
17
|
+
function dumpReferencesHierarchy(_addressSpace: AddressSpace) {
|
|
18
|
+
const addressSpace = _addressSpace;
|
|
19
|
+
|
|
20
|
+
function _dump(referenceType: UAReferenceType, level: string) {
|
|
21
|
+
console.log(
|
|
22
|
+
level,
|
|
23
|
+
referenceType.browseName.toString(),
|
|
24
|
+
"(",
|
|
25
|
+
chalk.green(
|
|
26
|
+
referenceType
|
|
27
|
+
.getAllSubtypes()
|
|
28
|
+
.map((x: any) => x.browseName.toString())
|
|
29
|
+
.join(" ")
|
|
30
|
+
),
|
|
31
|
+
")"
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const subTypes = referenceType.findReferencesExAsObject("HasSubtype");
|
|
35
|
+
for (const subType of subTypes) {
|
|
36
|
+
_dump(subType as UAReferenceType, " " + level);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const references = addressSpace.findReferenceType(ReferenceTypeIds.References)!;
|
|
41
|
+
|
|
42
|
+
_dump(references, " ");
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function create_minimalist_address_space_nodeset(addressSpace: AddressSpace) {
|
|
46
|
+
|
|
47
|
+
const _addressSpace = addressSpace;
|
|
48
|
+
|
|
49
|
+
const namespace0 = addressSpace.registerNamespace("http://opcfoundation.org/UA/") as unknown as NamespacePrivate;
|
|
50
|
+
|
|
51
|
+
assert(namespace0.index === 0);
|
|
52
|
+
|
|
53
|
+
function addReferenceType(browseName_: string, isAbstract?: boolean, subtypeOf?: UAReferenceType): UAReferenceType {
|
|
54
|
+
const tmp = browseName_.split("/");
|
|
55
|
+
const inverseName = tmp[1] as string;
|
|
56
|
+
const browseName = tmp[0] as string;
|
|
57
|
+
|
|
58
|
+
const options = {
|
|
59
|
+
browseName,
|
|
60
|
+
inverseName,
|
|
61
|
+
isAbstract,
|
|
62
|
+
nodeClass: NodeClass.ReferenceType,
|
|
63
|
+
nodeId: resolveNodeId((ReferenceTypeIds as any)[browseName]),
|
|
64
|
+
references: [] as AddReferenceOpts[],
|
|
65
|
+
subtypeOf
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const hasSubType = resolveNodeId("HasSubtype");
|
|
69
|
+
if (subtypeOf) {
|
|
70
|
+
options.references.push({
|
|
71
|
+
isForward: false,
|
|
72
|
+
nodeId: subtypeOf.nodeId,
|
|
73
|
+
referenceType: hasSubType
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
const node = namespace0.internalCreateNode(options);
|
|
77
|
+
|
|
78
|
+
node.propagate_back_references();
|
|
79
|
+
|
|
80
|
+
return node as UAReferenceType;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// add references
|
|
84
|
+
{
|
|
85
|
+
// before we do any thing , we need to create the HasSubtype reference
|
|
86
|
+
// which is required in the first to create the hierachy of References
|
|
87
|
+
const hasSubtype = addReferenceType("HasSubtype/HasSupertype");
|
|
88
|
+
|
|
89
|
+
const references = addReferenceType("References", true);
|
|
90
|
+
{
|
|
91
|
+
const nonHierarchicalReferences = addReferenceType("NonHierarchicalReferences", true, references);
|
|
92
|
+
{
|
|
93
|
+
const hasTypeDefinition = addReferenceType("HasTypeDefinition/TypeDefinitionOf", false, nonHierarchicalReferences);
|
|
94
|
+
const hasModellingRule = addReferenceType("HasModellingRule/ModellingRuleOf", false, nonHierarchicalReferences);
|
|
95
|
+
const hasEncoding = addReferenceType("HasEncoding/EncodingOf", false, nonHierarchicalReferences);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
{
|
|
99
|
+
const hierarchicalReferences = addReferenceType("HierarchicalReferences", true, references);
|
|
100
|
+
{
|
|
101
|
+
const hasChild = addReferenceType("HasChild/ChildOf", true, hierarchicalReferences);
|
|
102
|
+
{
|
|
103
|
+
const aggregates = addReferenceType("Aggregates/AggregatedBy", true, hasChild);
|
|
104
|
+
{
|
|
105
|
+
const hasComponent = addReferenceType("HasComponent/ComponentOf", false, aggregates);
|
|
106
|
+
const hasProperty = addReferenceType("HasProperty/PropertyOf", false, aggregates);
|
|
107
|
+
const hasHistoricalConfiguration = addReferenceType(
|
|
108
|
+
"HasHistoricalConfiguration/HistoricalConfigurationOf",
|
|
109
|
+
false,
|
|
110
|
+
aggregates
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
{
|
|
115
|
+
// add a link to hasSubType
|
|
116
|
+
hasSubtype.addReference({
|
|
117
|
+
isForward: false,
|
|
118
|
+
nodeId: hasChild,
|
|
119
|
+
referenceType: hasSubtype
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
{
|
|
124
|
+
const organizes = addReferenceType("Organizes/OrganizedBy", false, hierarchicalReferences);
|
|
125
|
+
}
|
|
126
|
+
{
|
|
127
|
+
const hasEventSource = addReferenceType("HasEventSource/EventSourceOf", false, hierarchicalReferences);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
if (doDebug) {
|
|
133
|
+
dumpReferencesHierarchy(addressSpace);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
const baseObjectType = namespace0.internalCreateNode({
|
|
137
|
+
browseName: "BaseObjectType",
|
|
138
|
+
isAbstract: true,
|
|
139
|
+
nodeClass: NodeClass.ObjectType,
|
|
140
|
+
nodeId: resolveNodeId(ObjectTypeIds.BaseObjectType)
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
const baseVariableType = (namespace0.internalCreateNode({
|
|
144
|
+
browseName: "BaseVariableType",
|
|
145
|
+
isAbstract: true,
|
|
146
|
+
nodeClass: NodeClass.VariableType,
|
|
147
|
+
nodeId: resolveNodeId(VariableTypeIds.BaseVariableType)
|
|
148
|
+
}) as any) as UAVariableType;
|
|
149
|
+
|
|
150
|
+
const propertyType = namespace0.addVariableType({
|
|
151
|
+
browseName: "PropertyType",
|
|
152
|
+
subtypeOf: baseVariableType
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
const baseDataVariableType = (namespace0.internalCreateNode({
|
|
156
|
+
browseName: "BaseDataVariableType",
|
|
157
|
+
isAbstract: true,
|
|
158
|
+
nodeClass: NodeClass.VariableType,
|
|
159
|
+
nodeId: resolveNodeId(VariableTypeIds.BaseDataVariableType),
|
|
160
|
+
subtypeOf: baseVariableType.nodeId
|
|
161
|
+
}) as any) as UAVariableType;
|
|
162
|
+
|
|
163
|
+
const modellingRule_Optional = (namespace0.internalCreateNode({
|
|
164
|
+
browseName: "Optional",
|
|
165
|
+
nodeClass: NodeClass.Object,
|
|
166
|
+
nodeId: resolveNodeId(ObjectIds.ModellingRule_Optional)
|
|
167
|
+
}) as any) as UAObject;
|
|
168
|
+
|
|
169
|
+
const modellingRule_Mandatory = (namespace0.internalCreateNode({
|
|
170
|
+
browseName: "Mandatory",
|
|
171
|
+
nodeClass: NodeClass.Object,
|
|
172
|
+
nodeId: resolveNodeId(ObjectIds.ModellingRule_Mandatory)
|
|
173
|
+
}) as any) as UAObject;
|
|
174
|
+
|
|
175
|
+
// add the root folder
|
|
176
|
+
{
|
|
177
|
+
const rootFolder = (namespace0.internalCreateNode({
|
|
178
|
+
browseName: "RootFolder",
|
|
179
|
+
nodeClass: NodeClass.Object,
|
|
180
|
+
nodeId: resolveNodeId(ObjectIds.RootFolder)
|
|
181
|
+
}) as any) as UAObject;
|
|
182
|
+
|
|
183
|
+
{
|
|
184
|
+
const objectsFolder = namespace0.addObject({
|
|
185
|
+
browseName: "Objects",
|
|
186
|
+
nodeId: resolveNodeId(ObjectIds.ObjectsFolder),
|
|
187
|
+
organizedBy: rootFolder
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
assert(rootFolder.getFolderElementByName("Objects")!.browseName.toString() === "Objects");
|
|
191
|
+
}
|
|
192
|
+
{
|
|
193
|
+
const dataTypeFolder = namespace0.addObject({
|
|
194
|
+
browseName: "DataType",
|
|
195
|
+
nodeId: resolveNodeId(ObjectIds.DataTypesFolder),
|
|
196
|
+
organizedBy: rootFolder
|
|
197
|
+
});
|
|
198
|
+
{
|
|
199
|
+
const doubleDataType = namespace0.internalCreateNode({
|
|
200
|
+
browseName: "Double",
|
|
201
|
+
nodeClass: NodeClass.DataType,
|
|
202
|
+
nodeId: resolveNodeId(DataTypeIds.Double),
|
|
203
|
+
organizedBy: dataTypeFolder
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-address-space
|
|
3
|
+
*/
|
|
4
|
+
// tslint:disable:no-console
|
|
5
|
+
/*
|
|
6
|
+
* class Node {
|
|
7
|
+
* { browseName: "string", nodeId: NodeId}
|
|
8
|
+
* }
|
|
9
|
+
* Transition {
|
|
10
|
+
* browseName: "String"
|
|
11
|
+
* fromState: Node
|
|
12
|
+
* toState: Node
|
|
13
|
+
* }
|
|
14
|
+
* class SateMachineType {
|
|
15
|
+
* initialState: Node
|
|
16
|
+
* states: [ Node,Node, ...]
|
|
17
|
+
* transitions: [Transition]
|
|
18
|
+
* }
|
|
19
|
+
* @param stateMachineType
|
|
20
|
+
*/
|
|
21
|
+
import { BaseNode, UAState, UAStateMachineEx, UATransition, UAObject, UATransitionEx } from "..";
|
|
22
|
+
|
|
23
|
+
export function dumpStateMachineToPlantUML(stateMachineType: UAStateMachineEx) {
|
|
24
|
+
function w(str: string) {
|
|
25
|
+
console.log(str);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function s(state: BaseNode) {
|
|
29
|
+
return state.nodeId.value.toString();
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function n(state: BaseNode) {
|
|
33
|
+
return state.browseName.name!.toString();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
w("@startuml "); // + stateMachineType.browseName.toString() + ".png");
|
|
37
|
+
// initial state if any
|
|
38
|
+
|
|
39
|
+
if (stateMachineType.initialState) {
|
|
40
|
+
w(" [*] --> " + s(stateMachineType.initialState));
|
|
41
|
+
w(" " + s(stateMachineType.initialState) + ":" + n(stateMachineType.initialState));
|
|
42
|
+
} else {
|
|
43
|
+
w("[*] --> [*]");
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function t(transition: BaseNode) {
|
|
47
|
+
let name = n(transition);
|
|
48
|
+
name = name.replace(":", "");
|
|
49
|
+
name = name.replace("To", "\\nTo\\n");
|
|
50
|
+
name = name.replace("Transition", "\\nTransition");
|
|
51
|
+
return name;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
stateMachineType.states.forEach((state: UAObject) => w(" " + s(state) + ": " + n(state)));
|
|
55
|
+
|
|
56
|
+
stateMachineType.transitions.forEach((transition: UATransitionEx) =>
|
|
57
|
+
w(" " + s(transition.fromStateNode!) + " --> " + s(transition.toStateNode!) + " : " + t(transition))
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
w("@enduml");
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/*
|
|
64
|
+
@startuml
|
|
65
|
+
|
|
66
|
+
2930: Unshelved
|
|
67
|
+
|
|
68
|
+
2932: TimedShelved
|
|
69
|
+
|
|
70
|
+
2933: OneShotShelved
|
|
71
|
+
|
|
72
|
+
2930 --> 2932 : "2935\nUnshelvedToTimedShelved"
|
|
73
|
+
|
|
74
|
+
2930 --> 2933 : "2936\nUnshelvedToOneShotShelved"
|
|
75
|
+
|
|
76
|
+
2932 --> 2930 : "2940\nTimedShelvedToUnshelved"
|
|
77
|
+
|
|
78
|
+
2932 --> 2933 : "2942\nTimedShelvedToOneShotShelved"
|
|
79
|
+
|
|
80
|
+
2933 --> 2930 : "2943\nOneShotShelvedToUnshelved"
|
|
81
|
+
|
|
82
|
+
2933 --> 2932 : "2945\nOneShotShelvedToTimedShelved"
|
|
83
|
+
|
|
84
|
+
@enduml
|
|
85
|
+
|
|
86
|
+
*/
|
|
87
|
+
|
|
88
|
+
/*
|
|
89
|
+
digraph finite_state_machine {
|
|
90
|
+
rankdir=LR;
|
|
91
|
+
size="8,5"
|
|
92
|
+
node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8;
|
|
93
|
+
node [shape = circle];
|
|
94
|
+
LR_0 -> LR_2 [ label = "SS(B)" ];
|
|
95
|
+
LR_0 -> LR_1 [ label = "SS(S)" ];
|
|
96
|
+
LR_1 -> LR_3 [ label = "S($end)" ];
|
|
97
|
+
LR_2 -> LR_6 [ label = "SS(b)" ];
|
|
98
|
+
LR_2 -> LR_5 [ label = "SS(a)" ];
|
|
99
|
+
LR_2 -> LR_4 [ label = "S(A)" ];
|
|
100
|
+
LR_5 -> LR_7 [ label = "S(b)" ];
|
|
101
|
+
LR_5 -> LR_5 [ label = "S(a)" ];
|
|
102
|
+
LR_6 -> LR_6 [ label = "S(b)" ];
|
|
103
|
+
LR_6 -> LR_5 [ label = "S(a)" ];
|
|
104
|
+
LR_7 -> LR_8 [ label = "S(b)" ];
|
|
105
|
+
LR_7 -> LR_5 [ label = "S(a)" ];
|
|
106
|
+
LR_8 -> LR_6 [ label = "S(b)" ];
|
|
107
|
+
LR_8 -> LR_5 [ label = "S(a)" ];
|
|
108
|
+
}
|
|
109
|
+
*/
|
|
110
|
+
export function dumpStateMachineToGraphViz(
|
|
111
|
+
/*StateMachineProxy*/
|
|
112
|
+
stateMachineType: UAStateMachineEx
|
|
113
|
+
) {
|
|
114
|
+
function w(str: string) {
|
|
115
|
+
console.log(str);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
function s(state: BaseNode) {
|
|
119
|
+
return state.nodeId.value.toString();
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function n(state: BaseNode) {
|
|
123
|
+
return state.browseName.name!.toString();
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
function s_full(state: BaseNode) {
|
|
127
|
+
return s(state) + ' [ label = "' + n(state) + '" ]';
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
w("digraph finite_state_machine {");
|
|
131
|
+
// initial state if any
|
|
132
|
+
|
|
133
|
+
if (stateMachineType.initialState) {
|
|
134
|
+
w("node [ shape = doublecircle];");
|
|
135
|
+
w(" _" + s_full(stateMachineType.initialState!) + " ;");
|
|
136
|
+
}
|
|
137
|
+
w("node [ shape = circle];");
|
|
138
|
+
stateMachineType.states.forEach((state: UAState) => w(" _" + s_full(state)));
|
|
139
|
+
|
|
140
|
+
stateMachineType.transitions.forEach((transition) =>
|
|
141
|
+
w(
|
|
142
|
+
" _" +
|
|
143
|
+
s(transition.fromStateNode!) +
|
|
144
|
+
" -> _" +
|
|
145
|
+
s(transition.toStateNode!) +
|
|
146
|
+
" [ " +
|
|
147
|
+
// " labeltooltip = \"" + i(transition) + "\" " +
|
|
148
|
+
', label = "' +
|
|
149
|
+
n(transition) +
|
|
150
|
+
'" ];'
|
|
151
|
+
)
|
|
152
|
+
);
|
|
153
|
+
|
|
154
|
+
w("}");
|
|
155
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-address-space
|
|
3
|
+
*/
|
|
4
|
+
import * as fs from "fs";
|
|
5
|
+
import * as path from "path";
|
|
6
|
+
|
|
7
|
+
export function getAddressSpaceFixture(pathname: string) {
|
|
8
|
+
// find test_fixtures
|
|
9
|
+
|
|
10
|
+
let folder = path.join(__dirname, "./test_fixtures");
|
|
11
|
+
if (!fs.existsSync(folder)) {
|
|
12
|
+
folder = path.join(__dirname, "../test_helpers/test_fixtures");
|
|
13
|
+
if (!fs.existsSync(folder)) {
|
|
14
|
+
folder = path.join(__dirname, "../../test_helpers/test_fixtures");
|
|
15
|
+
|
|
16
|
+
// istanbul ignore next
|
|
17
|
+
if (!fs.existsSync(folder)) {
|
|
18
|
+
// tslint:disable:no-console
|
|
19
|
+
console.log(" cannot find test_fixtures folder ");
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
const filename = path.join(folder, pathname);
|
|
24
|
+
|
|
25
|
+
// istanbul ignore next
|
|
26
|
+
if (!fs.existsSync(filename)) {
|
|
27
|
+
throw new Error(" cannot find fixture with name " + pathname);
|
|
28
|
+
}
|
|
29
|
+
return filename;
|
|
30
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-address-space
|
|
3
|
+
*/
|
|
4
|
+
import { assert } from "node-opcua-assert";
|
|
5
|
+
|
|
6
|
+
import { AddressSpace } from "..";
|
|
7
|
+
import { generateAddressSpace } from "../nodeJS";
|
|
8
|
+
|
|
9
|
+
import { getAddressSpaceFixture } from "./get_address_space_fixture";
|
|
10
|
+
|
|
11
|
+
export const mini_nodeset = "mini.Node.Set2.xml";
|
|
12
|
+
export const empty_nodeset = "fixture_empty_nodeset2.xml";
|
|
13
|
+
|
|
14
|
+
export const get_mini_nodeset_filename = () => getAddressSpaceFixture(mini_nodeset);
|
|
15
|
+
export const get_empty_nodeset_filename = () => getAddressSpaceFixture(empty_nodeset);
|
|
16
|
+
|
|
17
|
+
// tslint:disable:no-var-requires
|
|
18
|
+
// tslint:disable:max-line-length
|
|
19
|
+
const thenify = require("thenify");
|
|
20
|
+
|
|
21
|
+
export function getMiniAddressSpace(callback: (err: Error | null, addressSpace?: AddressSpace) => void): void;
|
|
22
|
+
export function getMiniAddressSpace(): Promise<AddressSpace>;
|
|
23
|
+
export function getMiniAddressSpace(...args: any[]): any {
|
|
24
|
+
const callback = args[0] as (err: Error | null, addressSpace?: AddressSpace) => void;
|
|
25
|
+
|
|
26
|
+
const addressSpace = AddressSpace.create();
|
|
27
|
+
|
|
28
|
+
// register namespace 1 (our namespace);
|
|
29
|
+
const serverNamespace = addressSpace.registerNamespace("http://MYNAMESPACE");
|
|
30
|
+
assert(serverNamespace.index === 1);
|
|
31
|
+
|
|
32
|
+
generateAddressSpace(addressSpace, get_mini_nodeset_filename(), (err?: Error) => {
|
|
33
|
+
// istanbul ignore next
|
|
34
|
+
if (err) {
|
|
35
|
+
// tslint:disable:no-console
|
|
36
|
+
console.log("err =", err);
|
|
37
|
+
}
|
|
38
|
+
callback(err || null, addressSpace);
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
(module.exports as any).getMiniAddressSpace = thenify.withCallback((module.exports as any).getMiniAddressSpace);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-address-space
|
|
3
|
+
*/
|
|
4
|
+
export * from "./add_event_generator_object";
|
|
5
|
+
export * from "./alarms_and_conditions_demo";
|
|
6
|
+
export * from "./assertHasMatchingReference";
|
|
7
|
+
export * from "./create_minimalist_address_space_nodeset";
|
|
8
|
+
export * from "./dump_statemachine";
|
|
9
|
+
export * from "./get_address_space_fixture";
|
|
10
|
+
export * from "./get_mini_address_space";
|
|
11
|
+
export * from "./boiler_system";
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
+
<UANodeSet xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" LastModified="2019-05-01T00:00:00Z"
|
|
4
|
+
xmlns="http://opcfoundation.org/UA/2011/03/UANodeSet.xsd">
|
|
5
|
+
<NamespaceUris>
|
|
6
|
+
<Uri>http://opcfoundation.org/UA/DI/</Uri>
|
|
7
|
+
</NamespaceUris>
|
|
8
|
+
<Models>
|
|
9
|
+
<Model ModelUri="http://opcfoundation.org/UA/DI/" Version="1.02" PublicationDate="2019-05-01T00:00:00Z">
|
|
10
|
+
<RequiredModel ModelUri="http://opcfoundation.org/UA/" Version="1.04.4" PublicationDate="2020-01-08T00:00:00Z" />
|
|
11
|
+
</Model>
|
|
12
|
+
</Models>
|
|
13
|
+
<Aliases>
|
|
14
|
+
<Alias Alias="Boolean">i=1</Alias>
|
|
15
|
+
<Alias Alias="SByte">i=2</Alias>
|
|
16
|
+
<Alias Alias="Byte">i=3</Alias>
|
|
17
|
+
<Alias Alias="Int16">i=4</Alias>
|
|
18
|
+
<Alias Alias="UInt16">i=5</Alias>
|
|
19
|
+
<Alias Alias="Int32">i=6</Alias>
|
|
20
|
+
<Alias Alias="UInt32">i=7</Alias>
|
|
21
|
+
<Alias Alias="Int64">i=8</Alias>
|
|
22
|
+
<Alias Alias="UInt64">i=9</Alias>
|
|
23
|
+
<Alias Alias="Float">i=10</Alias>
|
|
24
|
+
<Alias Alias="Double">i=11</Alias>
|
|
25
|
+
<Alias Alias="DateTime">i=13</Alias>
|
|
26
|
+
<Alias Alias="String">i=12</Alias>
|
|
27
|
+
<Alias Alias="ByteString">i=15</Alias>
|
|
28
|
+
<Alias Alias="Guid">i=14</Alias>
|
|
29
|
+
<Alias Alias="XmlElement">i=16</Alias>
|
|
30
|
+
<Alias Alias="NodeId">i=17</Alias>
|
|
31
|
+
<Alias Alias="ExpandedNodeId">i=18</Alias>
|
|
32
|
+
<Alias Alias="QualifiedName">i=20</Alias>
|
|
33
|
+
<Alias Alias="LocalizedText">i=21</Alias>
|
|
34
|
+
<Alias Alias="StatusCode">i=19</Alias>
|
|
35
|
+
<Alias Alias="Structure">i=22</Alias>
|
|
36
|
+
<Alias Alias="Number">i=26</Alias>
|
|
37
|
+
<Alias Alias="Integer">i=27</Alias>
|
|
38
|
+
<Alias Alias="UInteger">i=28</Alias>
|
|
39
|
+
<Alias Alias="HasComponent">i=47</Alias>
|
|
40
|
+
<Alias Alias="HasProperty">i=46</Alias>
|
|
41
|
+
<Alias Alias="Organizes">i=35</Alias>
|
|
42
|
+
<Alias Alias="HasEventSource">i=36</Alias>
|
|
43
|
+
<Alias Alias="HasNotifier">i=48</Alias>
|
|
44
|
+
<Alias Alias="HasSubtype">i=45</Alias>
|
|
45
|
+
<Alias Alias="HasTypeDefinition">i=40</Alias>
|
|
46
|
+
<Alias Alias="HasModellingRule">i=37</Alias>
|
|
47
|
+
<Alias Alias="HasEncoding">i=38</Alias>
|
|
48
|
+
<Alias Alias="HasDescription">i=39</Alias>
|
|
49
|
+
</Aliases>
|
|
50
|
+
<UADataType NodeId="ns=1;i=6522" BrowseName="1:FetchResultDataType" IsAbstract="true">
|
|
51
|
+
<DisplayName>FetchResultDataType</DisplayName>
|
|
52
|
+
<References>
|
|
53
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
54
|
+
</References>
|
|
55
|
+
</UADataType>
|
|
56
|
+
<UADataType NodeId="ns=1;i=6525" BrowseName="1:ParameterResultDataType">
|
|
57
|
+
<DisplayName>ParameterResultDataType</DisplayName>
|
|
58
|
+
<References>
|
|
59
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
60
|
+
</References>
|
|
61
|
+
<Definition Name="1:ParameterResultDataType">
|
|
62
|
+
<Field Name="NodePath" DataType="i=20" ValueRank="1" />
|
|
63
|
+
<Field Name="StatusCode" DataType="i=19" />
|
|
64
|
+
<Field Name="Diagnostics" DataType="i=25" />
|
|
65
|
+
</Definition>
|
|
66
|
+
</UADataType>
|
|
67
|
+
<UADataType NodeId="ns=1;i=15889" BrowseName="1:TransferResultDataDataType">
|
|
68
|
+
<DisplayName>TransferResultDataDataType</DisplayName>
|
|
69
|
+
<References>
|
|
70
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">ns=1;i=6522</Reference>
|
|
71
|
+
</References>
|
|
72
|
+
<Definition Name="1:TransferResultDataDataType">
|
|
73
|
+
<Field Name="SequenceNumber" DataType="i=6" />
|
|
74
|
+
<Field Name="EndOfResults" DataType="i=1" />
|
|
75
|
+
<Field Name="ParameterDefs" DataType="ns=1;i=6525" ValueRank="1" />
|
|
76
|
+
</Definition>
|
|
77
|
+
</UADataType>
|
|
78
|
+
<!-- A -->
|
|
79
|
+
<UAObject NodeId="ns=1;i=6554" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
80
|
+
<DisplayName>Default Binary</DisplayName>
|
|
81
|
+
<References>
|
|
82
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">ns=1;i=6525</Reference>
|
|
83
|
+
<Reference ReferenceType="HasDescription">ns=1;i=6564</Reference>
|
|
84
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
85
|
+
</References>
|
|
86
|
+
</UAObject>
|
|
87
|
+
<UAVariable NodeId="ns=1;i=6564" BrowseName="1:ParameterResultDataType" ParentNodeId="ns=1;i=6435" DataType="String">
|
|
88
|
+
<DisplayName>ParameterResultDataType</DisplayName>
|
|
89
|
+
<References>
|
|
90
|
+
<Reference ReferenceType="HasTypeDefinition">i=69</Reference>
|
|
91
|
+
<Reference ReferenceType="HasComponent" IsForward="false">ns=1;i=6435</Reference>
|
|
92
|
+
</References>
|
|
93
|
+
<Value>
|
|
94
|
+
<String xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">ParameterResultDataType</String>
|
|
95
|
+
</Value>
|
|
96
|
+
</UAVariable>
|
|
97
|
+
<!-- B-->
|
|
98
|
+
<UAObject NodeId="ns=1;i=15892" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
99
|
+
<DisplayName>Default Binary</DisplayName>
|
|
100
|
+
<References>
|
|
101
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">ns=1;i=15889</Reference>
|
|
102
|
+
<Reference ReferenceType="HasDescription">ns=1;i=15897</Reference>
|
|
103
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
104
|
+
</References>
|
|
105
|
+
</UAObject>
|
|
106
|
+
<UAVariable NodeId="ns=1;i=15897" BrowseName="1:TransferResultDataDataType" ParentNodeId="ns=1;i=6435" DataType="String">
|
|
107
|
+
<DisplayName>TransferResultDataDataType</DisplayName>
|
|
108
|
+
<References>
|
|
109
|
+
<Reference ReferenceType="HasTypeDefinition">i=69</Reference>
|
|
110
|
+
<Reference ReferenceType="HasComponent" IsForward="false">ns=1;i=6435</Reference>
|
|
111
|
+
</References>
|
|
112
|
+
<Value>
|
|
113
|
+
<String xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">TransferResultDataDataType</String>
|
|
114
|
+
</Value>
|
|
115
|
+
</UAVariable>
|
|
116
|
+
<!-- C -->
|
|
117
|
+
<UAVariable NodeId="ns=1;i=6435" BrowseName="1:Opc.Ua.Di" SymbolicName="OpcUaDi_BinarySchema" DataType="ByteString">
|
|
118
|
+
<DisplayName>Opc.Ua.Di</DisplayName>
|
|
119
|
+
<References>
|
|
120
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6437</Reference>
|
|
121
|
+
<Reference ReferenceType="HasProperty">ns=1;i=15893</Reference>
|
|
122
|
+
|
|
123
|
+
<Reference ReferenceType="HasComponent">ns=1;i=15897</Reference>
|
|
124
|
+
<Reference ReferenceType="HasComponent">ns=1;i=6564</Reference>
|
|
125
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=93</Reference>
|
|
126
|
+
<Reference ReferenceType="HasTypeDefinition">i=72</Reference>
|
|
127
|
+
</References>
|
|
128
|
+
<Value/>
|
|
129
|
+
</UAVariable>
|
|
130
|
+
<UAVariable NodeId="ns=1;i=6437" BrowseName="NamespaceUri" ParentNodeId="ns=1;i=6435" DataType="String">
|
|
131
|
+
<DisplayName>NamespaceUri</DisplayName>
|
|
132
|
+
<References>
|
|
133
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
134
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=6435</Reference>
|
|
135
|
+
</References>
|
|
136
|
+
<Value>
|
|
137
|
+
<String xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">http://opcfoundation.org/UA/DI/</String>
|
|
138
|
+
</Value>
|
|
139
|
+
</UAVariable>
|
|
140
|
+
<UAVariable NodeId="ns=1;i=15893" BrowseName="Deprecated" ParentNodeId="ns=1;i=6435" DataType="Boolean">
|
|
141
|
+
<DisplayName>Deprecated</DisplayName>
|
|
142
|
+
<References>
|
|
143
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
144
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=6435</Reference>
|
|
145
|
+
</References>
|
|
146
|
+
<Value>
|
|
147
|
+
<Boolean xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">true</Boolean>
|
|
148
|
+
</Value>
|
|
149
|
+
</UAVariable>
|
|
150
|
+
</UANodeSet>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
+
<UANodeSet xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" LastModified="2019-05-01T00:00:00Z"
|
|
4
|
+
xmlns="http://opcfoundation.org/UA/2011/03/UANodeSet.xsd">
|
|
5
|
+
<NamespaceUris>
|
|
6
|
+
<Uri>urn:MyNamespace/</Uri>
|
|
7
|
+
</NamespaceUris>
|
|
8
|
+
<Models>
|
|
9
|
+
<Model ModelUri="urn:MyNamespace/" Version="1.02" PublicationDate="2019-05-01T00:00:00Z">
|
|
10
|
+
<RequiredModel ModelUri="http://opcfoundation.org/UA/" Version="1.04.4" PublicationDate="2020-01-08T00:00:00Z" />
|
|
11
|
+
</Model>
|
|
12
|
+
</Models>
|
|
13
|
+
<Aliases>
|
|
14
|
+
<Alias Alias="Boolean">i=1</Alias>
|
|
15
|
+
<Alias Alias="SByte">i=2</Alias>
|
|
16
|
+
<Alias Alias="Byte">i=3</Alias>
|
|
17
|
+
<Alias Alias="UInt16">i=5</Alias>
|
|
18
|
+
</Aliases>
|
|
19
|
+
<UADataType NodeId="ns=1;i=3065" BrowseName="1:ANY">
|
|
20
|
+
<DisplayName>ANY</DisplayName>
|
|
21
|
+
<References>
|
|
22
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=3</Reference>
|
|
23
|
+
</References>
|
|
24
|
+
</UADataType>
|
|
25
|
+
<UADataType NodeId="ns=1;i=3066" BrowseName="1:REMOTE">
|
|
26
|
+
<DisplayName>REMOTE</DisplayName>
|
|
27
|
+
<References>
|
|
28
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">ns=1;i=3065</Reference>
|
|
29
|
+
</References>
|
|
30
|
+
</UADataType>
|
|
31
|
+
<UADataType NodeId="ns=1;i=3036" BrowseName="1:HW_SUBMODULE">
|
|
32
|
+
<DisplayName>HW_SUBMODULE</DisplayName>
|
|
33
|
+
<References>
|
|
34
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">ns=1;i=3034</Reference>
|
|
35
|
+
</References>
|
|
36
|
+
</UADataType>
|
|
37
|
+
<UADataType NodeId="ns=1;i=3058" BrowseName="1:PORT">
|
|
38
|
+
<DisplayName>PORT</DisplayName>
|
|
39
|
+
<References>
|
|
40
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">ns=1;i=3036</Reference>
|
|
41
|
+
</References>
|
|
42
|
+
</UADataType>
|
|
43
|
+
<UADataType NodeId="ns=1;i=3034" BrowseName="1:HW_IO">
|
|
44
|
+
<DisplayName>HW_IO</DisplayName>
|
|
45
|
+
<References>
|
|
46
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">ns=1;i=3024</Reference>
|
|
47
|
+
</References>
|
|
48
|
+
</UADataType>
|
|
49
|
+
<UADataType NodeId="ns=1;i=3024" BrowseName="1:HW_ANY">
|
|
50
|
+
<DisplayName>HW_ANY</DisplayName>
|
|
51
|
+
<References>
|
|
52
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=5</Reference>
|
|
53
|
+
</References>
|
|
54
|
+
</UADataType>
|
|
55
|
+
</UANodeSet>
|
|
56
|
+
|
|
57
|
+
|