src/mercurialserver/config.py
author Paul Crowley <paul@lshift.net>
Fri, 13 Nov 2009 12:30:06 +0000
changeset 212 ab5e0e4f5a0c
parent 211 0cd59649772c
child 213 72e7ba8b41a6
permissions -rw-r--r--
Use env section of config instead of handling only HGRCPATH

# Copyright 2008-2009 LShift Ltd

import sys
import os.path
import mercurial.config

globalconfig = None

def _getConf():
    global globalconfig
    if globalconfig is None:
        globalconfig = mercurial.config.config()
        globalconfig.read(os.path.expanduser("~/.mercurial-server"))
    return globalconfig

def configExists():
    try:
        _getConf()
        return True
    except:
        return False

def _getPath(name):
    return os.path.expanduser(_getConf()["paths"][name])

def _getPaths(name): 
    return [os.path.expanduser(p)
        for p in _getConf()["paths"][name].split(":")]

def getReposPath(): return _getPath("repos")

def getKeysPaths(): return _getPaths("keys")
def getAccessPaths(): return _getPaths("access")

def getEnv(): return _getConf()["env"]

# Work out where we are, don't use config.
def setExePath():
    global _exePath
    _exePath = os.path.dirname(os.path.abspath(sys.argv[0]))

def getExePath():
    return _exePath