ncurl_session()
and transact()
providing high-performance, re-usable http(s) connections.dial()
,
socket()
and nano()
now accepts NA for
starting the dialer synchronously - this is less resilient if a
connection is not immediately possible, but avoids subtle errors from
attempting to use the socket before an asynchronous dial has
completed.messenger()
is faster to connect and exits gracefully
in case of a connection error.nano_init()
.getopt()
, the counterpart to
setopt()
for retrieving the value of options on
objects.setopt()
interface is simplified, with the type now
inferred from the value supplied.ncurl()
now returns redirect addresses as the response
header ‘Location’. This is so that HTTP data can also be returned at
$data
where this is provided.status_code()
utility returns a translation of HTTP
response status codes.Please review the following potentially breaking changes, and only update when ready:
socket()
, context()
and
stream()
will now error rather than return an ‘errorValue’.
The error value is included in the error message.send_aio()
and recv_aio()
now always
return an integer ‘errorValue’ at $result
and
$data
respectively.recv()
and recv_aio()
now return an
integer ‘errorValue’ at each of $raw
and $data
when ‘keep.raw’ is set to TRUE.ncurl()
now returns an integer ‘errorValue’ at each of
$status
, $headers
, $raw
and
$data
for both sync and async. Where redirects are not
followed, the address is now returned as a character string at
$data
.send()
, send_aio()
, recv()
,
recv_aio()
and ncurl()
, ‘errorValues’ are now
returned silently without an accompanying warning. Use
is_error_value()
to explicitly check for errors.nano_init()
is deprecated due to the above change in
behaviour.send()
no longer has a ‘…’ argument. This has had no
effect since 0.6.0, but will now error if additional arguments are
provided (please check and remove previous uses of the argument ‘echo’).
Also no longer returns invisibly for consistency with
recv()
.listen()
and dial()
now only take a socket
as argument; for nano objects, the $listen()
and
$dial()
methods must be used instead.nano()
now creates a nano object with method
$context_open()
for applicable protocols. Opening a context
will attach a context at $context
and a
$context_close()
method. When a context is active, all
object methods apply to the context instead of the socket. Method
$socket_setopt()
renamed to $setopt()
as it
can be used on the socket or active context as applicable.Other changes:
send()
/recv()
arguments for ‘mode’
implemented in 0.5.3 are now documented and considered part of the API.
This is a performance feature that skips matching the character argument
value.base64dec()
encounters
invalid input data. Error messages have been revised to be more
accurate.$
method for ‘recvAio’ objects for when the
object has been stopped using stop_aio()
.$listen()
or $dial()
methods of
a nano object specifying ‘autostart = FALSE’ now attaches the
$listener_start()
or $dialer_start()
method
for the most recently added listener/dialer.device()
no longer prompts for confirmation in
interactive environments - as device creation is only successful when
binding 2 raw mode sockets, there is little scope for accidental
use.base64enc()
and base64dec()
base64 encoding and decoding using the ‘Mbed TLS’ library.sha224()
, sha256()
, sha384()
and sha512()
functions gain an argument ‘convert’ to
control whether to return a raw vector or character string.ncurl()
gains the argument ‘follow’ (default FALSE) to
control whether redirects are automatically followed.Please review the following potentially breaking changes, and only update when ready:
send()
now returns an integer exit code in all cases.
The ‘echo’ argument has been replaced by ‘…’, and specifying ‘echo’ no
longer has any effect.recv()
, recv_aio()
and
request()
now default to ‘keep.raw’ = FALSE to return only
the sent object.ncurl()
argument ‘request’ renamed to ‘response’ for
specifying response headers to return (to avoid confusion); new argument
‘follow’ (placed between ‘convert’ and ‘method’) controls whether
redirects are followed, and there is no longer a user prompt in
interactive environments.sha224()
, sha256()
, sha384()
and sha512()
functions no longer return ‘nanoHash’ objects,
but a raw vector or character string depending on the new argument
‘convert’.Other changes:
socket()
and nano()
now accept non-missing
NULL ‘listen’ and ‘dial’ arguments, allowing easier programmatic
use.send()
, recv()
,
send_aio()
, recv_aio()
, setopt()
,
subscribe()
, unsubscribe()
and
survey_time()
are no longer S3 generics for enhanced
performance.messenger()
uses longer SHA-512 hash for
authentication; fixes errors creating a connnection not being
shown.new.env()
interface was implemented.sha224()
, sha256()
,
sha384()
and sha512()
series of fast,
optimised cryptographic hash and HMAC generation functions using the
‘Mbed TLS’ library.ncurl()
and stream()
gain the argmument
‘pem’ for optionally specifying a certificate authority certificate
chain PEM file for authenticating secure sites.ncurl()
gains the argument ‘request’ for specifying
response headers to return.ncurl()
now returns additional $status
(response status code) and $headers
(response headers)
fields.messenger()
gains the argument ‘auth’ for
authenticating communications based on a pre-shared key.random()
gains the argument ‘n’ for generating a vector
of random numbers.nng_version()
now returns the ‘Mbed TLS’ library
version number.device()
gains a confirmation prompt when running
interactively for more safety.ncurl()
that caused a 26 cryptography
error with certain secure sites using SNI.msleep()
made safe (does not block) in case of
non-numeric input.mclock()
, msleep()
and
random()
utilities exposing the library functions for
timing and cryptographic RNG respectively.socket()
gains the ability to open ‘raw’ mode sockets.
Please note: this is not for general use - do not set this argument
unless you have a specific need, such as for use with
device()
(refer to NNG documentation).device()
which creates a socket forwarder or
proxy. Warning: use this in a separate process as this function blocks
with no ability to interrupt./usr/local
. Note that this is a
manual setting allowing for custom NNG builds, and requires a version of
NNG at least as recent as 722bf46.unresolvedValue
returned by
Aios (thanks @lionel-
#3).$context()
method added for creating new contexts from
nano Objects using supported protocols (i.e. req, rep, sub, surveyor,
respondent) - this replaces the context()
function for nano
Objects.subscribe()
and unsubscribe()
now accept a
topic of any atomic type (not just character), allowing pub/sub to be
used with integer, double, logical, complex, or raw vectors.is_nano()
and
is_aio()
.subscribe()
,
unsubscribe()
, and survey_time()
gain
nanoContext methods.$raw
and $data
if keep.raw = TRUE
.send_ctx()
, recv_ctx()
and
logging removed.stream()
interface exposes low-level byte stream
functionality in the NNG library, intended for communicating with
non-NNG endpoints, including but not limited to websocket servers.ncurl()
adds an ‘async’ option to perform HTTP requests
asynchronously, returning immediately with a ‘recvAio’. Adds explicit
arguments for HTTP method, headers (which takes a named list or
character vector) and request data, as well as to specify if conversion
from raw bytes is required.messenger()
function implements a multi-threaded
console-based messaging system using NNG’s scalability protocols
(currently as proof of concept).nano_init()
function intended to be called
immediately after package load to set global options.warnings()
and flexibility in handling via setting
options()
.send()
and recv()
functions, and
their asynchronous counterparts send_aio()
and
recv_aio()
, are now S3 generics and can be used across
Sockets, Contexts and Streams.send()
and
recv()
now allows an integer value for setting a
timeout.send_ctx()
and recv_ctx()
are deprecated
and will be removed in a future package version - the methods for
send()
and recv()
should be used instead.logging()
is now defunct.$result
, $data
and
$raw
now resolve automatically without requiring
call_aio()
. Access directly and an ‘unresolved’ logical NA
value will be returned if the Aio operation is yet to complete.unresolved()
added as an auxiliary function to query
whether an Aio is unresolved, for use in control flow statements.is_error_value()
helper function
included.is_nul_byte()
added as a helper function for
request/reply setups.survey_time()
added as a convenience function for
surveyor/respondent patterns.logging()
function to specify a global package logging
level - ‘error’ or ‘info’. Automatically checks the environment variable
‘NANONEXT_LOG’ on package load and then each time
logging(level = "check")
is called.ncurl()
adds a ‘…’ argument. Support for HTTP methods
other than GET.listen()
and dial()
now return (invisible)
zero rather than NULL upon success for consistency with other
functions.opts
to avoid
clash with base R ‘options’.nng_timer()
utility as a
non-essential function.send_aio()
and recv_aio()
now return Aio
objects, for which the results may be called using
call_aio()
.request()
and reply()
functions
implement the full logic of an RPC client/server, allowing processes to
run concurrently on the client and server.
ncurl()
minimalistic http(s) client.nng_timer()
utility as a demonstration of NNG’s
multithreading capabilities.send()
/recv()
, gain a revised ‘mode’
argument.
send_ctx()
and recv_ctx()
for
consistency.$socket_close()
method of nano objects has been
renamed $close()
to better align with the functional
API.