Jeremy Hylton | daca630 | 2000-03-03 22:57:42 +0000 | [diff] [blame^] | 1 | """Provides access to configuration information""" |
| 2 | |
| 3 | import os |
| 4 | import sys |
| 5 | from ConfigParser import ConfigParser, NoOptionError |
| 6 | |
| 7 | class IdleConfParser(ConfigParser): |
| 8 | |
| 9 | # these conf sections do not define extensions! |
| 10 | builtin_sections = {} |
| 11 | for section in ('EditorWindow', 'Colors'): |
| 12 | builtin_sections[section] = section |
| 13 | |
| 14 | def getcolor(self, sec, name): |
| 15 | """Return a dictionary with foreground and background colors |
| 16 | |
| 17 | The return value is appropriate for passing to Tkinter in, e.g., |
| 18 | a tag_config call. |
| 19 | """ |
| 20 | fore = self.getdef(sec, name + "-foreground") |
| 21 | back = self.getdef(sec, name + "-background") |
| 22 | return {"foreground": fore, |
| 23 | "background": back} |
| 24 | |
| 25 | def getdef(self, sec, options, raw=0, vars=None, default=None): |
| 26 | """Get an option value for given section or return default""" |
| 27 | try: |
| 28 | return self.get(sec, options, raw, vars) |
| 29 | except NoOptionError: |
| 30 | return default |
| 31 | |
| 32 | def getsection(self, section): |
| 33 | """Return a SectionConfigParser object""" |
| 34 | return SectionConfigParser(section, self) |
| 35 | |
| 36 | def getextensions(self): |
| 37 | exts = [] |
| 38 | for sec in self.sections(): |
| 39 | if self.builtin_sections.has_key(sec): |
| 40 | continue |
| 41 | # enable is a bool, but it may not be defined |
| 42 | if self.getdef(sec, 'enable') != '0': |
| 43 | exts.append(sec) |
| 44 | return exts |
| 45 | |
| 46 | def reload(self): |
| 47 | global IdleConf |
| 48 | IdleConf = IdleConfParser() |
| 49 | load(_dir) # _dir is a global holding the last directory loaded |
| 50 | |
| 51 | class SectionConfigParser: |
| 52 | """A ConfigParser object specialized for one section |
| 53 | |
| 54 | This class has all the get methods that a regular ConfigParser does, |
| 55 | but without requiring a section argument. |
| 56 | """ |
| 57 | def __init__(self, section, config): |
| 58 | self.section = section |
| 59 | self.config = config |
| 60 | |
| 61 | def options(self): |
| 62 | return self.config.options(self.section) |
| 63 | |
| 64 | def get(self, options, raw=0, vars=None): |
| 65 | return self.config.get(self.section, options, raw, vars) |
| 66 | |
| 67 | def getdef(self, options, raw=0, vars=None, default=None): |
| 68 | return self.config.getdef(self.section, options, raw, vars, default) |
| 69 | |
| 70 | def getint(self, option): |
| 71 | return self.config.getint(self.section, option) |
| 72 | |
| 73 | def getfloat(self, option): |
| 74 | return self.config.getint(self.section, option) |
| 75 | |
| 76 | def getboolean(self, option): |
| 77 | return self.config.getint(self.section, option) |
| 78 | |
| 79 | def getcolor(self, option): |
| 80 | return self.config.getcolor(self.section, option) |
| 81 | |
| 82 | def load(dir): |
| 83 | """Load IDLE configuration files based on IDLE install in dir |
| 84 | |
| 85 | Attempts to load two config files: |
| 86 | dir/config.txt |
| 87 | dir/config-[win/mac/unix].txt |
| 88 | dir/config-%(sys.platform)s.txt |
| 89 | ~/.idle |
| 90 | """ |
| 91 | global _dir |
| 92 | _dir = dir |
| 93 | |
| 94 | if sys.platform.startswith('win'): |
| 95 | genplatfile = os.path.join(dir, "config-win.txt") |
| 96 | # XXX don't know what the platform string is on a Mac |
| 97 | elif sys.platform.startswith('mac'): |
| 98 | genplatfile = os.path.join(dir, "config-mac.txt") |
| 99 | else: |
| 100 | genplatfile = os.path.join(dir, "config-unix.txt") |
| 101 | |
| 102 | platfile = os.path.join(dir, "config-%s.txt" % sys.platform) |
| 103 | |
| 104 | for file in (os.path.join(dir, "config.txt"), |
| 105 | genplatfile, |
| 106 | platfile, |
| 107 | # XXX watch out for KeyError |
| 108 | os.path.join(os.environ['HOME'], ".idle"), |
| 109 | ): |
| 110 | try: |
| 111 | f = open(file) |
| 112 | except IOError: |
| 113 | continue |
| 114 | IdleConf.readfp(f) |
| 115 | f.close() |
| 116 | |
| 117 | IdleConf = IdleConfParser() |