Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xsocs
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
22
Issues
22
List
Boards
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kmap
xsocs
Commits
92d9f3f8
Commit
92d9f3f8
authored
Sep 04, 2018
by
Thomas Vincent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a xsocs wide config class
parent
40058875
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
0 deletions
+49
-0
xsocs/__init__.py
xsocs/__init__.py
+4
-0
xsocs/_config.py
xsocs/_config.py
+45
-0
No files found.
xsocs/__init__.py
View file @
92d9f3f8
...
...
@@ -31,6 +31,10 @@ __date__ = "26/04/2018"
import
os
as
_os
import
logging
as
_logging
from
._config
import
Config
as
_Config
config
=
_Config
()
"""Global configuration shared with the whole library"""
# Attach a do nothing logging handler for xsocs
_logging
.
getLogger
(
__name__
)
.
addHandler
(
_logging
.
NullHandler
())
...
...
xsocs/_config.py
0 → 100644
View file @
92d9f3f8
# coding: utf-8
# /*##########################################################################
#
# Copyright (c) 2018 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# ###########################################################################*/
"""This module contains library wide configuration.
"""
__authors__
=
[
"T. Vincent"
]
__license__
=
"MIT"
__date__
=
"04/09/2018"
from
multiprocessing
import
cpu_count
class
Config
(
object
):
"""
Class containing shared global configuration for the silx library.
"""
DEFAULT_PROCESS_NUMBER
=
cpu_count
()
"""Default max number of processes to use (Use number of core by default)
This value must be strictly positive.
"""
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