Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
biopet.biopet
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
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
Mirrors
biopet.biopet
Commits
cc00506e
Commit
cc00506e
authored
9 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Fix imports
parent
806eaa66
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
public/biopet-utils/src/main/scala/nl/lumc/sasc/biopet/utils/config/Config.scala
+9
-9
9 additions, 9 deletions
.../main/scala/nl/lumc/sasc/biopet/utils/config/Config.scala
with
9 additions
and
9 deletions
public/biopet-utils/src/main/scala/nl/lumc/sasc/biopet/utils/config/Config.scala
+
9
−
9
View file @
cc00506e
...
...
@@ -25,7 +25,7 @@ import nl.lumc.sasc.biopet.utils.ConfigUtils._
* @constructor Load config with existing map
*/
class
Config
(
protected
var
_map
:
Map
[
String
,
Any
],
protected
[
core
]
var
defaults
:
Map
[
String
,
Any
]
=
Map
())
extends
Logging
{
protected
var
_
defaults
:
Map
[
String
,
Any
]
=
Map
())
extends
Logging
{
logger
.
debug
(
"Init phase of config"
)
/** Default constructor */
...
...
@@ -35,6 +35,7 @@ class Config(protected var _map: Map[String, Any],
}
def
map
=
_map
def
defaults
=
_defaults
/**
* Loading a environmental variable as location of config files to merge into the config
...
...
@@ -67,9 +68,9 @@ class Config(protected var _map: Map[String, Any],
def
loadConfigFile
(
configFile
:
File
,
default
:
Boolean
=
false
)
{
val
configMap
=
fileToConfigMap
(
configFile
)
if
(
default
)
{
if
(
defaults
.
isEmpty
)
defaults
=
configMap
else
defaults
=
mergeMaps
(
configMap
,
defaults
)
logger
.
debug
(
"New defaults: "
+
defaults
)
if
(
_
defaults
.
isEmpty
)
_
defaults
=
configMap
else
_
defaults
=
mergeMaps
(
configMap
,
_
defaults
)
logger
.
debug
(
"New defaults: "
+
_
defaults
)
}
else
{
if
(
_map
.
isEmpty
)
_map
=
configMap
else
_map
=
mergeMaps
(
configMap
,
_map
)
...
...
@@ -86,7 +87,7 @@ class Config(protected var _map: Map[String, Any],
*/
def
addValue
(
key
:
String
,
value
:
Any
,
path
:
List
[
String
]
=
Nil
,
default
:
Boolean
=
false
)
:
Unit
=
{
val
valueMap
=
path
.
foldRight
(
Map
(
key
->
value
))((
a
,
b
)
=>
Map
(
a
->
b
))
if
(
default
)
defaults
=
mergeMaps
(
valueMap
,
defaults
)
if
(
default
)
_
defaults
=
mergeMaps
(
valueMap
,
_
defaults
)
else
_map
=
mergeMaps
(
valueMap
,
_map
)
}
...
...
@@ -183,8 +184,7 @@ class Config(protected var _map: Map[String, Any],
}
fixedValue
.
getOrElse
(
foundCache
(
requestedIndex
))
}
else
if
(
default
!=
null
)
{
}
else
if
(
default
!=
null
)
{
defaultCache
+=
(
requestedIndex
->
ConfigValue
(
requestedIndex
,
null
,
default
,
freeVar
))
defaultCache
(
requestedIndex
)
}
else
ConfigValue
(
requestedIndex
,
null
,
null
,
freeVar
)
...
...
@@ -226,8 +226,8 @@ class Config(protected var _map: Map[String, Any],
val
fullEffective
=
ConfigUtils
.
mergeMaps
(
effectiveFound
,
effectiveDefaultFound
)
val
fullEffectiveWithNotFound
=
ConfigUtils
.
mergeMaps
(
fullEffective
,
notFound
)
writeMapToJsonFile
(
this
.
map
,
"input"
)
writeMapToJsonFile
(
this
.
defaults
,
"defaults"
)
writeMapToJsonFile
(
_
map
,
"input"
)
writeMapToJsonFile
(
_
defaults
,
"defaults"
)
writeMapToJsonFile
(
found
,
"found"
)
writeMapToJsonFile
(
fixed
,
"fixed"
)
writeMapToJsonFile
(
effectiveFound
,
"effective.found"
)
...
...
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