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
Matthew Wild
5439531339
Merge 0.11->trunk
2020-01-19 15:34:28 +00:00
Kim Alvefur
bbb1aae80f
util.startup: Ignore unused errno variable [luacheck]
2019-12-23 21:02:19 +01:00
Kim Alvefur
f10cf81e37
util.startup: Disable plugin installer path creation for now (see comments)
2019-11-09 00:26:56 +01:00
Kim Alvefur
829aaea2fd
util.startup: Split plugin installer path setup into a separate function
2019-11-09 00:23:08 +01:00
Kim Alvefur
c679f937e8
Merge 0.11->trunk
2019-11-04 00:36:49 +01:00
Kim Alvefur
91156ab5d9
util.startup: Ensure prosody.paths are absolute (see #1430 )
...
Normally these paths are injected into the installed 'prosody'
executable as absolute paths, but it is possible to override at least
the config path via environment variable or command line argument. This
makes sure a path relative to pwd stays relative to that instead of the
data directory.
2019-11-04 00:29:49 +01:00
Kim Alvefur
5e4bc6299b
util.startup: Update config path ( fixes #1430 )
2019-11-03 22:19:09 +01:00
Matthew Wild
9f32d30e97
Merge mod-installer (2019 GSoC by João Duarte)
2019-08-19 12:17:17 +01:00
João Duarte
68f40ef5ff
util.startup: Changed the way util.paths.complement_lua_path was being accessed
2019-08-16 09:26:36 -07:00
João Duarte
9ef4fbdbf8
util.startup: Reorganized code at setup_plugindir
2019-08-01 09:29:40 -07:00
João Duarte
f088ddc713
util.startup: Now calls a function to complement lua's path/cpath
2019-08-01 09:22:50 -07:00
João Duarte
f27cd24e27
util.startup: setup_plugindir now also checks package.cpath for duplicates
2019-08-01 08:28:24 -07:00
João Duarte
d2fc41c9e7
util.startup: Directly calling lfs.currentdir instead of storing it in a local variable
2019-08-01 08:08:06 -07:00
João Duarte
a3f41c2b14
util.startup: Removed/rewrote comments at setup_plugindir
2019-08-01 08:02:26 -07:00
João Duarte
ded9e843e3
util.startupt: setup_plugindir now uses lfs.mkdir to check/create directories
2019-08-01 07:48:11 -07:00
João Duarte
92fafa3343
util.startupt: I'm now using the resolve_relative_path function from util/paths at the setup_plugindir function
2019-08-01 04:33:05 -07:00
João Duarte
ad26c41fa6
util.startup: Improved how .set_plugindir updates prosody.paths.plugins, package.path and package.cpath
2019-07-26 17:54:37 -07:00
João Duarte
093110478e
util.startup: .setup_plugindir now checks if the specified directory for custom plugins exists, and creates it if it doesn't
2019-07-26 08:58:56 -07:00
João Duarte
6307133669
util.startup: The .setup_plugindir function now correctly sets a default/specified path for custom plugins
2019-07-26 08:39:27 -07:00
João Duarte
c20cc1a17b
util.startup: Removed unnecessary if clause at startup.set_plugindir
2019-07-25 06:46:04 -07:00
João Duarte
20f233099e
util.startup: Now it also loads default or configured paths to custom plugin directories and creates them
2019-07-24 10:37:01 -07:00
Kim Alvefur
ce17a974fc
util.startup: Always reload logging after config ( fixes #1284 )
...
This chancged in 6e24a69b03af likely because of confusion about the
`reopen-log-files` event which was fired but never hooked.
2019-01-06 12:14:42 +01:00
Kim Alvefur
57b3a1dc87
util.startup: Remove tostring call from logging
...
Taken care of by loggingmanager now
2019-07-30 02:23:06 +02:00
Matthew Wild
cbaa78ecca
util.startup: Set flag when config fully loaded
2018-08-19 14:44:50 +01:00
Kim Alvefur
62c13b733a
util.startup: Add a comment marking some compat code
2018-07-01 23:22:55 +02:00
Matthew Wild
ad149e788d
Merge 0.10->trunk
2018-06-07 11:24:29 +01:00
Matthew Wild
5e9616894f
util.startup: Don't initialize global protection for prosodyctl, for now
2018-04-18 08:49:44 +01:00