Ñò Ã#xPc @sÐdZddklZlZddklZddkZddklZddkZddk l Z ddk l Z ddk lZdd klZdd klZlZlZlZd efd „ƒYZdS( sp Process-wide static configuration and environment. The standard run-time instance of the `Env` class is initialized early in the `ipalib` process and is then locked into a read-only state, after which no further changes can be made to the environment throughout the remaining life of the process. For the per-request thread-local information, see `ipalib.request`. iÿÿÿÿ(tRawConfigParsert ParsingError(tNoneTypeN(tpath(tgetfqdn(tDN(t check_name(tCONFIG_SECTION(t TYPE_ERRORtOVERRIDE_ERRORt SET_ERRORt DEL_ERRORtEnvcBs¿eZdZeZd„Zd„Zd„Zd„Zd„Z d„Z d„Z d„Z d „Z d „Zd „Zd „Zd „Zd„Zd„Zd„Zd„Zd„Zd„ZRS(s• Store and retrieve environment variables. First an foremost, the `Env` class provides a handy container for environment variables. These variables can be both set *and* retrieved either as attributes *or* as dictionary items. For example, you can set a variable as an attribute: >>> env = Env() >>> env.attr = 'I was set as an attribute.' >>> env.attr u'I was set as an attribute.' >>> env['attr'] # Also retrieve as a dictionary item u'I was set as an attribute.' Or you can set a variable as a dictionary item: >>> env['item'] = 'I was set as a dictionary item.' >>> env['item'] u'I was set as a dictionary item.' >>> env.item # Also retrieve as an attribute u'I was set as a dictionary item.' The variable names must be valid lower-case Python identifiers that neither start nor end with an underscore. If your variable name doesn't meet these criteria, a ``ValueError`` will be raised when you try to set the variable (compliments of the `base.check_name()` function). For example: >>> env.BadName = 'Wont work as an attribute' Traceback (most recent call last): ... ValueError: name must match '^[a-z][_a-z0-9]*[a-z0-9]$|^[a-z]$'; got 'BadName' >>> env['BadName'] = 'Also wont work as a dictionary item' Traceback (most recent call last): ... ValueError: name must match '^[a-z][_a-z0-9]*[a-z0-9]$|^[a-z]$'; got 'BadName' The variable values can be ``str``, ``int``, or ``float`` instances, or the ``True``, ``False``, or ``None`` constants. When the value provided is an ``str`` instance, some limited automatic type conversion is performed, which allows values of specific types to be set easily from configuration files or command-line options. So in addition to their actual values, the ``True``, ``False``, and ``None`` constants can be specified with an ``str`` equal to what ``repr()`` would return. For example: >>> env.true = True >>> env.also_true = 'True' # Equal to repr(True) >>> env.true True >>> env.also_true True Note that the automatic type conversion is case sensitive. For example: >>> env.not_false = 'false' # Not equal to repr(False)! >>> env.not_false u'false' If an ``str`` value looks like an integer, it's automatically converted to the ``int`` type. Likewise, if an ``str`` value looks like a floating-point number, it's automatically converted to the ``float`` type. For example: >>> env.lucky = '7' >>> env.lucky 7 >>> env.three_halves = '1.5' >>> env.three_halves 1.5 Leading and trailing white-space is automatically stripped from ``str`` values. For example: >>> env.message = ' Hello! ' # Surrounded by double spaces >>> env.message u'Hello!' >>> env.number = ' 42 ' # Still converted to an int >>> env.number 42 >>> env.false = ' False ' # Still equal to repr(False) >>> env.false False Also, empty ``str`` instances are converted to ``None``. For example: >>> env.empty = '' >>> env.empty is None True `Env` variables are all set-once (first-one-wins). Once a variable has been set, trying to override it will raise an ``AttributeError``. For example: >>> env.date = 'First' >>> env.date = 'Second' Traceback (most recent call last): ... AttributeError: cannot override Env.date value u'First' with 'Second' An `Env` instance can be *locked*, after which no further variables can be set. Trying to set variables on a locked `Env` instance will also raise an ``AttributeError``. For example: >>> env = Env() >>> env.okay = 'This will work.' >>> env.__lock__() >>> env.nope = 'This wont work!' Traceback (most recent call last): ... AttributeError: locked: cannot set Env.nope to 'This wont work!' `Env` instances also provide standard container emulation for membership testing, counting, and iteration. For example: >>> env = Env() >>> 'key1' in env # Has key1 been set? False >>> env.key1 = 'value 1' >>> 'key1' in env True >>> env.key2 = 'value 2' >>> len(env) # How many variables have been set? 2 >>> list(env) # What variables have been set? ['key1', 'key2'] Lastly, in addition to all the handy container functionality, the `Env` class provides high-level methods for bootstraping a fresh `Env` instance into one containing all the run-time and configuration information needed by the built-in freeIPA plugins. These are the `Env` bootstraping methods, in the order they must be called: 1. `Env._bootstrap()` - initialize the run-time variables and then merge-in variables specified on the command-line. 2. `Env._finalize_core()` - merge-in variables from the configuration files and then merge-in variables from the internal defaults, after which at least all the standard variables will be set. After this method is called, the plugins will be loaded, during which third-party plugins can merge-in defaults for additional variables they use (likely using the `Env._merge()` method). 3. `Env._finalize()` - one last chance to merge-in variables and then the instance is locked. After this method is called, no more environment variables can be set during the remaining life of the process. However, normally none of these three bootstraping methods are called directly and instead only `plugable.API.bootstrap()` is called, which itself takes care of correctly calling the `Env` bootstrapping methods. cKsEti|dhƒti|dtƒƒ|o|i|ndS(Nt_Env__dt _Env__done(tobjectt __setattr__tsett_merge(tselft initialize((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt__init__ÊscCsA|itjotd|iiƒ‚nti|dtƒdS(s9 Prevent further changes to environment. s%s.__lock__() already calledt _Env__lockedN(RtTruet StandardErrort __class__t__name__RR(R((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt__lock__ÐscCs|iS(s, Return ``True`` if locked. (R(R((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt __islocked__ÚscCs|||>> env = Env() >>> env.name = 'A value' >>> del env.name Traceback (most recent call last): ... AttributeError: locked: cannot delete Env.name N(R#R RR(RR((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt __delattr__s cCs ||ijS(sS Return True if instance contains ``key``; otherwise return False. (R (RR3((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt __contains__&scCs t|iƒS(s; Return number of variables currently set. (tlenR (R((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt__len__,sccs#xt|iƒD] }|VqWdS(s: Iterate through keys in ascending order. N(tsortedR (RR3((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt__iter__2scKsXd}x?|iƒD]1\}}||jo|||<|d7}qqW|t|ƒfS(s Merge variables from ``kw`` into the environment. Any variables in ``kw`` that have already been set will be ignored (meaning this method will *not* try to override them, which would raise an exception). This method returns a ``(num_set, num_total)`` tuple containing first the number of variables that were actually set, and second the total number of variables that were provided. For example: >>> env = Env() >>> env._merge(one=1, two=2) (2, 2) >>> env._merge(one=1, three=3) (1, 2) >>> env._merge(one=1, two=2, three=3) (0, 3) Also see `Env._merge_from_file()`. :param kw: Variables provides as keyword arguments. ii(t iteritemsR9(RtkwtiR3R((s1/usr/lib/python2.6/site-packages/ipalib/config.pyR9s   cCs%ti|ƒ|jotd|ƒ‚nti|ƒpdStƒ}y|i|ƒWntj odSX|itƒp|i tƒn|i tƒ}t |ƒdjodSd}x9|D]1\}}||jo|||<|d7}qÅqÅWd|jot |d>> env = Env() >>> env._merge_from_file('my/config.conf') Traceback (most recent call last): ... ValueError: config_file must be an absolute path; got 'my/config.conf' Also see `Env._merge()`. :param config_file: Absolute path of the configuration file to load. s,config_file must be an absolute path; got %rNiit config_loaded(ii( RtabspathR/tisfileRtreadRt has_sectionRt add_sectiontitemsR9R(Rt config_filetparserRFR?R3R((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt_merge_from_fileZs0     cGs7||jo&||dj oti|||ŒSdS(s Append path components in ``parts`` to base path ``self[key]``. For example: >>> env = Env() >>> env.home = '/people/joe' >>> env._join('home', 'Music', 'favourites') u'/people/joe/Music/favourites' N(R Rtjoin(RR3tparts((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt_joins cCsD||ijo td|ii|fƒ‚n|ii|ƒdS(Ns%s.%s() already called(RRRRtadd(RR((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt__doingscCs(||ijot||ƒƒndS(N(Rtgetattr(RR((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt__do_if_not_done¤scCs ||ijS(N(R(RR((s1/usr/lib/python2.6/site-packages/ipalib/config.pyt_isdone¨scKs |idƒtititƒƒ|_ti|iƒ|_titidƒ|_ ti|i ƒ|_ t i i ddƒ|_|i|d|joL|i |ijo,titi|i dƒƒo t|_qét|_n|iod|jo d|_nd|jo|id d ƒ|_nd |jo d |_nd |jo6|io|i|_qtidddƒ|_nd|jo |id d|iƒ|_nd|jo|id dƒ|_nd|jo|idj|_ndS(sˆ Initialize basic environment. This method will perform the following steps: 1. Initialize certain run-time variables. These run-time variables are strictly determined by the external environment the process is running in; they cannot be specified on the command-line nor in the configuration files. 2. Merge-in the variables in ``overrides`` by calling `Env._merge()`. The intended use of ``overrides`` is to merge-in variables specified on the command-line. 3. Intelligently fill-in the *in_tree*, *context*, *conf*, and *conf_default* variables if they haven't been set already. Also see `Env._finalize_core()`, the next method in the bootstrap sequence. :param overrides: Variables specified via command-line options. t _bootstrapitHOMEtin_treessetup.pytmodet developertdot_ipathomes.ipatcontexttdefaulttconfdirt/tetctipatconfs%s.conft conf_defaults default.conftplugins_on_demandtcliN(t _Env__doingRtdirnameRAt__file__tipalibt site_packagestsystargvtscripttbintostenvirontgetR RXRRBRJRRTRRURLRWRYR[R_R`Ra(Rt overrides((s1/usr/lib/python2.6/site-packages/ipalib/config.pyRR«s8               cKs|idƒ|idƒ|iiddƒdjo$|i|iƒ|i|iƒnd|jo|idj|_ nd|joM|i p |i o|i dd ƒ|_ q×t id d d d ƒ|_ nd |jo |i dd |iƒ|_n|i|dS(s„ Complete initialization of standard IPA environment. This method will perform the following steps: 1. Call `Env._bootstrap()` if it hasn't already been called. 2. Merge-in variables from the configuration file ``self.conf`` (if it exists) by calling `Env._merge_from_file()`. 3. Merge-in variables from the defaults configuration file ``self.conf_default`` (if it exists) by calling `Env._merge_from_file()`. 4. Intelligently fill-in the *in_server* , *logdir*, and *log* variables if they haven't already been set. 5. Merge-in the variables in ``defaults`` by calling `Env._merge()`. In normal circumstances ``defaults`` will simply be those specified in `constants.DEFAULT_CONFIG`. After this method is called, all the environment variables used by all the built-in plugins will be available. As such, this method should be called *before* any plugins are loaded. After this method has finished, the `Env` instance is still writable so that 3rd-party plugins can set variables they may require as the plugins are registered. Also see `Env._finalize()`, the final method in the bootstrap sequence. :param defaults: Internal defaults for all built-in variables. t_finalize_coreRRRUtdummyt in_servertservertlogdirRWtlogR\tvarR^s%s.logN(Rct_Env__do_if_not_doneR RnR RIR_R`RYRrRTRLRtRRJRuR(Rtdefaults((s1/usr/lib/python2.6/site-packages/ipalib/config.pyRpös"      cKs5|idƒ|idƒ|i||iƒdS(sV Finalize and lock environment. This method will perform the following steps: 1. Call `Env._finalize_core()` if it hasn't already been called. 2. Merge-in the variables in ``lastchance`` by calling `Env._merge()`. 3. Lock this `Env` instance, after which no more environment variables can be set on this instance. Aside from unit-tests and example code, normally only one `Env` instance is created, which means that after this step, no more variables can be set during the remaining life of the process. This method should be called after all plugins have been loaded and after `plugable.API.finalize()` has been called. :param lastchance: Any final variables to merge-in before locking. t _finalizeRpN(RcRwRR(Rt lastchance((s1/usr/lib/python2.6/site-packages/ipalib/config.pyRy1s   (Rt __module__t__doc__RRRRRRR5R6R7R8R:R<RRIRLRcRwRQRRRpRy(((s1/usr/lib/python2.6/site-packages/ipalib/config.pyR -s*™    '      ! 5     K ;(R|t ConfigParserRRttypesRRlRRhtsocketRt ipapython.dnRtbaseRt constantsRRR R R RR (((s1/usr/lib/python2.6/site-packages/ipalib/config.pyts  "