rlua-searcher 0.1.0

Require Lua modules by name
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 rlua::{Context, Function, MetaMethod, RegistryKey, Table, UserData, UserDataMethods, Value};
use std::borrow::Cow;
use std::collections::HashMap;
use std::fs::File;
use std::io::Read;
use std::path::{Path, PathBuf};

use crate::types::{CatMap, Result};

/// Stores Lua modules indexed by module name, and provides an `rlua::MetaMethod` to
/// enable `require`ing the stored modules by name in an `rlua::Context`.
struct Searcher {
    /// A `HashMap` of Lua modules in string representation, indexed by module name.
    ///
    /// Uses `Cow<'static, str>` types to allow both `&'static str` and owned `String`.
    modules: HashMap<Cow<'static, str>, Cow<'static, str>>,

    /// An `rlua::RegistryKey` whose value is the Lua environment within which the user
    /// made the request to instantiate a `Searcher` for `modules`.
    globals: RegistryKey,
}

impl Searcher {
    fn new(modules: HashMap<Cow<'static, str>, Cow<'static, str>>, globals: RegistryKey) -> Self {
        Self { modules, globals }
    }
}

impl UserData for Searcher {
    fn add_methods<'lua, M>(methods: &mut M)
    where
        M: UserDataMethods<'lua, Self>,
    {
        methods.add_meta_method(MetaMethod::Call, |lua_ctx, this, name: String| {
            let name = Cow::from(name);
            match this.modules.get(&name) {
                Some(content) => {
                    let content = match content {
                        Cow::Borrowed(content) => content,
                        Cow::Owned(content) => content.as_str(),
                    };
                    Ok(Value::Function(
                        lua_ctx
                            .load(content)
                            .set_name(name.as_ref())?
                            .set_environment(lua_ctx.registry_value::<Table>(&this.globals)?)?
                            .into_function()?,
                    ))
                }
                None => Ok(Value::Nil),
            }
        });
    }
}

/// Like `Searcher`, but with `modules` values given as paths to files the content of
/// which can be read as Lua source code.
///
/// Facilitates Lua module reloading, and module reloading of any other programming
/// language whose source code can be compiled to Lua.
struct PathSearcherPoly<P>
where
    P: 'static + AsRef<Path> + Send,
{
    modules: HashMap<Cow<'static, str>, P>,
    globals: RegistryKey,

    /// Function to read file content as Lua source code.
    transform: Box<dyn Fn(PathBuf) -> rlua::Result<String> + Send>,
}

impl<P> PathSearcherPoly<P>
where
    P: 'static + AsRef<Path> + Send,
{
    fn new(
        modules: HashMap<Cow<'static, str>, P>,
        globals: RegistryKey,
        transform: Box<dyn Fn(PathBuf) -> rlua::Result<String> + Send>,
    ) -> Self {
        Self {
            modules,
            globals,
            transform,
        }
    }
}

impl<P> UserData for PathSearcherPoly<P>
where
    P: 'static + AsRef<Path> + Send,
{
    fn add_methods<'lua, M>(methods: &mut M)
    where
        M: UserDataMethods<'lua, Self>,
    {
        methods.add_meta_method(MetaMethod::Call, |lua_ctx, this, name: String| {
            let name = Cow::from(name);
            match this.modules.get(&name) {
                Some(ref path) => {
                    let path = path.as_ref().to_path_buf();
                    let content = (this.transform)(path)?;
                    Ok(Value::Function(
                        lua_ctx
                            .load(&content)
                            .set_name(name.as_ref())?
                            .set_environment(lua_ctx.registry_value::<Table>(&this.globals)?)?
                            .into_function()?,
                    ))
                }
                None => Ok(Value::Nil),
            }
        });
    }
}

/// Like `Searcher`, but with closures as `modules` values, to facilitate setting up an
/// `rlua::Context` with Rust code.
///
/// Enables exposing `UserData` types to an `rlua::Context`.
struct ClosureSearcher {
    /// Closures must accept three parameters:
    ///
    /// 1. An `rlua::Context`, which the closure can do what it wants with.
    ///
    /// 2. An `rlua::Table` containing globals (i.e. Lua's `_G`), which can be passed to
    ///    `Chunk.set_environment()`.
    ///
    /// 3. The name of the module to be loaded (`&str`).
    ///
    /// Closures must return an `rlua::Result`-wrapped `Function`. This `Function` acts as
    /// the module loader.
    modules: HashMap<
        Cow<'static, str>,
        Box<
            dyn for<'ctx> Fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>
                + Send,
        >,
    >,

    globals: RegistryKey,
}

impl ClosureSearcher {
    fn new(
        modules: HashMap<
            Cow<'static, str>,
            Box<
                dyn for<'ctx> Fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>
                    + Send,
            >,
        >,
        globals: RegistryKey,
    ) -> Self {
        Self { modules, globals }
    }
}

impl UserData for ClosureSearcher {
    fn add_methods<'lua, M>(methods: &mut M)
    where
        M: UserDataMethods<'lua, Self>,
    {
        methods.add_meta_method(
            MetaMethod::Call,
            |lua_ctx: Context<'lua>, this, name: String| {
                let name = Cow::from(name);
                match this.modules.get(&name) {
                    Some(ref closure) => Ok(Value::Function(closure(
                        lua_ctx,
                        lua_ctx.registry_value::<Table>(&this.globals)?,
                        name.as_ref(),
                    )?)),
                    None => Ok(Value::Nil),
                }
            },
        );
    }
}

/// Like `Searcher`, but with function pointers as `modules` values, to facilitate setting
/// up an `rlua::Context` with Rust code.
///
/// Enables exposing `UserData` types to an `rlua::Context`.
struct FunctionSearcher {
    /// Functions must accept three parameters:
    ///
    /// 1. An `rlua::Context`, which the function body can do what it wants with.
    ///
    /// 2. An `rlua::Table` containing globals (i.e. Lua's `_G`), which can be passed to
    ///    `Chunk.set_environment()`.
    ///
    /// 3. The name of the module to be loaded (`&str`).
    ///
    /// Functions must return an `rlua::Result`-wrapped `Function`. This `Function` acts
    /// as the module loader.
    modules: HashMap<
        Cow<'static, str>,
        for<'ctx> fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>,
    >,

    globals: RegistryKey,
}

impl FunctionSearcher {
    fn new(
        modules: HashMap<
            Cow<'static, str>,
            for<'ctx> fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>,
        >,
        globals: RegistryKey,
    ) -> Self {
        Self { modules, globals }
    }
}

impl UserData for FunctionSearcher {
    fn add_methods<'lua, M>(methods: &mut M)
    where
        M: UserDataMethods<'lua, Self>,
    {
        methods.add_meta_method(
            MetaMethod::Call,
            |lua_ctx: Context<'lua>, this, name: String| {
                let name = Cow::from(name);
                match this.modules.get(&name) {
                    Some(ref function) => Ok(Value::Function(function(
                        lua_ctx,
                        lua_ctx.registry_value::<Table>(&this.globals)?,
                        name.as_ref(),
                    )?)),
                    None => Ok(Value::Nil),
                }
            },
        );
    }
}

/// Like `Searcher`, but with `CatMap` to facilitate indexing heterogenous strings and paths -
/// all presumed to resolve to Lua module content - by module names in `modules`.
struct CatSearcher {
    modules: CatMap,
    globals: RegistryKey,
}

impl CatSearcher {
    fn new(modules: CatMap, globals: RegistryKey) -> Self {
        Self { modules, globals }
    }
}

impl UserData for CatSearcher {
    fn add_methods<'lua, M>(methods: &mut M)
    where
        M: UserDataMethods<'lua, Self>,
    {
        methods.add_meta_method(MetaMethod::Call, |lua_ctx, this, name: String| {
            let name = Cow::from(name);
            match this.modules.get(&name) {
                Some(content) => {
                    let content = content
                        .cat()
                        .map_err(|e| rlua::Error::RuntimeError(format!("io error: {}", e)))?;
                    Ok(Value::Function(
                        lua_ctx
                            .load(&content)
                            .set_name(name.as_ref())?
                            .set_environment(lua_ctx.registry_value::<Table>(&this.globals)?)?
                            .into_function()?,
                    ))
                }
                None => Ok(Value::Nil),
            }
        });
    }
}

/// Extend `rlua::Context` to support `require`ing Lua modules by name.
pub trait AddSearcher {
    /// Add a `HashMap` of Lua modules indexed by module name to Lua's `package.searchers`
    /// table in an `rlua::Context`, with lookup functionality provided by the
    /// `rlua_searcher::Searcher` struct.
    fn add_searcher(&self, modules: HashMap<Cow<'static, str>, Cow<'static, str>>) -> Result<()>;

    /// Like `add_searcher`, but with `modules` values given as paths to files containing
    /// Lua source code to facilitate module reloading.
    fn add_path_searcher<P>(&self, modules: HashMap<Cow<'static, str>, P>) -> Result<()>
    where
        P: 'static + AsRef<Path> + Send;

    /// Like `add_path_searcher`, but with user-provided closure for transforming source
    /// code to Lua.
    fn add_path_searcher_poly<P>(
        &self,
        modules: HashMap<Cow<'static, str>, P>,
        transform: Box<dyn Fn(PathBuf) -> rlua::Result<String> + Send>,
    ) -> Result<()>
    where
        P: 'static + AsRef<Path> + Send;

    /// Like `add_searcher`, but with user-provided closure for `rlua::Context` setup.
    fn add_closure_searcher(
        &self,
        modules: HashMap<
            Cow<'static, str>,
            Box<
                dyn for<'ctx> Fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>
                    + Send,
            >,
        >,
    ) -> Result<()>;

    /// Like `add_searcher`, but with user-provided function for `rlua::Context` setup.
    fn add_function_searcher(
        &self,
        modules: HashMap<
            Cow<'static, str>,
            for<'ctx> fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>,
        >,
    ) -> Result<()>;

    /// Like `add_searcher`, except `modules` can contain heterogenous strings and paths
    /// indexed by module name.
    fn add_cat_searcher(&self, modules: CatMap) -> Result<()>;
}

impl<'a> AddSearcher for Context<'a> {
    fn add_searcher(&self, modules: HashMap<Cow<'static, str>, Cow<'static, str>>) -> Result<()> {
        let globals = self.globals();
        let searchers: Table = globals.get::<_, Table>("package")?.get("searchers")?;
        let registry_key = self.create_registry_value(globals)?;
        let searcher = Searcher::new(modules, registry_key);
        searchers
            .set(searchers.len()? + 1, searcher)
            .map_err(|e| e.into())
    }

    fn add_path_searcher<P>(&self, modules: HashMap<Cow<'static, str>, P>) -> Result<()>
    where
        P: 'static + AsRef<Path> + Send,
    {
        let transform = Box::new(|path| {
            let mut content = String::new();
            let mut file = File::open(path)
                .map_err(|e| rlua::Error::RuntimeError(format!("io error: {:#?}", e)))?;
            file.read_to_string(&mut content)
                .map_err(|e| rlua::Error::RuntimeError(format!("io error: {:#?}", e)))?;
            Ok(content)
        });
        self.add_path_searcher_poly(modules, transform)
    }

    fn add_path_searcher_poly<P>(
        &self,
        modules: HashMap<Cow<'static, str>, P>,
        transform: Box<dyn Fn(PathBuf) -> rlua::Result<String> + Send>,
    ) -> Result<()>
    where
        P: 'static + AsRef<Path> + Send,
    {
        let globals = self.globals();
        let searchers: Table = globals.get::<_, Table>("package")?.get("searchers")?;
        let registry_key = self.create_registry_value(globals)?;
        let searcher = PathSearcherPoly::new(modules, registry_key, transform);
        searchers
            .set(searchers.len()? + 1, searcher)
            .map_err(|e| e.into())
    }

    fn add_closure_searcher(
        &self,
        modules: HashMap<
            Cow<'static, str>,
            Box<
                dyn for<'ctx> Fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>
                    + Send,
            >,
        >,
    ) -> Result<()> {
        let globals = self.globals();
        let searchers: Table = globals.get::<_, Table>("package")?.get("searchers")?;
        let registry_key = self.create_registry_value(globals)?;
        let searcher = ClosureSearcher::new(modules, registry_key);
        searchers
            .set(searchers.len()? + 1, searcher)
            .map_err(|e| e.into())
    }

    fn add_function_searcher(
        &self,
        modules: HashMap<
            Cow<'static, str>,
            for<'ctx> fn(Context<'ctx>, Table<'ctx>, &str) -> rlua::Result<Function<'ctx>>,
        >,
    ) -> Result<()> {
        let globals = self.globals();
        let searchers: Table = globals.get::<_, Table>("package")?.get("searchers")?;
        let registry_key = self.create_registry_value(globals)?;
        let searcher = FunctionSearcher::new(modules, registry_key);
        searchers
            .set(searchers.len()? + 1, searcher)
            .map_err(|e| e.into())
    }

    fn add_cat_searcher(&self, modules: CatMap) -> Result<()> {
        let globals = self.globals();
        let searchers: Table = globals.get::<_, Table>("package")?.get("searchers")?;
        let registry_key = self.create_registry_value(globals)?;
        let searcher = CatSearcher::new(modules, registry_key);
        searchers
            .set(searchers.len()? + 1, searcher)
            .map_err(|e| e.into())
    }
}