Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
api:non-standard-lua-libs [2016/06/19 08:39]
payonel [Input and Output Facilities]
api:non-standard-lua-libs [2020/05/23 17:38] (current)
payonel [Operating System Facilities]
Line 18: Line 18:
 Coroutine Manipulation Coroutine Manipulation
 ---------------------- ----------------------
-The [original functions](http://​www.lua.org/​manual/​5.2/​manual.html#​6.2) from the `coroutine` library are available with no observable differences.+The [original functions](http://​www.lua.org/​manual/​5.3/​manual.html#​6.2) from the `coroutine` library are available with no observable differences.
  
 Note that the `coroutine.resume` and `coroutine.yield` implementations exposed to user code are wrappers that take care of aborting code that does not yield after a certain time (see config), and to allow differentiating system yields from user yields (system yields "​bubble",​ for example this is used for the shutdown command and component API calls). This should not be noticeable from user code, however. If it is, it should be considered a bug. Note that the `coroutine.resume` and `coroutine.yield` implementations exposed to user code are wrappers that take care of aborting code that does not yield after a certain time (see config), and to allow differentiating system yields from user yields (system yields "​bubble",​ for example this is used for the shutdown command and component API calls). This should not be noticeable from user code, however. If it is, it should be considered a bug.
Line 24: Line 24:
 Modules Modules
 ------- -------
-The package module got a reimplementation for OpenComputers. It should operate the same as [the original](http://​www.lua.org/​manual/​5.2/​manual.html#​6.3),​ but is lacking the following functions:+The package module got a reimplementation for OpenComputers. It should operate the same as [the original](http://​www.lua.org/​manual/​5.3/​manual.html#​6.3),​ but is lacking the following functions:
  
 - `package.config` is missing and not used. - `package.config` is missing and not used.
Line 30: Line 30:
 - `package.loadlib` is not implemented - `package.loadlib` is not implemented
  
-The latter two are missing because it is impossible to load C code in OpenComputers +The latter two are missing because it is impossible to load C code in OpenComputers. 
-.+ 
 +`require` is a method available in the global scope, i.e. no module loading is required to have access to it, you can use it on the first line of your scripts (which is commonly the case). Its interworkings depend on the `package` library so a description of it is appropriate here. 
 + 
 +  * ''​require(library:​ string) table''​ 
 + 
 +  Returns `library` defined by name. First, if the library has been loaded previously, the `package` library will have cached it and `require` will return the cached version of the library. For unloading a precached library, see `package.loaded`. If the library is not cached, the `package.path` is searched until a match is found. 
 + 
 +  * ''​package.path''​ 
 +**It is recommended that users do not change the default package.path. Rather they should place their custom libraries in /​usr/​lib/​** 
 + 
 +  Defines a list of library search paths that `require` iterates to find libraries. It is a semi-colon delimited list of paths, using '?'​ as a placeholder for a library name passed to `require`. An example would make this much easier to explain 
 + 
 +  Default package.path 
 + 
 +  `/​lib/?​.lua;/​usr/​lib/?​.lua;/​home/​lib/?​.lua;​./?​.lua;/​lib/?/​init.lua;/​usr/​lib/?/​init.lua;/​home/​lib/?/​init.lua;​./?/​init.lua` 
 + 
 +  if the user tries to load "​foobar"​ 
 + 
 +  `local foobar = require("​foobar"​)` 
 + 
 +  Following is the order of files `require` looks for to resolve require("​foobar"​). To make it interesting,​ we are assuming the current working directory is /tmp/ 
 + 
 +    - /​lib/​foobar.lua 
 +    - /​usr/​lib/​foobar.lua 
 +    - /​home/​lib/​foobar.lua 
 +    - /​tmp/​foobar.lua 
 +    - /​lib/​foobar/​init.lua 
 +    - /​usr/​lib/​foobar/​init.lua 
 +    - /​home/​lib/​foobar/​init.lua 
 +    - /​tmp/​foobar/​init.lua 
 + 
 +  * ''​package.loaded''​ 
 +**It is nonstandard to modify `package.loaded`** 
 + 
 +  Contains the source of cached libraries in a table, keyed by the library name (as given to `require`), and whose value is the cached library itself. Setting a value to `nil` in this table essentially removes the library from the cache. Some libraries are assumed to remain loaded for the proper execution of the operating system. 
 String Manipulation String Manipulation
 ------------------- -------------------
Line 66: Line 101:
   - **binary mode**   - **binary mode**
  
-  Streams given by `io.open(path,​ "​rb"​)` or `filesystem.open(path)` are in binary mode. `filesystem.open(path,​ "​rb"​)` also works, but streams returned by `filesystem.open` are **always** in binary mode. `stream:​read(1)` in binary mode reads a single byte. Reading a numerical value via `buffered_stream:​read("​*n"​)` ​considers ​the `string.char()` of each byte (buffered streams are returned from `io.open`, and support interpreting numerical values from a stream)+  Streams given by `io.open(path,​ "​rb"​)` or `filesystem.open(path)` are in binary mode. `filesystem.open(path,​ "​rb"​)` also works, but streams returned by `filesystem.open` are **always** in binary mode. `stream:​read(1)` in binary mode reads a single byte. Reading a numerical value via `buffered_stream:​read("​*n"​)` ​reads the data as single-byte characters. ​(buffered streams are returned from `io.open`, and support interpreting numerical values from a stream)
  
   - **text mode**   - **text mode**
  
-  Only streams given by `io.open` that specifically do not use "​b"​ in the mode are in text mode. Examples are `io.open(path)` and `io.open(path,​ "​r"​)`. No type of handle given by `filesystem.open` is a stream in text mode. `stream:​read(1)` in text mode reads a single unicode-aware char. This could be a single byte, or even 3 bytes - depending on the text. Reading a numerical value via `buffered_stream:​read("​*n"​)` ​considers ​the `unicode.char()` of the series of bytes (buffered streams are returned from `io.open`, and support interpreting numerical values from a stream)+  Only streams given by `io.open` that specifically do not use "​b"​ in the mode are in text mode. Examples are `io.open(path)` and `io.open(path,​ "​r"​)`. No type of handle given by `filesystem.open` is a stream in text mode. `stream:​read(1)` in text mode reads a single unicode-aware char. This could be a single byte, or even 3 bytes - depending on the text. Reading a numerical value via `buffered_stream:​read("​*n"​)` ​reads the data as unicode ​chars. (buffered streams are returned from `io.open`, and support interpreting numerical values from a stream)
  
   * `io.open(path,​ "​r"​)` is equivalent to `io.open(path)`,​ which opens a file in text read-only mode.   * `io.open(path,​ "​r"​)` is equivalent to `io.open(path)`,​ which opens a file in text read-only mode.
Line 115: Line 150:
  
 One additional function has been added: One additional function has been added:
-- `os.sleep(seconds:​ number)` which allows pausing a script for the specified amount of time. Note that signals will still be processed by event handlers while the sleep is active, i.e. you cannot pull signals that were accumulated during the sleep after it ended, since no signals will remain in the queue (or at least not all of them).+- `os.sleep(seconds:​ number)` which allows pausing a script for the specified amount of time. `os.sleep` consumes events but registered event handlers and threads are still receiving events during the sleep. Rephrased, ​signals will still be processed by event handlers while the sleep is active, i.e. you cannot pull signals that were accumulated during the sleep after it ended, since no signals will remain in the queue (or at least not all of them).
  
 Some new functions that kind of fall into this category are available in [[api:​computer|the computer API]]. Some new functions that kind of fall into this category are available in [[api:​computer|the computer API]].