Changeset 1490
- Timestamp:
- Nov 1, 2008, 4:21:47 AM (16 years ago)
- Location:
- trunk/packages/invirt-dns
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-dns/debian/changelog
r1478 r1490 1 invirt-dns (0.0.6) unstable; urgency=low 2 3 * Add support for basic quoting in the zone file 4 5 -- Evan Broder <broder@mit.edu> Sat, 01 Nov 2008 04:01:09 -0400 6 1 7 invirt-dns (0.0.5) unstable; urgency=low 2 8 -
trunk/packages/invirt-dns/invirt-dns
r1478 r1490 13 13 import sqlalchemy 14 14 import time 15 import re 15 16 16 17 class DatabaseAuthority(common.ResolverBase): … … 114 115 return defer.fail(failure.Failure(dns.AuthoritativeDomainError(name))) 115 116 117 class QuotingBindAuthority(authority.BindAuthority): 118 """ 119 A BindAuthority that (almost) deals with quoting correctly 120 121 This will catch double quotes as marking the start or end of a 122 quoted phrase, unless the double quote is escaped by a backslash 123 """ 124 # Grab everything up to the first whitespace character or 125 # quotation mark not proceeded by a backslash 126 whitespace_re = re.compile(r'(.*?)([\t\n\x0b\x0c\r ]+|(?<!\\)")') 127 def collapseContinuations(self, lines): 128 L = [] 129 state = 0 130 for line in lines: 131 if state == 0: 132 if line.find('(') == -1: 133 L.append(line) 134 else: 135 L.append(line[:line.find('(')]) 136 state = 1 137 else: 138 if line.find(')') != -1: 139 L[-1] += ' ' + line[:line.find(')')] 140 state = 0 141 else: 142 L[-1] += ' ' + line 143 lines = L 144 L = [] 145 for line in lines: 146 in_quote = False 147 split_line = [] 148 while len(line) > 0: 149 match = self.whitespace_re.match(line) 150 if match is None: 151 # If there's no match, that means that there's no 152 # whitespace in the rest of the line, so it should 153 # be treated as a single entity, quoted or not 154 # 155 # This also means that a closing quote isn't 156 # strictly necessary if the line ends the quote 157 substr = line 158 end = '' 159 else: 160 substr, end = match.groups() 161 162 if in_quote: 163 # If we're in the middle of the quote, the string 164 # we just grabbed belongs at the end of the 165 # previous string 166 # 167 # Including the whitespace! Unless it's not 168 # whitespace and is actually a closequote instead 169 split_line[-1] += substr + (end if end != '"' else '') 170 else: 171 # If we're not in the middle of a quote, than this 172 # is the next new string 173 split_line.append(substr) 174 175 if end == '"': 176 in_quote = not in_quote 177 178 # Then strip off what we just processed 179 line = line[len(substr + end):] 180 L.append(split_line) 181 return filter(None, L) 182 116 183 if '__main__' == __name__: 117 184 resolvers = [] 118 185 for zone in config.dns.zone_files: 119 186 for origin in config.dns.domains: 120 r = authority.BindAuthority(zone)187 r = QuotingBindAuthority(zone) 121 188 # This sucks, but if I want a generic zone file, I have to 122 189 # reload the information by hand
Note: See TracChangeset
for help on using the changeset viewer.