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
// =============================================================================
// CRATE-LEVEL QUALITY LINTS
// =============================================================================
// =============================================================================
// CLIPPY CONFIGURATION
// =============================================================================
// Pedantic lints - allow stylistic ones that don't affect correctness
// Code in docs - extensive changes needed
// Not all returned values need must_use
// Builder pattern returns Self by design
// Intentional in WASM context
// Intentional in WASM context
// Intentional in WASM context
// Bit patterns don't need separators
// Const in functions for locality
// # Errors sections - doc-heavy
// # Panics sections - doc-heavy
// Intentional for clarity
// String building style
// Iterator to string style
// Internal implementation where bounds/values are known at compile time or checked
// Fixed-size buffers and checked lengths
// Used after explicit checks or with known values
// Used for system-level guarantees (RNG, etc.)
// Builder methods can have their own docs
//! mik-sdk - Ergonomic SDK for WASI HTTP handlers
//!
//! # Overview
//!
//! mik-sdk provides a simple, ergonomic way to build portable WASI HTTP handlers.
//! Write your handler once, run it on Spin, wasmCloud, wasmtime, or any WASI-compliant runtime.
//!
//! Available on [crates.io](https://crates.io/crates/mik-sdk).
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────┐
//! │ Your Handler │
//! │ ┌───────────────────────────────────────────────────┐ │
//! │ │ use mik_sdk::prelude::*; │ │
//! │ │ │ │
//! │ │ routes! { │ │
//! │ │ "/" => home, │ │
//! │ │ "/users/{id}" => get_user, │ │
//! │ │ } │ │
//! │ │ │ │
//! │ │ fn get_user(req: &Request) -> Response { │ │
//! │ │ let id = req.param("id").unwrap(); │ │
//! │ │ ok!({ "id": str(id) }) │ │
//! │ │ } │ │
//! │ └───────────────────────────────────────────────────┘ │
//! └─────────────────────────────────────────────────────────┘
//! ↓ compose with
//! ┌─────────────────────────────────────────────────────────┐
//! │ Router Component (provides JSON/HTTP utilities) │
//! └─────────────────────────────────────────────────────────┘
//! ↓ compose with
//! ┌─────────────────────────────────────────────────────────┐
//! │ Bridge Component (WASI HTTP adapter) │
//! └─────────────────────────────────────────────────────────┘
//! ↓ runs on
//! ┌─────────────────────────────────────────────────────────┐
//! │ Any WASI HTTP Runtime (Spin, wasmCloud, wasmtime) │
//! └─────────────────────────────────────────────────────────┘
//! ```
//!
//! # Quick Start
//!
//! ```ignore
//! use bindings::exports::mik::core::handler::Guest;
//! use bindings::mik::core::{http, json};
//! use mik_sdk::prelude::*;
//!
//! routes! {
//! GET "/" => home,
//! GET "/hello/{name}" => hello(path: HelloPath),
//! }
//!
//! fn home(_req: &Request) -> http::Response {
//! ok!({
//! "message": "Welcome!",
//! "version": "0.1.0"
//! })
//! }
//!
//! fn hello(req: &Request) -> http::Response {
//! let name = req.param("name").unwrap_or("world");
//! ok!({
//! "greeting": str(format!("Hello, {}!", name))
//! })
//! }
//! ```
//!
//! # Configuration
//!
//! The SDK and bridge can be configured via environment variables:
//!
//! | Variable | Default | Description |
//! |----------------------|---------|--------------------------------------|
//! | `MIK_MAX_JSON_SIZE` | 1 MB | Maximum JSON input size for parsing |
//! | `MIK_MAX_BODY_SIZE` | 10 MB | Maximum request body size (bridge) |
//!
//! ```bash
//! # Allow 5MB JSON payloads
//! MIK_MAX_JSON_SIZE=5000000
//!
//! # Allow 50MB request bodies
//! MIK_MAX_BODY_SIZE=52428800
//! ```
//!
//! # Core Macros
//!
//! - [`ok!`] - Return 200 OK with JSON body
//! - [`error!`] - Return RFC 7807 error response
//! - [`json!`] - Create a JSON value with type hints
//!
//! # DX Macros
//!
//! - [`guard!`] - Early return validation
//! - [`created!`] - 201 Created response with Location header
//! - [`no_content!`] - 204 No Content response
//! - [`redirect!`] - Redirect responses (301, 302, 307, etc.)
//!
//! # Request Helpers
//!
//! ```ignore
//! // Path parameters (from route pattern)
//! let id = req.param("id"); // Option<&str>
//!
//! // Query parameters
//! let page = req.query("page"); // Option<&str> - first value
//! let tags = req.query_all("tag"); // &[String] - all values
//!
//! // Example: /search?tag=rust&tag=wasm&tag=http
//! req.query("tag") // → Some("rust")
//! req.query_all("tag") // → &["rust", "wasm", "http"]
//!
//! // Headers (case-insensitive)
//! let auth = req.header("Authorization"); // Option<&str>
//! let cookies = req.header_all("Set-Cookie"); // &[String]
//!
//! // Body
//! let bytes = req.body(); // Option<&[u8]>
//! let text = req.text(); // Option<&str>
//! let json = req.json_with(json::try_parse); // Option<JsonValue>
//! ```
//!
//! # DX Macro Examples
//!
//! ```ignore
//! // Early return validation
//! fn create_user(req: &Request) -> http::Response {
//! let name = body.get("name").str_or("");
//! guard!(!name.is_empty(), 400, "Name is required");
//! guard!(name.len() <= 100, 400, "Name too long");
//! created!("/users/123", { "id": "123", "name": str(name) })
//! }
//!
//! // Response shortcuts
//! fn delete_user(req: &Request) -> http::Response {
//! no_content!()
//! }
//!
//! fn legacy_endpoint(req: &Request) -> http::Response {
//! redirect!("/api/v2/users") // 302 Found
//! }
//! ```
//!
//! # Type Hints
//!
//! Use type hints inside `ok!`, `json!`, and `error!` macros:
//! - `str(expr)` - Convert to JSON string
//! - `int(expr)` - Convert to JSON integer
//! - `float(expr)` - Convert to JSON float
//! - `bool(expr)` - Convert to JSON boolean
//!
//! # RFC 7807 Problem Details
//!
//! Error responses follow [RFC 7807](https://www.rfc-editor.org/rfc/rfc7807.html):
//!
//! ```ignore
//! // Basic usage (only status is required)
//! error! { status: 400, title: "Bad Request", detail: "Missing field" }
//!
//! // Full RFC 7807 with extensions
//! error! {
//! status: status::UNPROCESSABLE_ENTITY,
//! title: "Validation Error",
//! detail: "Invalid input",
//! problem_type: "urn:problem:validation",
//! instance: "/users/123",
//! meta: { "field": "email" }
//! }
//! ```
// WASI bindings (HTTP, random, clocks)
// Always included for WASM target, uses http-client feature for HTTP client on native
pub
// Query module - re-export from mik-sql when the sql feature is enabled
pub use mik_sql as query;
pub use ;
// SQL CRUD macros - re-exported from mik-sql-macros when sql feature is enabled
pub use ;
/// Helper trait for the `ensure!` macro to work with both Option and Result.
/// This is an implementation detail and should not be used directly.
/// Helper function for the `ensure!` macro.
/// This is an implementation detail and should not be used directly.
pub use ;
/// HTTP status code constants.
///
/// Use these instead of hardcoding status codes:
/// ```ignore
/// error! { status: status::NOT_FOUND, title: "Not Found", detail: "Resource not found" }
/// ```
/// Prelude module for convenient imports.
///
/// # Usage
///
/// ```ignore
/// use mik_sdk::prelude::*;
/// ```
///
/// This imports:
/// - [`Request`] - HTTP request wrapper with convenient accessors
/// - [`Method`] - HTTP method enum (Get, Post, Put, etc.)
/// - [`status`] - HTTP status code constants
/// - [`mod@env`] - Environment variable access helpers
/// - [`http_client`] - HTTP client for outbound requests
/// - Core macros: [`ok!`], [`error!`], [`json!`], [`routes!`], [`log!`]
/// - DX macros: [`guard!`],
/// [`created!`], [`no_content!`], [`redirect!`], [`not_found!`],
/// [`conflict!`], [`forbidden!`], [`ensure!`], [`fetch!`]
// ============================================================================
// API Contract Tests (compile-time assertions)
// ============================================================================