redevplugin-worker-sdk 2.0.8

Rust SDK for ReDevPlugin WASM workers
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
use crate::api;
use crate::error::{Error, ErrorCode, Result};
use crate::resource::{Handle, IO_FLAG_EOF, MAX_IO_CHUNK_BYTES};
use serde::{Deserialize, Serialize};
use std::sync::atomic::{AtomicU64, Ordering};

static TEMP_SEQUENCE: AtomicU64 = AtomicU64::new(1);
const ATOMIC_TEMP_ATTEMPTS: usize = 16;

#[derive(Debug, Clone, Default, Serialize)]
pub struct OpenOptions {
    pub read: bool,
    pub write: bool,
    pub create: bool,
    pub create_new: bool,
    pub truncate: bool,
    pub append: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub mode: Option<u32>,
}

#[derive(Debug, Clone, Deserialize)]
pub struct FileStat {
    pub uri: String,
    pub kind: FileKind,
    pub size: u64,
    pub mode: u32,
    pub modified_unix_ms: i64,
    #[serde(default)]
    pub created_unix_ms: Option<i64>,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum FileKind {
    File,
    Directory,
    Symlink,
    Other,
    #[serde(other)]
    Unknown,
}

#[derive(Debug, Clone, Deserialize)]
pub struct DirectoryEntry {
    pub name: String,
    pub uri: String,
    pub kind: FileKind,
}

#[derive(Debug, Clone, Deserialize)]
pub struct DirectoryPage {
    #[serde(default)]
    pub entries: Vec<DirectoryEntry>,
    pub eof: bool,
}

#[derive(Debug, Clone, Deserialize)]
pub struct WatchEvent {
    pub sequence: u64,
    pub kind: WatchKind,
    pub uri: String,
    #[serde(default)]
    pub previous_uri: Option<String>,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum WatchKind {
    Create,
    Change,
    Delete,
    Rename,
    Overflow,
    #[serde(other)]
    Unknown,
}

#[derive(Debug, Clone, Deserialize)]
pub struct MountInfo {
    pub id: String,
    pub uri: String,
    pub read_only: bool,
}

#[derive(Debug, Clone, Deserialize)]
pub struct Mounts {
    #[serde(default)]
    pub mounts: Vec<MountInfo>,
}

#[derive(Deserialize)]
struct HandleResult {
    handle: u64,
}

#[derive(Serialize)]
struct URIArguments<'a> {
    uri: &'a str,
}

pub struct File {
    handle: Handle,
}

impl File {
    pub fn open(uri: &str, options: OpenOptions) -> Result<Self> {
        #[derive(Serialize)]
        struct Arguments<'a> {
            uri: &'a str,
            options: OpenOptions,
        }
        let opened: HandleResult = api::call("fs.open", &Arguments { uri, options })?;
        Ok(Self {
            handle: Handle::new(opened.handle)?,
        })
    }

    pub fn read(&mut self, capacity: usize) -> Result<(Vec<u8>, u32)> {
        self.handle.read(capacity)
    }

    pub fn write_all(&mut self, bytes: &[u8]) -> Result<()> {
        for chunk in bytes.chunks(MAX_IO_CHUNK_BYTES) {
            self.handle.write(chunk, 0)?;
        }
        Ok(())
    }

    pub fn seek(&mut self, offset: i64, whence: u32) -> Result<u64> {
        self.handle.seek(offset, whence)
    }

    pub fn sync(&mut self) -> Result<()> {
        #[derive(Serialize)]
        struct Arguments {
            handle: u64,
        }
        let _: serde_json::Value = api::call(
            "fs.sync",
            &Arguments {
                handle: self.handle.id(),
            },
        )?;
        Ok(())
    }

    pub fn close(mut self) -> Result<()> {
        self.handle.close()
    }
}

pub struct Directory {
    handle: Handle,
}

impl Directory {
    pub fn open(uri: &str) -> Result<Self> {
        let opened: HandleResult = api::call("fs.read_dir.open", &URIArguments { uri })?;
        Ok(Self {
            handle: Handle::new(opened.handle)?,
        })
    }

    pub fn next(&mut self, limit: u16) -> Result<DirectoryPage> {
        #[derive(Serialize)]
        struct Arguments {
            handle: u64,
            limit: u16,
        }
        api::call(
            "fs.read_dir.next",
            &Arguments {
                handle: self.handle.id(),
                limit,
            },
        )
    }

    pub fn close(mut self) -> Result<()> {
        self.handle.close()
    }
}

pub struct Watch {
    handle: Handle,
}

impl Watch {
    pub fn open(uri: &str) -> Result<Self> {
        #[derive(Serialize)]
        struct Arguments<'a> {
            uri: &'a str,
            recursive: bool,
        }
        let opened: HandleResult = api::call(
            "fs.watch",
            &Arguments {
                uri,
                recursive: false,
            },
        )?;
        Ok(Self {
            handle: Handle::new(opened.handle)?,
        })
    }

    pub fn next(&mut self, timeout_ms: u32) -> Result<WatchEvent> {
        #[derive(Serialize)]
        struct Arguments {
            handle: u64,
            timeout_ms: u32,
        }
        api::call(
            "fs.watch_next",
            &Arguments {
                handle: self.handle.id(),
                timeout_ms,
            },
        )
    }

    pub fn close(mut self) -> Result<()> {
        self.handle.close()
    }
}

pub fn mounts() -> Result<Mounts> {
    api::call("fs.mounts", &serde_json::json!({}))
}

pub fn stat(uri: &str, follow_symlinks: bool) -> Result<FileStat> {
    #[derive(Serialize)]
    struct Arguments<'a> {
        uri: &'a str,
        follow_symlinks: bool,
    }
    api::call(
        "fs.stat",
        &Arguments {
            uri,
            follow_symlinks,
        },
    )
}

pub fn read_file(uri: &str) -> Result<Vec<u8>> {
    let mut file = File::open(
        uri,
        OpenOptions {
            read: true,
            ..OpenOptions::default()
        },
    )?;
    let mut result = Vec::new();
    loop {
        let (chunk, flags) = file.read(MAX_IO_CHUNK_BYTES)?;
        if chunk.is_empty() && flags & IO_FLAG_EOF == 0 {
            return Err(Error::internal("file read made no progress"));
        }
        result.extend_from_slice(&chunk);
        if flags & IO_FLAG_EOF != 0 {
            file.close()?;
            return Ok(result);
        }
    }
}

pub fn read_text(uri: &str) -> Result<String> {
    String::from_utf8(read_file(uri)?)
        .map_err(|_| Error::internal("file content is not valid UTF-8"))
}

pub fn write_file(uri: &str, bytes: &[u8], atomic: bool) -> Result<()> {
    if !atomic {
        return write_direct(uri, bytes, false);
    }
    for _ in 0..ATOMIC_TEMP_ATTEMPTS {
        let temporary = atomic_temporary_uri(uri)?;
        match write_direct(&temporary, bytes, true) {
            Ok(()) => {
                let result = rename(&temporary, uri, true);
                if result.is_err() {
                    let _ = remove(&temporary, false);
                }
                return result;
            }
            Err(error) if error.code == ErrorCode::AlreadyExists => continue,
            Err(error) => {
                let _ = remove(&temporary, false);
                return Err(error);
            }
        }
    }
    Err(Error::internal(
        "could not allocate a unique same-directory atomic write file",
    ))
}

pub fn write_text(uri: &str, text: &str, atomic: bool) -> Result<()> {
    write_file(uri, text.as_bytes(), atomic)
}

fn write_direct(uri: &str, bytes: &[u8], create_new: bool) -> Result<()> {
    let mut file = File::open(
        uri,
        OpenOptions {
            write: true,
            create: !create_new,
            create_new,
            truncate: !create_new,
            mode: Some(0o600),
            ..OpenOptions::default()
        },
    )?;
    file.write_all(bytes)?;
    file.sync()?;
    file.close()
}

pub fn remove(uri: &str, recursive: bool) -> Result<()> {
    #[derive(Serialize)]
    struct Arguments<'a> {
        uri: &'a str,
        recursive: bool,
    }
    let _: serde_json::Value = api::call("fs.remove", &Arguments { uri, recursive })?;
    Ok(())
}

pub fn mkdir(uri: &str, recursive: bool, mode: u32) -> Result<()> {
    #[derive(Serialize)]
    struct Arguments<'a> {
        uri: &'a str,
        recursive: bool,
        mode: u32,
    }
    let _: serde_json::Value = api::call(
        "fs.mkdir",
        &Arguments {
            uri,
            recursive,
            mode,
        },
    )?;
    Ok(())
}

pub fn rename(from: &str, to: &str, overwrite: bool) -> Result<()> {
    transfer("fs.rename", from, to, overwrite)
}

pub fn copy(from: &str, to: &str, overwrite: bool) -> Result<()> {
    transfer("fs.copy", from, to, overwrite)
}

fn transfer(operation: &str, from: &str, to: &str, overwrite: bool) -> Result<()> {
    #[derive(Serialize)]
    struct Arguments<'a> {
        from: &'a str,
        to: &'a str,
        overwrite: bool,
    }
    let _: serde_json::Value = api::call(
        operation,
        &Arguments {
            from,
            to,
            overwrite,
        },
    )?;
    Ok(())
}

pub fn set_times(uri: &str, accessed_unix_ms: i64, modified_unix_ms: i64) -> Result<()> {
    #[derive(Serialize)]
    struct Arguments<'a> {
        uri: &'a str,
        accessed_unix_ms: i64,
        modified_unix_ms: i64,
    }
    let _: serde_json::Value = api::call(
        "fs.set_times",
        &Arguments {
            uri,
            accessed_unix_ms,
            modified_unix_ms,
        },
    )?;
    Ok(())
}

fn atomic_temporary_uri(uri: &str) -> Result<String> {
    let (directory, name) = uri
        .rsplit_once('/')
        .filter(|(_, name)| !name.is_empty())
        .ok_or_else(|| Error::from_abi_status(-1))?;
    let sequence = TEMP_SEQUENCE.fetch_add(1, Ordering::Relaxed);
    Ok(format!(
        "{directory}/.{name}.redevplugin-{sequence:016x}.tmp"
    ))
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn atomic_temporary_file_stays_in_the_same_directory() {
        let temporary = atomic_temporary_uri("redevfs://workspace/src/data.bin").unwrap();
        assert!(temporary.starts_with("redevfs://workspace/src/.data.bin.redevplugin-"));
        assert!(temporary.ends_with(".tmp"));
    }
}