Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
145
Issues
145
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
haskell-gargantext
Commits
501b28b1
Commit
501b28b1
authored
Mar 03, 2025
by
Alfredo Di Napoli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Propagate withLogger refactoring to CLI code
parent
c448afb3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
14 deletions
+23
-14
Server.hs
bin/gargantext-cli/CLI/Server.hs
+19
-11
Worker.hs
bin/gargantext-cli/CLI/Worker.hs
+4
-3
No files found.
bin/gargantext-cli/CLI/Server.hs
View file @
501b28b1
...
...
@@ -12,31 +12,39 @@ Portability : POSIX
module
CLI.Server
where
import
Data.Version
(
showVersion
)
import
CLI.Parsers
(
settings_p
)
import
CLI.Types
import
CLI.Worker
(
runAllWorkers
)
import
GHC.IO.Encoding
(
setLocaleEncoding
,
utf8
)
import
Gargantext.API
(
startGargantext
)
import
Control.Monad.IO.Class
import
Data.Version
(
showVersion
)
import
Gargantext.API.Admin.EnvTypes
(
Mode
(
..
))
import
Gargantext.API
(
startGargantext
)
import
Gargantext.Core.Config
import
Gargantext.Core.Config.Types
(
_SettingsFile
)
import
Gargantext.Core.Config.Utils
(
readConfig
)
import
Gargantext.Prelude
import
Gargantext.System.Logging
(
withLogger
,
logMsg
,
LogLevel
(
..
),
Logger
)
import
Gargantext.System.Logging
import
GHC.IO.Encoding
(
setLocaleEncoding
,
utf8
)
import
Options.Applicative
import
Paths_gargantext
qualified
as
PG
-- cabal magic build module
withServerCLILogger
::
ServerArgs
->
(
Logger
IO
->
IO
a
)
->
IO
a
withServerCLILogger
ServerArgs
{
..
}
f
=
do
cfg
<-
liftIO
$
readConfig
server_toml
withLogger
(
cfg
^.
gc_logging
)
$
\
logger
->
f
logger
serverCLI
::
CLIServer
->
IO
()
serverCLI
(
CLIS_start
serverArgs
)
=
with
Logger
()
$
\
ioLogger
->
serverCLI
(
CLIS_start
serverArgs
)
=
with
ServerCLILogger
serverArgs
$
\
ioLogger
->
startServerCLI
ioLogger
serverArgs
serverCLI
(
CLIS_startAll
serverArgs
@
(
ServerArgs
{
..
}))
=
with
Logger
()
$
\
ioLogger
->
do
serverCLI
(
CLIS_startAll
serverArgs
@
(
ServerArgs
{
..
}))
=
with
ServerCLILogger
serverArgs
$
\
ioLogger
->
do
withAsync
(
startServerCLI
ioLogger
serverArgs
)
$
\
aServer
->
do
runAllWorkers
ioLogger
server_toml
wait
aServer
serverCLI
(
CLIS_version
)
=
withLogger
()
$
\
ioLogger
->
do
serverCLI
(
CLIS_version
)
=
withLogger
(
LogConfig
Nothing
DEBUG
)
$
\
ioLogger
->
do
-- Sets the locale to avoid encoding issues like in #284.
setLocaleEncoding
utf8
logMsg
ioLogger
INFO
$
"Version: "
<>
showVersion
PG
.
version
...
...
@@ -58,13 +66,13 @@ serverParser = hsubparser (
start_p
::
Parser
CLIServer
start_p
=
fmap
CLIS_start
$
ServerArgs
<$>
mode_p
<$>
mode_p
<*>
port_p
<*>
settings_p
start_all_p
::
Parser
CLIServer
start_all_p
=
fmap
CLIS_startAll
$
ServerArgs
<$>
mode_p
<$>
mode_p
<*>
port_p
<*>
settings_p
...
...
@@ -81,7 +89,7 @@ port_p = option auto ( long "port"
<>
showDefault
<>
value
8008
<>
help
"Port"
)
version_p
::
Parser
CLIServer
version_p
=
pure
CLIS_version
...
...
bin/gargantext-cli/CLI/Worker.hs
View file @
501b28b1
...
...
@@ -19,7 +19,7 @@ import CLI.Parsers
import
Control.Concurrent.Async
(
forConcurrently_
)
import
Data.List
qualified
as
List
(
cycle
,
concat
,
take
)
import
Data.Text
qualified
as
T
import
Gargantext.Core.Config
(
hasConfig
,
gc_worker
)
import
Gargantext.Core.Config
(
hasConfig
,
gc_worker
,
gc_logging
)
import
Gargantext.Core.Config.Types
(
SettingsFile
(
..
))
import
Gargantext.Core.Config.Utils
(
readConfig
)
import
Gargantext.Core.Config.Worker
(
WorkerDefinition
(
..
),
WorkerSettings
(
..
),
findDefinitionByName
)
...
...
@@ -67,8 +67,9 @@ workerCLI (CLIW_run (WorkerArgs { .. })) = do
withPGMQWorkerCtrlC
env
wd
$
\
a
_state
->
do
-- _ <- runReaderT (sendJob Ping) env
wait
a
workerCLI
(
CLIW_runAll
(
WorkerAllArgs
{
..
}))
=
withLogger
()
$
\
ioLogger
->
do
runAllWorkers
ioLogger
worker_toml
workerCLI
(
CLIW_runAll
(
WorkerAllArgs
{
..
}))
=
withWorkerEnv
worker_toml
$
\
env
->
do
let
log_cfg
=
env
^.
hasConfig
.
gc_logging
withLogger
log_cfg
$
\
ioLogger
->
runAllWorkers
ioLogger
worker_toml
workerCLI
(
CLIW_stats
(
WorkerStatsArgs
{
..
}))
=
do
putStrLn
(
"worker toml: "
<>
_SettingsFile
ws_toml
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment