Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Arti
Commits
c9fee15c
Commit
c9fee15c
authored
2 years ago
by
Ian Jackson
Browse files
Options
Downloads
Patches
Plain Diff
ConfigurationSource: Move "usual" logic for construction
parent
93da6129
No related branches found
No related tags found
1 merge request
!495
Tidy up ConfigurationSource a bit
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Cargo.lock
+1
-0
1 addition, 0 deletions
Cargo.lock
crates/arti-config/Cargo.toml
+1
-0
1 addition, 0 deletions
crates/arti-config/Cargo.toml
crates/arti-config/src/lib.rs
+46
-0
46 additions, 0 deletions
crates/arti-config/src/lib.rs
crates/arti/src/lib.rs
+6
-26
6 additions, 26 deletions
crates/arti/src/lib.rs
with
54 additions
and
26 deletions
Cargo.lock
+
1
−
0
View file @
c9fee15c
...
...
@@ -166,6 +166,7 @@ dependencies = [
"arti-client",
"config",
"derive_builder_fork_arti",
"fs-mistrust",
"once_cell",
"regex",
"serde",
...
...
This diff is collapsed.
Click to expand it.
crates/arti-config/Cargo.toml
+
1
−
0
View file @
c9fee15c
...
...
@@ -17,6 +17,7 @@ tor-circmgr = { package = "tor-circmgr", path = "../tor-circmgr", version = "0.3
tor-config
=
{
package
=
"tor-config"
,
path
=
"../tor-config"
,
version
=
"0.3.0"
,
features
=
[
"expand-paths"
,
]
}
fs-mistrust
=
{
path
=
"../fs-mistrust"
,
version
=
"0.1.0"
}
config
=
{
version
=
"0.13"
,
default-features
=
false
,
features
=
[
"toml"
]
}
once_cell
=
"1"
serde
=
{
version
=
"1.0.103"
,
features
=
[
"derive"
]
}
...
...
This diff is collapsed.
Click to expand it.
crates/arti-config/src/lib.rs
+
46
−
0
View file @
c9fee15c
...
...
@@ -90,6 +90,52 @@ impl ConfigurationSources {
Self
::
default
()
}
/// Establish a [`ConfigurationSources`] the usual way from a command line and defaults
///
/// The caller should have parsed the program's command line, and extracted (inter alia)
///
/// * `config_files_options`: Paths of config file(s)
/// * `cmdline_toml_override_options`: Overrides ("key=value")
///
/// The caller should also provide `default_config_file`, the default location of the
/// configuration file. This is used if no file(s) are specified on the command line.
///
/// `mistrust` is used to check whether the configuration files have appropriate permissions.
pub
fn
from_cmdline
<
'o
,
F
>
(
default_config_file
:
impl
Into
<
PathBuf
>
,
config_files_options
:
impl
IntoIterator
<
Item
=
F
>
,
cmdline_toml_override_options
:
impl
IntoIterator
<
Item
=
&
'o
str
>
,
mistrust
:
&
fs_mistrust
::
Mistrust
,
)
->
Result
<
Self
,
fs_mistrust
::
Error
>
where
F
:
AsRef
<
Path
>
,
{
let
mut
cfg_sources
=
ConfigurationSources
::
new_empty
();
let
mut
any_files
=
false
;
for
f
in
config_files_options
{
let
f
=
f
.as_ref
();
mistrust
.verifier
()
.require_file
()
.check
(
f
)
?
;
cfg_sources
.push_file
(
f
);
any_files
=
true
;
}
if
!
any_files
{
let
default
=
default_config_file
.into
();
match
mistrust
.verifier
()
.require_file
()
.check
(
&
default
)
{
Ok
(())
=>
{}
Err
(
fs_mistrust
::
Error
::
NotFound
(
_
))
=>
{}
Err
(
e
)
=>
return
Err
(
e
),
}
cfg_sources
.push_optional_file
(
default
);
}
for
s
in
cmdline_toml_override_options
{
cfg_sources
.push_option
(
s
);
}
Ok
(
cfg_sources
)
}
/// Add `p` to the list of files that we want to read configuration from.
///
/// Configuration files are loaded and applied in the order that they are
...
...
This diff is collapsed.
Click to expand it.
crates/arti/src/lib.rs
+
6
−
26
View file @
c9fee15c
...
...
@@ -371,32 +371,12 @@ pub fn main_main() -> Result<()> {
mistrust
};
let
cfg_sources
=
{
let
mut
cfg_sources
=
arti_config
::
ConfigurationSources
::
new_empty
();
let
config_files
=
matches
.values_of_os
(
"config-files"
)
.unwrap_or_default
();
if
config_files
.len
()
==
0
{
let
default
=
default_config_file
()
?
;
match
mistrust
.verifier
()
.require_file
()
.check
(
&
default
)
{
Ok
(())
=>
{}
Err
(
fs_mistrust
::
Error
::
NotFound
(
_
))
=>
{}
Err
(
e
)
=>
return
Err
(
e
.into
()),
}
cfg_sources
.push_optional_file
(
default
);
}
else
{
for
f
in
config_files
{
mistrust
.verifier
()
.require_file
()
.check
(
f
)
?
;
cfg_sources
.push_file
(
f
);
}
}
matches
.values_of
(
"option"
)
.unwrap_or_default
()
.for_each
(|
s
|
cfg_sources
.push_option
(
s
));
cfg_sources
};
let
cfg_sources
=
arti_config
::
ConfigurationSources
::
from_cmdline
(
default_config_file
()
?
,
matches
.values_of_os
(
"config-files"
)
.unwrap_or_default
(),
matches
.values_of
(
"option"
)
.unwrap_or_default
(),
&
mistrust
,
)
?
;
let
cfg
=
cfg_sources
.load
()
?
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment