Commit graph

108 commits

Author SHA1 Message Date
Matthew Wild
5ce1fe2603 util.startup: Add prosody.started promise to easily execute code after startup
To avoid a race where server-started fires before the promise function body is
run (on next tick), I moved server-started to fire on the next tick, which
seems sensible anyway.

Errors are logged, I'm not sure if we ought to be doing something more here.
I'm sure we'll find out.
2023-04-01 11:56:38 +01:00
Kim Alvefur
026b2d6e88 util.startup: Tweak function string representation
Mostly in order to avoid triggering the XML syntax highlighting in the
console logger.
2023-03-26 00:11:42 +01:00
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Kim Alvefur
9228a851bc Merge 0.12->trunk 2023-01-22 15:43:44 +01:00
Kim Alvefur
435e008568 util.startup: Close state on exit to ensure GC finalizers are called
Ensures a last round of garbage collection and that finalizers are
called. Fixes things like proper closing of SQLite3 state.

There are more calls to os.exit() but most of them exit with an error or
in a case where a final GC sweep might not matter as much.

It would be nice if this was the default.

Calling util.statup.exit() everywhere may be sensible, but would be more
involved, requiring imports everywhere.
2023-01-22 14:45:47 +01:00
Kim Alvefur
bab0635179 util.startup: Ensure import() is available in prosodyctl (thanks keyzer)
Fixes error in mod_authz_internal due to import() being unavailable as
it was only loaded in Prosody proper
2022-10-20 16:31:18 +02:00
Kim Alvefur
d5e749bc8a util.startup: Fix async waiting for last shutdown steps
Observed problem: When shutting down prosody would immediately exit
after waiting for s2s connections to close, skipping the last cleanup
events and reporting the exit reason and code.

This happens because prosody.main_thread is in a waiting state and
queuing startup.shutdown is dispatched trough the main loop via
nexttick, but since the main loop was no longer running at that point it
proceeded to the end of the prosody script and exited there.
2022-06-14 16:28:49 +02:00
Matthew Wild
ff2a6d764e util.startup: Show error for unrecognized arguments passed to 'prosody' (fixes #1722) 2022-03-21 10:06:48 +00:00
Kim Alvefur
e2cff34641 util.mathcompat: Module to ease reuse of math.type()
Mostly to ensure it is available during tests, as util.startup is not
invoked there
2022-10-20 16:50:12 +02:00
Kim Alvefur
e64c5e30c2 util.startup: Provide a common Lua 5.3+ math.type() for Lua 5.2
Code deduplication
2022-10-19 16:25:05 +02:00
Kim Alvefur
ed06f22ae5 prosody: Move last cleanup and shutdown code into util.startup 2019-01-01 16:42:52 +01:00
Kim Alvefur
69a9195243 util.startup: Enable DANE in http client library with use_dane 2022-02-05 01:36:10 +01:00
Kim Alvefur
f30bbd6dcf util.startup: Teach prosodyctl to be completely --silent 2021-11-28 23:07:51 +01:00
Kim Alvefur
14f31180b5 util.startup: Teach prosodyctl to be --quiet as complement to --verbose
Original motivation was tiresome warnings about Lua 5.4 not being
supported yet.

Can still be handy to tweak log level, e.g. to prevent logging to
interfere with command output.
2021-11-28 23:07:35 +01:00
Kim Alvefur
552af220f4 util.startup: Allow supplying an argument parsing settings
The 'prosody' global is not global this early so there was no way to
override the process type field or argument parsing settings from
outside, e.g. from the migrator.
2022-01-09 15:16:09 +01:00
Matthew Wild
f89a58330b util.startup: Initialize util.async at startup 2021-11-29 14:16:20 +00:00
Kim Alvefur
b0ea55a155 util.startup: Integrate util.promise with net.server main loop 2019-01-05 07:15:33 +01:00
Kim Alvefur
619cf0043f util.startup: Understand -h, -? as --help in prosodyctl but ignore
prosodyctl -h showing an error was not very helpful, especially since
prosodyctl shows its help for any unknown (or none) command.
2021-10-25 15:47:18 +02:00
Kim Alvefur
7791f88775 util.startup: Show brief usage on prosody -h|-?|--help
Seems more suitable than asking if prosodyctl was meant to be used, or
going ahead and starting.
2021-10-25 15:46:01 +02:00
Kim Alvefur
c5de2a9d22 util.startup: Skip config readability check in migrator (thanks eTaurus)
This field is empty for reasons when invoked by prosody-migrator, which
threw an error:
> bad argument #1 to 'open' (string expected, got nil)
2021-10-23 22:24:59 +02:00
Kim Alvefur
14367c5ef7 util.startup: Only ask if 'prosodyctl' was meant instead of 'prosody' (fix #1692) 2021-10-12 15:00:15 +02:00
Kim Alvefur
d0026b7941 util.startup: Allow separate command line argument settings for prosody and prosodyctl
Makes it clearer that prosody does not take -v atm, as well as how
prosodyctl does not take the demonization flags.
2021-09-30 17:47:00 +02:00
Kim Alvefur
f2442d9bd5 prosodyctl: Add support for -v/--verbose to enable debug logging
More convenient than the environment variable.
2021-09-30 17:45:43 +02:00
Matthew Wild
5bc8b2a379 Merge 0.11->trunk 2021-05-13 11:17:13 +01:00
Kim Alvefur
48bc14c169 util.startup: Make installer_plugin_path relative to data directory
Having it relative to current working directory is problematic since
this depends on how Prosody was started and changes to the data
directory during startup (but after this point).
2021-01-24 16:12:53 +01:00
Kim Alvefur
27c7ee73b7 util.startup: Don't create installer plugin path (as root)
Since this runs before dropping root, the directory ends up being owned
by root, resulting in luarocks failing to install anything, since by
then it would be running as the prosody user.

luarocks creates this directory if needed, so creating it during startup
is not necessary.

One potential issue is if the directory is somewhere where Prosody can't
write, but then you will simply have to create it yourself with the
appropriate permissions.
2021-01-24 15:57:48 +01:00
Matthew Wild
c07d15cf71 util.startup: Handle missing nparams field from debug info (not present in 5.1) 2020-10-11 20:25:32 +01:00
Kim Alvefur
c5933e9ed7 util.startup: Include arguments in function string representation
Improves usability of the console when digging around the internals.

No specific rationale for the function<file:line>(args) format, it
looked best of the variants I tried.
2020-10-09 17:41:10 +02:00
Kim Alvefur
9302a14d80 util.startup: Retrieve less data for function string representation
debug.getinfo(f) collects more info than what is needed here.
2020-10-09 17:34:04 +02:00
Kim Alvefur
f7f0a20abf util.startup: Save the path used by the installer to prosody.paths
Makes it easier for other parts of the code to use this for things, such
as determining whether a certain module is from this path or from
elsewhere.
2020-10-07 15:37:15 +02:00
Kim Alvefur
4b4f32104f util.startup: Fix startup failure if CFG_DATADIR is unset
As is normal when running from source
2020-10-05 21:54:17 +02:00
Kim Alvefur
defba34a6c util.startup: Re-enable installer path setup 2020-10-05 21:45:02 +02:00
Kim Alvefur
e9c3e1dedc util.startup: Put 'installer_plugin_path' under data directory by default
Fixes issue where it ends up creating this in $PWD, which might be
~prosody, ~you or /, depending on how it's invoked.
2020-10-05 21:43:47 +02:00
Matthew Wild
fa462b8505 util.startup: Init util.error with defaults if none given 2020-08-28 12:54:31 +01:00
Matthew Wild
7507996371 util.error: Allow optional tracebacks to be injected on errors
This allows extra debug info to be provided for development purposes.
2020-08-28 12:40:59 +01:00
Matthew Wild
4c7989e7e4 util.startup: Set more aggressive defaults for GC
Testing has demonstrated that the default GC parameters are not
sufficient to prevent runaway memory growth when running under Lua 5.2
and Lua 5.3.

Setting the GC speed to 500 was tested on Lua versions 5.1->5.4 and did
not display unbounded memory growth.
2021-05-07 16:41:39 +01:00
Matthew Wild
c313b10cd9 util.startup: Configure the GC on startup, using the config or built-in defaults 2020-06-15 14:16:34 +01:00
Kim Alvefur
bd36651336 util.startup: Remove duplicated initialization of logging (fix #1527) 2020-06-22 14:56:44 +02:00
Matthew Wild
73355a4f31 util.startup: Ensure prosody.opts exists even when no options provided 2020-01-19 15:50:32 +00:00
Matthew Wild
0d5f5c9229 util.startup: Remove accidentally-committed debugging 2020-01-19 15:50:16 +00:00
Matthew Wild
704acb8b7a util.startup: Fix logic to make --config work again 2020-01-19 15:39:13 +00:00
Matthew Wild
e52171b0cd prosody/util.startup: Switch to parse_args() for --root and --config 2020-01-19 15:27:16 +00:00
Matthew Wild
ec3865fa9d util.startup: Add startup step for parsing command-line options 2020-01-19 15:26:22 +00:00
Kim Alvefur
49663eba20 Merge 0.11->trunk 2020-06-23 15:17:35 +02:00
Kim Alvefur
2b2f9903ae util.argparse: Move exiting and error to util.startup
It's not so nice to have a library that exits the entire application
from under you, so this and the error reporting belongs in util.startup.

The argparse code was originally in util.startup but moved out in
1196f1e8d178 but the error handling should have stayed.
2020-06-17 19:32:12 +02:00
Matthew Wild
758df8e14d util.startup: Configure the GC on startup, using the config or built-in defaults 2020-06-15 14:16:34 +01:00
Kim Alvefur
e199091987 util.startup: Break out command line argument parsing into util.argparse
This will allow using it from other places such as prosodyctl
sub-commands and plugins
2020-02-19 21:38:00 +01:00
Matthew Wild
028a6e499f util.startup: expose current process type (prosody/prosodyctl) in the global prosody object 2020-01-28 12:46:59 +00:00
Matthew Wild
94d54fd3c4 Merge 0.11->trunk 2020-01-19 16:01:29 +00:00
Matthew Wild
b319d27548 Merge 0.11->trunk 2020-01-19 15:39:49 +00:00