1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 ZeroDDS Contributors
//! CORBA-Object ↔ DDS-Topic Bridge.
//!
//! Crate `zerodds-corba-dds-bridge`. Safety classification: **STANDARD**.
//!
//! # Scope
//!
//! Brueckt CORBA-Object-Method-Invocations bidirektional auf DDS-
//! Topic-Publish/Subscribe:
//!
//! * **CORBA → DDS**: Eine GIOP-Request, die der Bridge-POA empfaengt,
//! wird in ein DDS-Sample umgewandelt und auf dem assoziierten
//! Topic publiziert. Der Reply kommt aus einem zweiten Reply-Topic.
//! * **DDS → CORBA**: Ein DDS-Sample auf einem Source-Topic wird in
//! eine GIOP-Request konvertiert und an einen CORBA-Client-Endpoint
//! gesendet (Forwarding-Modus).
//!
//! Der `BridgeMapping` erlaubt eine Many-to-Many-Konfiguration: ein
//! CORBA-Object kann mehrere Topics bedienen, ein DDS-Topic kann
//! Requests von mehreren CORBA-Objects akzeptieren.
//!
//! Konkrete Wire-Anbindung an die CORBA-Welt liegt in [`wire`]:
//! [`decode_giop_request_bytes`] und [`object_key_from_ior`] kapseln
//! die Cross-Crate-Aufrufe an `corba-giop` bzw. `corba-ior`.
//!
//! ## Beispiel
//!
//! ```
//! use zerodds_corba_dds_bridge::Direction;
//! assert_ne!(Direction::CorbaToDds, Direction::DdsToCorba);
//! ```
extern crate alloc;
// Bridge-Security-Adapter (Bridge-Spec §7.1 TLS via rustls/SSLIOP,
// §7.2 Auth-Modes, §7.3 Topic-ACL). std-only.
// Daemon-Runtime-Adapter + QoS-Translation. std-only.
pub use ;
pub use BridgeServant;
pub use ;
pub use ;