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
use actor_impl;
use task_impl;
use message_impl;
use TokenStream;
use quote;
/// Generates the actor impls and forms necessary fields.
///
/// # Arguments
/// This proc macro supports the following arguments:
/// - `awaiting` (default)
/// - `no_awaiting`
///
/// # `vin::handles()` proc macro
/// Specifies which message the actor handles, then generates code to handle the message.
///
/// ## Arguments
/// Currently there is only one additional argument and it's 'bounded'.
///
/// ### `bounded`
/// The `bounded` argument allows you to set an upper limit to the amount of messages a mailbox
/// can take in. It also allows you to set a strategy for handling a full mailbox. Current
/// available strategies are: 'wait' (awaits until the mailbox is available), 'report' (reports a failure)
/// and 'silent' (silently discards the message).
///
/// # Example
/// ```ignore
/// #[vin::actor] /* defaults to `awaiting` */
/// #[vin::handles(MyMsg, bounded(size = 1024, report))]
/// struct MyActor;
///
/// /* or */
///
/// #[vin::actor(no_awaiting)]
/// #[vin::handles(MyMsg, bounded(size = 1024, wait))]
/// struct MyActor;
/// ```
/// A noop macro attribute used to specify messages to handle. Check [`actor`] for more information.
/// Generates a [`vin`]-managed [`tokio`] task. It's a specialized actor with no handler that runs some
/// piece of code until it's completed or [`vin`] has shutdown.
///
/// # Example
/// ```no_run
/// # use vin::*;
/// # struct WebSocket;
///
/// # impl WebSocket {
/// # async fn recv(&mut self) -> Vec<u8> {
/// # Vec::new()
/// # }
/// # }
///
/// #[vin::task]
/// struct WebsocketSession {
/// ws: WebSocket,
/// }
///
/// #[async_trait]
/// impl TaskActor for WebsocketSession {
/// async fn task(&self, ctx: Self::Context) -> anyhow::Result<()> {
/// loop {
/// let msg = self.ws.recv().await?;
/// /* do something */
/// }
/// }
/// }
/// ```
/// Implements the [`Message`] trait for a type. Enables specifying the result type easily.
///
/// Shorthand for:
/// ```ignore
/// struct MyMsg;
///
/// impl Message for MyMsg {
/// type Result = u32;
/// }
/// ```
///
/// # Example
/// ```ignore
/// #[vin::message] // No result type (result = ())
/// struct MyMsg;
/// ```
/// or
/// ```ignore
/// #[vin::message(result = u32)]
/// struct MyMsg;
/// ```