mirror of
https://github.com/xcat2/confluent.git
synced 2025-01-18 05:33:17 +00:00
b88a135602
If something makes a call out of sequence, attempt to auto-init.
69 lines
1.9 KiB
Python
69 lines
1.9 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2014 IBM Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
# This defines config variable to store the global configuration for confluent
|
|
import ConfigParser
|
|
import os
|
|
|
|
_config = None
|
|
|
|
|
|
def init_config():
|
|
global _config
|
|
configfile = "/etc/confluent/service.cfg"
|
|
if os.name == 'nt':
|
|
configfile = os.path.join(os.getenv('SystemDrive'), '\\ProgramData',
|
|
'confluent', 'cfg', 'service.cfg')
|
|
_config = ConfigParser.ConfigParser()
|
|
_config.read(configfile)
|
|
|
|
|
|
def get_config():
|
|
if _config is None:
|
|
init_config()
|
|
return _config
|
|
|
|
|
|
def get_int_option(section, option):
|
|
if _config is None:
|
|
init_config()
|
|
try:
|
|
return _config.getint(section, option)
|
|
except (
|
|
ConfigParser.NoSectionError, ConfigParser.NoOptionError,
|
|
ValueError):
|
|
return None
|
|
|
|
|
|
def get_boolean_option(section, option):
|
|
if _config is None:
|
|
init_config()
|
|
try:
|
|
return _config.getboolean(section, option)
|
|
except (
|
|
ConfigParser.NoSectionError, ConfigParser.NoOptionError,
|
|
ValueError):
|
|
return None
|
|
|
|
|
|
def get_option(section, option):
|
|
if _config is None:
|
|
init_config()
|
|
try:
|
|
return _config.get(section, option)
|
|
except (ConfigParser.NoSectionError, ConfigParser.NoOptionError):
|
|
return None |