config.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. # config.py - Reading and writing Git config files
  2. # Copyright (C) 2011-2013 Jelmer Vernooij <jelmer@samba.org>
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # of the License or (at your option) a later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. """Reading and writing Git configuration files.
  19. TODO:
  20. * preserve formatting when updating configuration files
  21. * treat subsection names as case-insensitive for [branch.foo] style
  22. subsections
  23. """
  24. import errno
  25. import os
  26. import re
  27. from collections import (
  28. OrderedDict,
  29. MutableMapping,
  30. )
  31. from dulwich.file import GitFile
  32. class Config(object):
  33. """A Git configuration."""
  34. def get(self, section, name):
  35. """Retrieve the contents of a configuration setting.
  36. :param section: Tuple with section name and optional subsection namee
  37. :param subsection: Subsection name
  38. :return: Contents of the setting
  39. :raise KeyError: if the value is not set
  40. """
  41. raise NotImplementedError(self.get)
  42. def get_boolean(self, section, name, default=None):
  43. """Retrieve a configuration setting as boolean.
  44. :param section: Tuple with section name and optional subsection namee
  45. :param name: Name of the setting, including section and possible
  46. subsection.
  47. :return: Contents of the setting
  48. :raise KeyError: if the value is not set
  49. """
  50. try:
  51. value = self.get(section, name)
  52. except KeyError:
  53. return default
  54. if value.lower() == "true":
  55. return True
  56. elif value.lower() == "false":
  57. return False
  58. raise ValueError("not a valid boolean string: %r" % value)
  59. def set(self, section, name, value):
  60. """Set a configuration value.
  61. :param section: Tuple with section name and optional subsection namee
  62. :param name: Name of the configuration value, including section
  63. and optional subsection
  64. :param: Value of the setting
  65. """
  66. raise NotImplementedError(self.set)
  67. def iteritems(self, section):
  68. """Iterate over the configuration pairs for a specific section.
  69. :param section: Tuple with section name and optional subsection namee
  70. :return: Iterator over (name, value) pairs
  71. """
  72. raise NotImplementedError(self.iteritems)
  73. def itersections(self):
  74. """Iterate over the sections.
  75. :return: Iterator over section tuples
  76. """
  77. raise NotImplementedError(self.itersections)
  78. class ConfigDict(Config, MutableMapping):
  79. """Git configuration stored in a dictionary."""
  80. def __init__(self, values=None):
  81. """Create a new ConfigDict."""
  82. if values is None:
  83. values = OrderedDict()
  84. self._values = values
  85. def __repr__(self):
  86. return "%s(%r)" % (self.__class__.__name__, self._values)
  87. def __eq__(self, other):
  88. return (
  89. isinstance(other, self.__class__) and
  90. other._values == self._values)
  91. def __getitem__(self, key):
  92. return self._values.__getitem__(key)
  93. def __setitem__(self, key, value):
  94. return self._values.__setitem__(key, value)
  95. def __delitem__(self, key):
  96. return self._values.__delitem__(key)
  97. def __iter__(self):
  98. return self._values.__iter__()
  99. def __len__(self):
  100. return self._values.__len__()
  101. @classmethod
  102. def _parse_setting(cls, name):
  103. parts = name.split(".")
  104. if len(parts) == 3:
  105. return (parts[0], parts[1], parts[2])
  106. else:
  107. return (parts[0], None, parts[1])
  108. def get(self, section, name):
  109. if isinstance(section, basestring):
  110. section = (section, )
  111. if len(section) > 1:
  112. try:
  113. return self._values[section][name]
  114. except KeyError:
  115. pass
  116. return self._values[(section[0],)][name]
  117. def set(self, section, name, value):
  118. if isinstance(section, basestring):
  119. section = (section, )
  120. self._values.setdefault(section, OrderedDict())[name] = value
  121. def iteritems(self, section):
  122. return self._values.get(section, OrderedDict()).iteritems()
  123. def itersections(self):
  124. return self._values.keys()
  125. def _format_string(value):
  126. if (value.startswith(" ") or
  127. value.startswith("\t") or
  128. value.endswith(" ") or
  129. value.endswith("\t")):
  130. return '"%s"' % _escape_value(value)
  131. return _escape_value(value)
  132. def _parse_string(value):
  133. value = value.strip()
  134. ret = []
  135. block = []
  136. in_quotes = False
  137. for c in value:
  138. if c == "\"":
  139. in_quotes = (not in_quotes)
  140. ret.append(_unescape_value("".join(block)))
  141. block = []
  142. elif c in ("#", ";") and not in_quotes:
  143. # the rest of the line is a comment
  144. break
  145. else:
  146. block.append(c)
  147. if in_quotes:
  148. raise ValueError("value starts with quote but lacks end quote")
  149. ret.append(_unescape_value("".join(block)).rstrip())
  150. return "".join(ret)
  151. def _unescape_value(value):
  152. """Unescape a value."""
  153. def unescape(c):
  154. return {
  155. "\\\\": "\\",
  156. "\\\"": "\"",
  157. "\\n": "\n",
  158. "\\t": "\t",
  159. "\\b": "\b",
  160. }[c.group(0)]
  161. return re.sub(r"(\\.)", unescape, value)
  162. def _escape_value(value):
  163. """Escape a value."""
  164. return value.replace("\\", "\\\\").replace("\n", "\\n").replace("\t", "\\t").replace("\"", "\\\"")
  165. def _check_variable_name(name):
  166. for c in name:
  167. if not c.isalnum() and c != '-':
  168. return False
  169. return True
  170. def _check_section_name(name):
  171. for c in name:
  172. if not c.isalnum() and c not in ('-', '.'):
  173. return False
  174. return True
  175. def _strip_comments(line):
  176. line = line.split("#")[0]
  177. line = line.split(";")[0]
  178. return line
  179. class ConfigFile(ConfigDict):
  180. """A Git configuration file, like .git/config or ~/.gitconfig.
  181. """
  182. @classmethod
  183. def from_file(cls, f):
  184. """Read configuration from a file-like object."""
  185. ret = cls()
  186. section = None
  187. setting = None
  188. for lineno, line in enumerate(f.readlines()):
  189. line = line.lstrip()
  190. if setting is None:
  191. if len(line) > 0 and line[0] == "[":
  192. line = _strip_comments(line).rstrip()
  193. last = line.index("]")
  194. if last == -1:
  195. raise ValueError("expected trailing ]")
  196. pts = line[1:last].split(" ", 1)
  197. line = line[last+1:]
  198. pts[0] = pts[0].lower()
  199. if len(pts) == 2:
  200. if pts[1][0] != "\"" or pts[1][-1] != "\"":
  201. raise ValueError(
  202. "Invalid subsection " + pts[1])
  203. else:
  204. pts[1] = pts[1][1:-1]
  205. if not _check_section_name(pts[0]):
  206. raise ValueError("invalid section name %s" %
  207. pts[0])
  208. section = (pts[0], pts[1])
  209. else:
  210. if not _check_section_name(pts[0]):
  211. raise ValueError("invalid section name %s" %
  212. pts[0])
  213. pts = pts[0].split(".", 1)
  214. if len(pts) == 2:
  215. section = (pts[0], pts[1])
  216. else:
  217. section = (pts[0], )
  218. ret._values[section] = OrderedDict()
  219. if _strip_comments(line).strip() == "":
  220. continue
  221. if section is None:
  222. raise ValueError("setting %r without section" % line)
  223. try:
  224. setting, value = line.split("=", 1)
  225. except ValueError:
  226. setting = line
  227. value = "true"
  228. setting = setting.strip().lower()
  229. if not _check_variable_name(setting):
  230. raise ValueError("invalid variable name %s" % setting)
  231. if value.endswith("\\\n"):
  232. value = value[:-2]
  233. continuation = True
  234. else:
  235. continuation = False
  236. value = _parse_string(value)
  237. ret._values[section][setting] = value
  238. if not continuation:
  239. setting = None
  240. else: # continuation line
  241. if line.endswith("\\\n"):
  242. line = line[:-2]
  243. continuation = True
  244. else:
  245. continuation = False
  246. value = _parse_string(line)
  247. ret._values[section][setting] += value
  248. if not continuation:
  249. setting = None
  250. return ret
  251. @classmethod
  252. def from_path(cls, path):
  253. """Read configuration from a file on disk."""
  254. f = GitFile(path, 'rb')
  255. try:
  256. ret = cls.from_file(f)
  257. ret.path = path
  258. return ret
  259. finally:
  260. f.close()
  261. def write_to_path(self, path=None):
  262. """Write configuration to a file on disk."""
  263. if path is None:
  264. path = self.path
  265. f = GitFile(path, 'wb')
  266. try:
  267. self.write_to_file(f)
  268. finally:
  269. f.close()
  270. def write_to_file(self, f):
  271. """Write configuration to a file-like object."""
  272. for section, values in self._values.iteritems():
  273. try:
  274. section_name, subsection_name = section
  275. except ValueError:
  276. (section_name, ) = section
  277. subsection_name = None
  278. if subsection_name is None:
  279. f.write("[%s]\n" % section_name)
  280. else:
  281. f.write("[%s \"%s\"]\n" % (section_name, subsection_name))
  282. for key, value in values.iteritems():
  283. f.write("\t%s = %s\n" % (key, _escape_value(value)))
  284. class StackedConfig(Config):
  285. """Configuration which reads from multiple config files.."""
  286. def __init__(self, backends, writable=None):
  287. self.backends = backends
  288. self.writable = writable
  289. def __repr__(self):
  290. return "<%s for %r>" % (self.__class__.__name__, self.backends)
  291. @classmethod
  292. def default_backends(cls):
  293. """Retrieve the default configuration.
  294. This will look in the users' home directory and the system
  295. configuration.
  296. """
  297. paths = []
  298. paths.append(os.path.expanduser("~/.gitconfig"))
  299. paths.append("/etc/gitconfig")
  300. backends = []
  301. for path in paths:
  302. try:
  303. cf = ConfigFile.from_path(path)
  304. except (IOError, OSError) as e:
  305. if e.errno != errno.ENOENT:
  306. raise
  307. else:
  308. continue
  309. backends.append(cf)
  310. return backends
  311. def get(self, section, name):
  312. for backend in self.backends:
  313. try:
  314. return backend.get(section, name)
  315. except KeyError:
  316. pass
  317. raise KeyError(name)
  318. def set(self, section, name, value):
  319. if self.writable is None:
  320. raise NotImplementedError(self.set)
  321. return self.writable.set(section, name, value)