Type: | Package |
Title: | A Lightweight and Flexible Web Framework |
Version: | 1.2.1 |
Maintainer: | Thomas Lin Pedersen <thomasp85@gmail.com> |
Description: | A very flexible framework for building server side logic in R. The framework is unopinionated when it comes to how HTTP requests and WebSocket messages are handled and supports all levels of app complexity; from serving static content to full-blown dynamic web-apps. Fiery does not hold your hand as much as e.g. the shiny package does, but instead sets you free to create your web app the way you want. |
License: | MIT + file LICENSE |
URL: | https://fiery.data-imaginist.com, https://github.com/thomasp85/fiery |
BugReports: | https://github.com/thomasp85/fiery/issues |
Imports: | cli, crayon, future, glue, httpuv, later, parallelly, R6, reqres, rlang (≥ 1.1.0), stats, stringi, utils, uuid |
Suggests: | covr, knitr, rmarkdown, testthat (≥ 3.0.0) |
VignetteBuilder: | knitr |
Encoding: | UTF-8 |
RoxygenNote: | 7.3.1 |
Collate: | 'loggers.R' 'aaa.R' 'HandlerStack.R' 'Fire.R' 'FutureStack.R' 'additional_type_checks.R' 'fake_request.R' 'fiery-package.R' 'import-standalone-obj-type.R' 'import-standalone-types-check.R' 'zzz.R' |
Config/testthat/edition: | 3 |
NeedsCompilation: | no |
Packaged: | 2024-02-05 16:35:38 UTC; thomas |
Author: | Thomas Lin Pedersen
|
Repository: | CRAN |
Date/Publication: | 2024-02-05 22:40:11 UTC |
fiery: A Lightweight and Flexible Web Framework
Description
A very flexible framework for building server side logic in R. The framework is unopinionated when it comes to how HTTP requests and WebSocket messages are handled and supports all levels of app complexity; from serving static content to full-blown dynamic web-apps. Fiery does not hold your hand as much as e.g. the shiny package does, but instead sets you free to create your web app the way you want.
Details
fiery
is a lightweight and flexible framework for web servers build on top of
the httpuv package. The framework is largely
event-based, letting the developer attach handlers to life-cycle events as
well as defining and triggering their own events. This approach to
development is common in JavaScript, but might feel foreign to R developers.
Thankfully it is a rather simple concept that should be easy to gradually
begin to use to greater and greater effect.
Author(s)
Maintainer: Thomas Lin Pedersen thomasp85@gmail.com (ORCID)
See Also
Useful links:
Report bugs at https://github.com/thomasp85/fiery/issues
Generate a New App Object
Description
The Fire generator creates a new Fire
-object, which is the class containing
all the app logic. The class is based on the R6 OO-system and
is thus reference-based with methods and data attached to each object, in
contrast to the more well known S3 and S4 systems. A fiery
server is event
driven, which means that it is build up and manipulated by adding event
handlers and triggering events. To learn more about the fiery
event model,
read the event vignette.
fiery
servers can be modified directly or by attaching plugins. As with
events, plugins has its own vignette.
Initialization
A new 'Fire'-object is initialized using the new()
method on the generator:
app <- Fire$new(host = '127.0.0.1', port = 8080L)
|
Copying
As Fire
objects are using reference semantics new copies of an app cannot
be made simply be assigning it to a new variable. If a true copy of a Fire
object is desired, use the clone()
method.
Active bindings
host
A string giving a valid IPv4 address owned by the server, or
'0.0.0.0'
to listen on all addresses. The default is'127.0.0.1'
port
An integer giving the port number the server should listen on (defaults to
8080L
)refresh_rate
The interval in seconds between run cycles when running a blocking server (defaults to
0.001
)refresh_rate_nb
The interval in seconds between run cycles when running a non-blocking server (defaults to
1
)trigger_dir
A valid folder where trigger files can be put when running a blocking server (defaults to
NULL
). See the The event cycle in fiery vignette for more information.plugins
A named list of the already attached plugins. Read Only - can only be modified using the
attach()
method.root
The location of the app. Setting this will remove the root value from requests (or decline them with
400
if the request does not match the root). E.g. the path of a request will be changed from/demo/test
to/test
ifroot == '/demo'
access_log_format
A glue string defining how requests will be logged. For standard formats see common_log_format and combined_log_format. Defaults to the Common Log Format
Methods
Public methods
Method new()
Create a new Fire
app
Usage
Fire$new(host = "127.0.0.1", port = 8080)
Arguments
host
A string overriding the default host
port
An port number overriding the default port
Returns
A Fire
object
Method format()
Human readable description of the app
Usage
Fire$format(...)
Arguments
...
ignored
Returns
A character vector
Method ignite()
Begin running the server. Will trigger the start
event
Usage
Fire$ignite(block = TRUE, showcase = FALSE, ..., silent = FALSE)
Arguments
block
Should the console be blocked while running (alternative is to run in the background)
showcase
Should the default browser open up at the server address
...
Arguments passed on to the
start
handlersilent
Should startup messaging by silenced
Method start()
Synonymous method to ignite()
Usage
Fire$start(...)
Arguments
...
passed on to
ignite()
Method reignite()
Resume a session. This is equivalent to ignite()
but will also trigger the resume
event
Usage
Fire$reignite(...)
Arguments
...
passed on to
ignite()
Method resume()
Synonymous method to reignite()
Usage
Fire$resume(...)
Arguments
...
passed on to
ignite()
Method extinguish()
Stop the server. Will trigger the end
event
Usage
Fire$extinguish()
Method stop()
Synonymous method to extinguish()
Usage
Fire$stop()
Method on()
Add a handler to an event. See the The event cycle in fiery vignette for more information.
Usage
Fire$on(event, handler, pos = NULL)
Arguments
event
The name of the event that should trigger the handler
handler
The handler function that should be triggered
pos
The position in the handler stack to place it at.
NULL
will place it at the end.
Returns
A unique string identifying the handler
Method off()
Remove an event handler from the app.
Usage
Fire$off(handlerId)
Arguments
handlerId
The unique id identifying the handler
Method trigger()
Trigger an event in the app. This will cause any handler attached to the event to be called. See the The event cycle in fiery vignette for more information.
Usage
Fire$trigger(event, ...)
Arguments
event
The name of the event
...
Arguments passed on to the handlers
Returns
A named list containing the return values of all handlers attached to the event
Method send()
Send a Websocket message to a client. Will trigger the send
event.
Usage
Fire$send(message, id)
Arguments
message
The message to send
id
The id of the client to send to. If missing, the message will be send to all clients
Method close_ws_con()
Close a Websocket connection. Will trigger the websocket-closed
event
Usage
Fire$close_ws_con(id)
Arguments
id
The id of the client to close the websocket connection to
Method attach()
Attach a plugin to the app. See the Creating and using fiery plugins vignette for more information
Usage
Fire$attach(plugin, ..., force = FALSE)
Arguments
plugin
The plugin to attach
...
Arguments to pass into the plugins
on_attach()
methodforce
If the plugin has already been attached an error is thrown, unless
force = TRUE
which tells the app to reattach it
Method has_plugin()
Check if the app has a plugin attached
Usage
Fire$has_plugin(name)
Arguments
name
The name of the plugin
Returns
A boolean indicating if the given plugin is already attached
Method header()
Add a global http header that will be applied to all responses
Usage
Fire$header(name, value)
Arguments
name
The name of the header
value
The value of the header. Use
NULL
to remove the global header
Method set_data()
Add data to the global data store
Usage
Fire$set_data(name, value)
Arguments
name
The name identifying the data
value
The data to add
Method get_data()
Retrieve data from the global data store
Usage
Fire$get_data(name)
Arguments
name
The name identifying the data
Returns
The data requested. Returns NULL
if the store does not contain the requested data
Method remove_data()
Remove data from the global data store
Usage
Fire$remove_data(name)
Arguments
name
The name identifying the data to be removed
Method time()
Add a timed evaluation that will be evaluated after the given number of seconds. See the Delaying code execution in Fiery vignette for more information
Usage
Fire$time(expr, then, after, loop = FALSE)
Arguments
expr
The expression to evaluate when the time has passed
then
A handler to call once
expr
has been evaluatedafter
The time in second to wait before evaluating
expr
loop
Should
expr
be called repeatedly with the interval given byafter
Returns
A unique id identifying the handler
Method remove_time()
Remove a timed evaluation
Usage
Fire$remove_time(id)
Arguments
id
The unique id identifying the handler
Method delay()
Add a delayed evaluation to be evaluated immediately at the end of the loop cycle. See the Delaying code execution in Fiery vignette for more information
Usage
Fire$delay(expr, then)
Arguments
expr
The expression to evaluate at the end of the cycle
then
A handler to call once
expr
has been evaluated
Returns
A unique id identifying the handler
Method remove_delay()
Remove a delayed evaluation
Usage
Fire$remove_delay(id)
Arguments
id
The unique id identifying the handler
Method async()
Add an asynchronous evaluation to be evaluated in another process without blocking the server. See the Delaying code execution in Fiery vignette for more information
Usage
Fire$async(expr, then)
Arguments
expr
The expression to evaluate at the end of the cycle
then
A handler to call once
expr
has been evaluated
Returns
A unique id identifying the handler
Method remove_async()
Remove an async evaluation
Usage
Fire$remove_async(id)
Arguments
id
The unique id identifying the handler
Method set_client_id_converter()
Sets the function that converts an HTTP request into a specific client id
Usage
Fire$set_client_id_converter(converter)
Arguments
converter
A function with the argument
request
Method set_logger()
Sets the logging function to use
Usage
Fire$set_logger(logger)
Arguments
logger
A function with the arguments
event
,message
,request
, and...
Method log()
Log a message with the logger attached to the app. See loggers for build in functionality
Usage
Fire$log(event, message, request = NULL, ...)
Arguments
event
The event associated with the message
message
The message to log
request
The
Request
object associated with the message, if any....
Additional arguments passed on to the logger.
Method is_running()
Test if an app is running
Usage
Fire$is_running()
Method test_request()
Send a request directly to the request logic of a non-running app. Only intended for testing the request logic
Usage
Fire$test_request(request)
Arguments
request
The request to send
Method test_header()
Send a request directly to the header logic of a non-running app. Only intended for testing the request logic
Usage
Fire$test_header(request)
Arguments
request
The request to send
Method test_message()
Send a message directly to the message logic of a non-running app. Only intended for testing the websocket logic
Usage
Fire$test_message(request, binary, message, withClose = TRUE)
Arguments
request
The request to use to establish the connection
binary
Is the message send in binary or character format
message
The message to send. If
binary = FALSE
a character vector, ifbinary = TRUE
a raw vectorwithClose
Should the websocket connection be closed at the end by the client
Method test_websocket()
Send a message directly from a non-running app. Only intended for testing the websocket logic
Usage
Fire$test_websocket(request, message, close = TRUE)
Arguments
request
The request to use to establish the connection
message
The message to send from the app
close
Should the websocket connection be closed at the end by the server
Method clone()
The objects of this class are cloneable with this method.
Usage
Fire$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.
Examples
# Create a New App
app <- Fire$new(port = 4689)
# Setup the data every time it starts
app$on('start', function(server, ...) {
server$set_data('visits', 0)
server$set_data('cycles', 0)
})
# Count the number of cycles
app$on('cycle-start', function(server, ...) {
server$set_data('cycles', server$get_data('cycles') + 1)
})
# Count the number of requests
app$on('before-request', function(server, ...) {
server$set_data('visits', server$get_data('visits') + 1)
})
# Handle requests
app$on('request', function(server, ...) {
list(
status = 200L,
headers = list('Content-Type' = 'text/html'),
body = paste('This is indeed a test. You are number', server$get_data('visits'))
)
})
# Show number of requests in the console
app$on('after-request', function(server, ...) {
message(server$get_data('visits'))
flush.console()
})
# Terminate the server after 300 cycles
app$on('cycle-end', function(server, ...) {
if (server$get_data('cycles') > 300) {
message('Ending...')
flush.console()
server$extinguish()
}
})
# Be polite
app$on('end', function(server) {
message('Goodbye')
flush.console()
})
## Not run:
app$ignite(showcase = TRUE)
## End(Not run)
Create a fake request to use in testing
Description
This function creates a new request for a specific resource defined by a
URL. It mimics the format of the requests provided through httpuv, meaning
that it can be used in place for the requests send to the before-request
,
request
, and after-request
handlers. This is only provided so that
handlers can be tested without having to start up a server.
Usage
fake_request(
url,
method = "get",
appLocation = "",
content = "",
headers = list(),
...
)
Arguments
url |
A complete url for the resource the request should ask for |
method |
The request type (get, post, put, etc). Defaults to |
appLocation |
A string giving the first part of the url path that should be stripped from the path |
content |
The content of the request, either a raw vector or a string |
headers |
A list of name-value pairs that defines the request headers |
... |
Additional name-value pairs that should be added to the request |
Value
A Rook-compliant environment
Examples
req <- fake_request(
'http://www.my-fake-website.com/path/to/a/query/?key=value&key2=value2',
content = 'Some important content'
)
# Get the main address of the URL
req[['SERVER_NAME']]
# Get the query string
req[['QUERY_STRING']]
# ... etc.
# Cleaning up connections
rm(req)
gc()
App Logging
Description
fiery
has a build in logging mechanism that lets you capture event
information however you like. Every user-injested warnings and errors are
automatically captured by the logger along with most system errors as well.
fiery
tries very hard not to break due to faulty app logic. This means that
any event handler error will be converted to an error log without fiery
stopping. In the case of request handlers a 500L response will be send back
if any error is encountered.
Usage
logger_null()
logger_console(format = "{time} - {event}: {message}")
logger_file(file, format = "{time} - {event}: {message}")
logger_switch(..., default = logger_null())
common_log_format
combined_log_format
Arguments
format |
A glue string specifying the format of the log entry |
file |
A file or connection to write to |
... |
A named list of loggers to use for different events. The same
semantics as switch is used so it is possible to let events
fall through e.g. |
default |
A catch-all logger for use with events not defined in |
Format
An object of class character
of length 1.
An object of class character
of length 1.
Setting a logger
By default, fiery
uses logger_null()
which forwards warning and error
messages to stderr()
and ignores any other logging events. To change this
behavior, set a different logger using the set_logger()
method:
app$set_logger(logger)
where logger
is a function taking at least the following arguments: event
,
message
, request
, time
, and ...
.
fiery
comes with some additional loggers, which either writes all logs to a
file or to the console. A new instance of the file logger can be created with
logger_file(file)
:
app$set_logger(logger_file('fiery_log.log'))
A new instance of the console logger can be create with logger_console()
:
app$set_logger(logger_console())
Both functions takes a format
a argument that lets you customise how the
log is written. Furthermore the console logger will style the logs with
colour coding depending on the content if the console supports it.
As a last possibility it is possible to use different loggers dependent on the event by using the switch logger:
app$set_logger(logger_switch(warning =, error = logger_file('errors.log), default = logger_file('info.log')))
Automatic logs
fiery
logs a number of different information by itself describing its
operations during run. The following events are send to the log:
- start
Will be send when the server starts up
- resume
Will be send when the server is resumed
- stop
Will be send when the server stops
- request
Will be send when a request has been handled. The message will contain information about how long time it took to handle the request or if it was denied.
- websocket
Will be send every time a WebSocket connection is established or closed as well as when a message is received or send
- message
Will be send every time a message is emitted by an event handler or delayed execution handler
- warning
Will be send everytime a warning is emitted by an event handler or delayed execution handler
- error
Will be send everytime an error is signaled by an event handler or delayed execution handler. In addition some internal functions will also emit error event when exceptions are encountered
By default only message, warning and error events will be logged by
sending them to the error stream as a message()
.
Access Logs
Of particular interest are logs that detail requests made to the server.
These are the request
events detailed above. There are different standards
for how requests are logged. fiery
uses the Common Log Format by default,
but this can be modified by setting the access_log_format
field to a
glue expression that has access to the following variables:
start_time
The time the request was recieved
end_time
The time the response was send back
request
The
Request
objectresponse
The
Response
objectid
The client id
To change the format:
app$access_log_format <- combined_log_format
Custom logs
Apart from the standard logs described above it is also possible to send
messages to the log as you please, e.g. inside event handlers. This is done
through the log()
method where you at the very least specify an event and a
message. In general it is better to send messages through log()
rather than
with warning()
and stop()
even though the latters will eventually be
caught, as it gives you more control over the logging and what should happen
in the case of an exception.
An example of using log()
in a handler could be:
app$on('header', function(server, id, request) { server$log('info', paste0('request from ', id, ' received'), request) })
Which would log the timepoint the headers of a request has been recieved.
Select a random safe port
Description
This is a small utility function to get random safe ports to run your application on. It chooses a port within the range that cannot be registeret to IANA and thus is safe to assume are not in use.
Usage
random_port()
Value
An integer in the range 49152-65535
Examples
random_port()