async-stomp 0.6.3

An asynchronous streaming STOMP client
Documentation
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# async-stomp

[![crates.io](https://img.shields.io/crates/v/async-stomp.svg)](https://crates.io/crates/async-stomp)
[![docs.rs](https://docs.rs/async-stomp/badge.svg)](https://docs.rs/async-stomp/latest/async_stomp/)
[![codecov](https://codecov.io/github/snaggen/async-stomp/graph/badge.svg?token=HEY5300T6X)](https://codecov.io/github/snaggen/async-stomp)

An async [STOMP](https://stomp.github.io/) library for Rust, using the Tokio stack.

This is a fork of [tokio-stomp-2](https://github.com/alexkunde/tokio-stomp-2), with the purpose of getting some basic maintenance going.

## Overview

This library provides a fully asynchronous Rust implementation of the STOMP (Simple/Streaming Text Oriented Messaging Protocol) 1.2 protocol. It allows Rust applications to communicate with message brokers like ActiveMQ, RabbitMQ, and others that support the STOMP protocol.

The library is built on top of Tokio, leveraging its async I/O capabilities to provide non-blocking message handling.

## Features

- Async STOMP client for Rust using Tokio
- Support for all STOMP operations:
  - Connection management (connect, disconnect)
  - Message publishing
  - Subscriptions
  - Acknowledgments (auto, client, client-individual modes)
  - Transactions
- TLS/SSL support for secure connections
- Custom headers support for advanced configurations
- Error handling with detailed error information

## Installation

Add this to your `Cargo.toml`:

```toml
[dependencies]
async-stomp = "0.6"
```

## Usage Guide

### Connecting to a STOMP Server

The primary entry point is the `Connector` builder, which allows you to configure and establish a connection:

```rust
use async_stomp::client::Connector;

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    // Basic connection
    let connection = Connector::builder()
        .server("localhost:61613")
        .virtualhost("/")
        .login("guest".to_string())
        .passcode("guest".to_string())
        .connect()
        .await?;
        
    // Connection with custom headers
    let connection_with_headers = Connector::builder()
        .server("localhost:61613")
        .virtualhost("/")
        .login("guest".to_string())
        .passcode("guest".to_string())
        .headers(vec![("client-id".to_string(), "my-client".to_string())])
        .connect()
        .await?;
        
    Ok(())
}
```

### Sending a message to a queue

```rust
use futures::prelude::*;
use async_stomp::client::Connector;
use async_stomp::ToServer;

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    let mut conn = Connector::builder()
        .server("127.0.0.1:61613")
        .virtualhost("/")
        .login("guest".to_string())
        .passcode("guest".to_string())
        .connect()
        .await?;

    // Send a message with body
    conn.send(
        ToServer::Send {
            destination: "queue.test".into(),
            transaction: None,
            headers: None,
            body: Some(b"Hello there rustaceans!".to_vec()),
        }
        .into(),
    )
    .await?;
    
    // Send a message with custom headers
    conn.send(
        ToServer::Send {
            destination: "queue.test".into(),
            transaction: None,
            headers: Some(vec![
                ("content-type".to_string(), "text/plain".to_string()),
                ("priority".to_string(), "high".to_string())
            ]),
            body: Some(b"Important message!".to_vec()),
        }
        .into(),
    )
    .await?;
    
    Ok(())
}
```

### Subscribing to a queue and receiving messages

```rust
use futures::prelude::*;
use async_stomp::client::Connector;
use async_stomp::client::Subscriber;
use async_stomp::FromServer;

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    let mut conn = Connector::builder()
        .server("127.0.0.1:61613")
        .virtualhost("/")
        .login("guest".to_string())
        .passcode("guest".to_string())
        .connect()
        .await?;

    // Create and send a subscription message
    let subscribe = Subscriber::builder()
        .destination("queue.test")
        .id("subscription-1")
        .subscribe();

    conn.send(subscribe).await?;

    // Process incoming messages
    while let Some(message) = conn.next().await {
        match message {
            Ok(msg) => {
                if let FromServer::Message { 
                    destination, 
                    message_id, 
                    body, 
                    ..
                } = msg.content {
                    println!("Received message from {}", destination);
                    println!("Message ID: {}", message_id);
                    
                    if let Some(body) = body {
                        println!("Body: {}", String::from_utf8_lossy(&body));
                    }
                    
                    // Process the message...
                }
            },
            Err(e) => {
                eprintln!("Error receiving message: {:?}", e);
                break;
            }
        }
    }
    
    Ok(())
}
```

### Using transactions

Transactions allow you to group multiple operations together and commit or abort them as a unit:

```rust
use futures::prelude::*;
use async_stomp::{client::Connector, ToServer};

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    let mut conn = Connector::builder()
        .server("127.0.0.1:61613")
        .virtualhost("/")
        .login("guest".to_string())
        .passcode("guest".to_string())
        .connect()
        .await?;

    // Start a transaction
    let transaction_id = "tx-1";
    conn.send(ToServer::Begin { 
        transaction: transaction_id.to_string() 
    }.into()).await?;
    
    // Send messages within the transaction
    conn.send(
        ToServer::Send {
            destination: "queue.test".into(),
            transaction: Some(transaction_id.to_string()),
            headers: None,
            body: Some(b"Message 1 in transaction".to_vec()),
        }
        .into(),
    ).await?;
    
    conn.send(
        ToServer::Send {
            destination: "queue.test".into(),
            transaction: Some(transaction_id.to_string()),
            headers: None,
            body: Some(b"Message 2 in transaction".to_vec()),
        }
        .into(),
    ).await?;
    
    // Commit the transaction
    conn.send(ToServer::Commit { 
        transaction: transaction_id.to_string() 
    }.into()).await?;
    
    // Example of starting another transaction and aborting it
    let transaction_id = "tx-2";
    conn.send(ToServer::Begin { 
        transaction: transaction_id.to_string() 
    }.into()).await?;
    
    conn.send(
        ToServer::Send {
            destination: "queue.test".into(),
            transaction: Some(transaction_id.to_string()),
            headers: None,
            body: Some(b"This message will be aborted".to_vec()),
        }
        .into(),
    ).await?;
    
    // Abort the transaction
    conn.send(ToServer::Abort { 
        transaction: transaction_id.to_string() 
    }.into()).await?;
    
    Ok(())
}
```

### Secure Connection with TLS/SSL

```rust
use futures::prelude::*;
use async_stomp::client::Connector;
use async_stomp::client::Subscriber;
use async_stomp::ToServer;

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    let server_address = "secure-stomp-server.example.com:61614";
    
    // Create a secure connection with TLS enabled
    let mut conn = Connector::builder()
        .server(server_address)
        .virtualhost("secure-stomp-server.example.com")
        .login("guest".to_string())
        .passcode("guest".to_string())
        .use_tls(true)                                    // Enable TLS
        .tls_server_name("secure-stomp-server.example.com") // Server name for certificate validation
        .connect()
        .await?;
        
    // Use the connection as normal for subscribing and sending messages
    let subscribe = Subscriber::builder()
        .destination("secure.topic")
        .id("secure-subscription")
        .subscribe();
        
    conn.send(subscribe).await?;
    
    // Send a message securely
    conn.send(
        ToServer::Send {
            destination: "secure.topic".into(),
            transaction: None,
            headers: None,
            body: Some(b"This is a secure message!".to_vec()),
        }
        .into(),
    ).await?;
    
    Ok(())
}
```

## Advanced Usage

### Acknowledgment Modes

STOMP offers different acknowledgment modes for message consumption:

```rust
use async_stomp::{AckMode, client::{Connector, Subscriber}, ToServer};

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    let mut conn = Connector::builder()
        .server("localhost:61613")
        .virtualhost("/")
        .connect()
        .await?;

    // Subscribe with client acknowledgment mode
    let subscribe_client_ack = Subscriber::builder()
        .destination("queue.important")
        .id("sub-with-ack")
        .headers(vec![("ack".to_string(), "client".to_string())])
        .subscribe();
        
    conn.send(subscribe_client_ack).await?;
    
    // When processing messages, acknowledge them manually
    // (assuming you've received a message with ID "message-123")
    conn.send(
        ToServer::Ack {
            id: "message-123".to_string(),
            transaction: None,
        }
        .into()
    ).await?;
    
    // Or negative-acknowledge if processing failed
    conn.send(
        ToServer::Nack {
            id: "message-456".to_string(),
            transaction: None,
        }
        .into()
    ).await?;
    
    Ok(())
}
```

STOMP supports three acknowledgment modes:

1. **Auto** (default if not specified)
   - Messages are automatically acknowledged by the client as soon as they are received
   - No explicit acknowledgment is required
   - Example: `vec![("ack".to_string(), "auto".to_string())]`

2. **Client**
   - The client must explicitly acknowledge messages
   - An ACK acknowledges all messages received so far on the connection
   - Example: `vec![("ack".to_string(), "client".to_string())]`

3. **Client-Individual**
   - The client must explicitly acknowledge each individual message
   - Each message must be acknowledged separately
   - Example: `vec![("ack".to_string(), "client-individual".to_string())]`

#### **Example with Auto Acknowledgment (Default)**

```rust
// Default subscription uses auto acknowledgment
let subscribe_auto = Subscriber::builder()
    .destination("queue.standard")
    .id("sub-auto")
    .subscribe();
    
conn.send(subscribe_auto).await?;

// No need to acknowledge messages - they're auto-acknowledged
```

#### **Example with Client-Individual Acknowledgment**

```rust
// Subscribe with client-individual acknowledgment mode
let subscribe_individual = Subscriber::builder()
    .destination("queue.critical")
    .id("sub-individual")
    .headers(vec![("ack".to_string(), "client-individual".to_string())])
    .subscribe();
    
conn.send(subscribe_individual).await?;

// Process messages in a loop
while let Some(message) = conn.next().await {
    if let Ok(msg) = message {
        if let FromServer::Message { message_id, body, .. } = msg.content {
            // Process the message...
            println!("Processing message: {}", message_id);
            
            // Individual acknowledgment after successful processing
            conn.send(
                ToServer::Ack {
                    id: message_id,
                    transaction: None,
                }
                .into()
            ).await?;
        }
    }
}
```

#### **Using Transactions with Acknowledgments**

You can also combine transactions with acknowledgments to ensure atomic processing:

```rust
// Start a transaction
let transaction_id = "tx-1";
conn.send(ToServer::Begin { 
    transaction: transaction_id.to_string() 
}.into()).await?;

// Acknowledge multiple messages within the transaction
conn.send(
    ToServer::Ack {
        id: "message-123".to_string(),
        transaction: Some(transaction_id.to_string()),
    }
    .into()
).await?;

conn.send(
    ToServer::Ack {
        id: "message-124".to_string(), 
        transaction: Some(transaction_id.to_string()),
    }
    .into()
).await?;

// Commit the transaction to finalize all acknowledgments
conn.send(ToServer::Commit { 
    transaction: transaction_id.to_string() 
}.into()).await?;
```

### Connection Lifecycle Management

```rust
use futures::prelude::*;
use async_stomp::{client::Connector, ToServer};

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    let mut conn = Connector::builder()
        .server("localhost:61613")
        .virtualhost("/")
        .connect()
        .await?;
        
    // Use the connection...
    
    // Gracefully disconnect when done
    conn.send(
        ToServer::Disconnect {
            receipt: Some("disconnect-receipt".to_string())
        }
        .into()
    ).await?;
    
    // Wait for the RECEIPT frame if requested
    if let Some(msg) = conn.next().await {
        // Check for receipt...
    }
    
    Ok(())
}
```

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

Licensed under the [EUPL](LICENSE.EUPL).