| 
									
										
										
										
											2000-03-31 14:58:54 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Secret Labs' Regular Expression Engine | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # convert template to internal format | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2001-01-14 15:06:11 +00:00
										 |  |  | # Copyright (c) 1997-2001 by Secret Labs AB.  All rights reserved. | 
					
						
							| 
									
										
										
										
											2000-03-31 14:58:54 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  | # See the sre.py file for information on usage and redistribution. | 
					
						
							| 
									
										
										
										
											2000-03-31 14:58:54 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-04 19:10:20 +00:00
										 |  |  | """Internal support module for sre""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-27 20:08:25 +00:00
										 |  |  | import _sre, sys | 
					
						
							| 
									
										
										
										
											2000-03-31 14:58:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from sre_constants import * | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-15 12:46:09 +00:00
										 |  |  | assert _sre.MAGIC == MAGIC, "SRE module mismatch" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  | if _sre.CODESIZE == 2: | 
					
						
							|  |  |  |     MAXCODE = 65535 | 
					
						
							|  |  |  | else: | 
					
						
							|  |  |  |     MAXCODE = 0xFFFFFFFFL | 
					
						
							| 
									
										
										
										
											2000-07-02 12:00:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  | def _identityfunction(x): | 
					
						
							|  |  |  |     return x | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-29 08:58:44 +00:00
										 |  |  | def _compile(code, pattern, flags): | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     # internal: compile a (sub)pattern | 
					
						
							| 
									
										
										
										
											2000-06-29 16:57:40 +00:00
										 |  |  |     emit = code.append | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |     _len = len | 
					
						
							|  |  |  |     LITERAL_CODES = {LITERAL:1, NOT_LITERAL:1} | 
					
						
							|  |  |  |     REPEATING_CODES = {REPEAT:1, MIN_REPEAT:1, MAX_REPEAT:1} | 
					
						
							|  |  |  |     SUCCESS_CODES = {SUCCESS:1, FAILURE:1} | 
					
						
							|  |  |  |     ASSERT_CODES = {ASSERT:1, ASSERT_NOT:1} | 
					
						
							| 
									
										
										
										
											2000-03-31 14:58:54 +00:00
										 |  |  |     for op, av in pattern: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         if op in LITERAL_CODES: | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |             if flags & SRE_FLAG_IGNORECASE: | 
					
						
							|  |  |  |                 emit(OPCODES[OP_IGNORE[op]]) | 
					
						
							| 
									
										
										
										
											2001-01-15 18:28:14 +00:00
										 |  |  |                 emit(_sre.getlower(av, flags)) | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 emit(OPCODES[op]) | 
					
						
							| 
									
										
										
										
											2001-01-15 18:28:14 +00:00
										 |  |  |                 emit(av) | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         elif op is IN: | 
					
						
							|  |  |  |             if flags & SRE_FLAG_IGNORECASE: | 
					
						
							|  |  |  |                 emit(OPCODES[OP_IGNORE[op]]) | 
					
						
							|  |  |  |                 def fixup(literal, flags=flags): | 
					
						
							| 
									
										
										
										
											2000-06-30 13:55:15 +00:00
										 |  |  |                     return _sre.getlower(literal, flags) | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 emit(OPCODES[op]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 fixup = _identityfunction | 
					
						
							|  |  |  |             skip = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             _compile_charset(av, flags, code, fixup) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             code[skip] = _len(code) - skip | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |         elif op is ANY: | 
					
						
							|  |  |  |             if flags & SRE_FLAG_DOTALL: | 
					
						
							| 
									
										
										
										
											2000-08-01 22:47:49 +00:00
										 |  |  |                 emit(OPCODES[ANY_ALL]) | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2000-08-01 22:47:49 +00:00
										 |  |  |                 emit(OPCODES[ANY]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         elif op in REPEATING_CODES: | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |             if flags & SRE_FLAG_TEMPLATE: | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |                 raise error, "internal: unsupported template operator" | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |                 emit(OPCODES[REPEAT]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 skip = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |                 emit(av[0]) | 
					
						
							|  |  |  |                 emit(av[1]) | 
					
						
							|  |  |  |                 _compile(code, av[2], flags) | 
					
						
							|  |  |  |                 emit(OPCODES[SUCCESS]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 code[skip] = _len(code) - skip | 
					
						
							|  |  |  |             elif _simple(av) and op is not REPEAT: | 
					
						
							|  |  |  |                 if op is MAX_REPEAT: | 
					
						
							| 
									
										
										
										
											2003-04-14 17:59:34 +00:00
										 |  |  |                     emit(OPCODES[REPEAT_ONE]) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     emit(OPCODES[MIN_REPEAT_ONE]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 skip = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2000-08-01 22:47:49 +00:00
										 |  |  |                 emit(av[0]) | 
					
						
							|  |  |  |                 emit(av[1]) | 
					
						
							|  |  |  |                 _compile(code, av[2], flags) | 
					
						
							|  |  |  |                 emit(OPCODES[SUCCESS]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 code[skip] = _len(code) - skip | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2000-08-01 22:47:49 +00:00
										 |  |  |                 emit(OPCODES[REPEAT]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 skip = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2000-08-01 22:47:49 +00:00
										 |  |  |                 emit(av[0]) | 
					
						
							|  |  |  |                 emit(av[1]) | 
					
						
							|  |  |  |                 _compile(code, av[2], flags) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 code[skip] = _len(code) - skip | 
					
						
							|  |  |  |                 if op is MAX_REPEAT: | 
					
						
							| 
									
										
										
										
											2000-08-01 22:47:49 +00:00
										 |  |  |                     emit(OPCODES[MAX_UNTIL]) | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |                 else: | 
					
						
							| 
									
										
										
										
											2000-08-01 22:47:49 +00:00
										 |  |  |                     emit(OPCODES[MIN_UNTIL]) | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         elif op is SUBPATTERN: | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |             if av[0]: | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |                 emit(OPCODES[MARK]) | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |                 emit((av[0]-1)*2) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             # _compile_info(code, av[1], flags) | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |             _compile(code, av[1], flags) | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |             if av[0]: | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |                 emit(OPCODES[MARK]) | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |                 emit((av[0]-1)*2+1) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         elif op in SUCCESS_CODES: | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             emit(OPCODES[op]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         elif op in ASSERT_CODES: | 
					
						
							| 
									
										
										
										
											2000-07-03 18:44:21 +00:00
										 |  |  |             emit(OPCODES[op]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             skip = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2000-07-03 18:44:21 +00:00
										 |  |  |             if av[0] >= 0: | 
					
						
							|  |  |  |                 emit(0) # look ahead | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 lo, hi = av[1].getwidth() | 
					
						
							|  |  |  |                 if lo != hi: | 
					
						
							|  |  |  |                     raise error, "look-behind requires fixed-width pattern" | 
					
						
							|  |  |  |                 emit(lo) # look behind | 
					
						
							|  |  |  |             _compile(code, av[1], flags) | 
					
						
							|  |  |  |             emit(OPCODES[SUCCESS]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             code[skip] = _len(code) - skip | 
					
						
							| 
									
										
										
										
											2000-07-03 18:44:21 +00:00
										 |  |  |         elif op is CALL: | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             emit(OPCODES[op]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             skip = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             _compile(code, av, flags) | 
					
						
							|  |  |  |             emit(OPCODES[SUCCESS]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             code[skip] = _len(code) - skip | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |         elif op is AT: | 
					
						
							|  |  |  |             emit(OPCODES[op]) | 
					
						
							|  |  |  |             if flags & SRE_FLAG_MULTILINE: | 
					
						
							| 
									
										
										
										
											2001-03-22 15:50:10 +00:00
										 |  |  |                 av = AT_MULTILINE.get(av, av) | 
					
						
							|  |  |  |             if flags & SRE_FLAG_LOCALE: | 
					
						
							|  |  |  |                 av = AT_LOCALE.get(av, av) | 
					
						
							|  |  |  |             elif flags & SRE_FLAG_UNICODE: | 
					
						
							|  |  |  |                 av = AT_UNICODE.get(av, av) | 
					
						
							|  |  |  |             emit(ATCODES[av]) | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |         elif op is BRANCH: | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |             emit(OPCODES[op]) | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             tail = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             tailappend = tail.append | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             for av in av[1]: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 skip = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                 # _compile_info(code, av, flags) | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |                 _compile(code, av, flags) | 
					
						
							|  |  |  |                 emit(OPCODES[JUMP]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 tailappend(_len(code)); emit(0) | 
					
						
							|  |  |  |                 code[skip] = _len(code) - skip | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             emit(0) # end of branch | 
					
						
							|  |  |  |             for tail in tail: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 code[tail] = _len(code) - tail | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |         elif op is CATEGORY: | 
					
						
							|  |  |  |             emit(OPCODES[op]) | 
					
						
							|  |  |  |             if flags & SRE_FLAG_LOCALE: | 
					
						
							| 
									
										
										
										
											2001-03-22 15:50:10 +00:00
										 |  |  |                 av = CH_LOCALE[av] | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             elif flags & SRE_FLAG_UNICODE: | 
					
						
							| 
									
										
										
										
											2001-03-22 15:50:10 +00:00
										 |  |  |                 av = CH_UNICODE[av] | 
					
						
							|  |  |  |             emit(CHCODES[av]) | 
					
						
							| 
									
										
										
										
											2000-07-03 21:31:48 +00:00
										 |  |  |         elif op is GROUPREF: | 
					
						
							| 
									
										
										
										
											2000-06-30 10:41:31 +00:00
										 |  |  |             if flags & SRE_FLAG_IGNORECASE: | 
					
						
							|  |  |  |                 emit(OPCODES[OP_IGNORE[op]]) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 emit(OPCODES[op]) | 
					
						
							|  |  |  |             emit(av-1) | 
					
						
							| 
									
										
										
										
											2003-10-17 22:13:16 +00:00
										 |  |  |         elif op is GROUPREF_EXISTS: | 
					
						
							|  |  |  |             emit(OPCODES[op]) | 
					
						
							|  |  |  |             emit((av[0]-1)*2) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             skipyes = _len(code); emit(0) | 
					
						
							| 
									
										
										
										
											2003-10-17 22:13:16 +00:00
										 |  |  |             _compile(code, av[1], flags) | 
					
						
							|  |  |  |             if av[2]: | 
					
						
							|  |  |  |                 emit(OPCODES[JUMP]) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 skipno = _len(code); emit(0) | 
					
						
							|  |  |  |                 code[skipyes] = _len(code) - skipyes + 1 | 
					
						
							| 
									
										
										
										
											2003-10-17 22:13:16 +00:00
										 |  |  |                 _compile(code, av[2], flags) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 code[skipno] = _len(code) - skipno | 
					
						
							| 
									
										
										
										
											2003-10-17 22:13:16 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 code[skipyes] = _len(code) - skipyes + 1 | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             raise ValueError, ("unsupported operand type", op) | 
					
						
							| 
									
										
										
										
											2000-03-31 14:58:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  | def _compile_charset(charset, flags, code, fixup=None): | 
					
						
							|  |  |  |     # compile charset subprogram | 
					
						
							|  |  |  |     emit = code.append | 
					
						
							| 
									
										
										
										
											2002-06-02 00:40:05 +00:00
										 |  |  |     if fixup is None: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         fixup = _identityfunction | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |     for op, av in _optimize_charset(charset, fixup): | 
					
						
							|  |  |  |         emit(OPCODES[op]) | 
					
						
							|  |  |  |         if op is NEGATE: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         elif op is LITERAL: | 
					
						
							|  |  |  |             emit(fixup(av)) | 
					
						
							|  |  |  |         elif op is RANGE: | 
					
						
							|  |  |  |             emit(fixup(av[0])) | 
					
						
							|  |  |  |             emit(fixup(av[1])) | 
					
						
							|  |  |  |         elif op is CHARSET: | 
					
						
							|  |  |  |             code.extend(av) | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |         elif op is BIGCHARSET: | 
					
						
							|  |  |  |             code.extend(av) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         elif op is CATEGORY: | 
					
						
							|  |  |  |             if flags & SRE_FLAG_LOCALE: | 
					
						
							|  |  |  |                 emit(CHCODES[CH_LOCALE[av]]) | 
					
						
							|  |  |  |             elif flags & SRE_FLAG_UNICODE: | 
					
						
							|  |  |  |                 emit(CHCODES[CH_UNICODE[av]]) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 emit(CHCODES[av]) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             raise error, "internal: unsupported set operator" | 
					
						
							|  |  |  |     emit(OPCODES[FAILURE]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _optimize_charset(charset, fixup): | 
					
						
							|  |  |  |     # internal: optimize character set | 
					
						
							|  |  |  |     out = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |     outappend = out.append | 
					
						
							| 
									
										
										
										
											2004-03-27 09:24:36 +00:00
										 |  |  |     charmap = [0]*256 | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         for op, av in charset: | 
					
						
							|  |  |  |             if op is NEGATE: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 outappend((op, av)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             elif op is LITERAL: | 
					
						
							| 
									
										
										
										
											2004-03-27 09:24:36 +00:00
										 |  |  |                 charmap[fixup(av)] = 1 | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             elif op is RANGE: | 
					
						
							|  |  |  |                 for i in range(fixup(av[0]), fixup(av[1])+1): | 
					
						
							| 
									
										
										
										
											2004-03-27 09:24:36 +00:00
										 |  |  |                     charmap[i] = 1 | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             elif op is CATEGORY: | 
					
						
							| 
									
										
										
										
											2001-01-14 15:06:11 +00:00
										 |  |  |                 # XXX: could append to charmap tail | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                 return charset # cannot compress | 
					
						
							|  |  |  |     except IndexError: | 
					
						
							|  |  |  |         # character set contains unicode characters | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |         return _optimize_unicode(charset, fixup) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |     # compress character map | 
					
						
							|  |  |  |     i = p = n = 0 | 
					
						
							|  |  |  |     runs = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |     runsappend = runs.append | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |     for c in charmap: | 
					
						
							|  |  |  |         if c: | 
					
						
							|  |  |  |             if n == 0: | 
					
						
							|  |  |  |                 p = i | 
					
						
							|  |  |  |             n = n + 1 | 
					
						
							|  |  |  |         elif n: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             runsappend((p, n)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             n = 0 | 
					
						
							|  |  |  |         i = i + 1 | 
					
						
							|  |  |  |     if n: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         runsappend((p, n)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |     if len(runs) <= 2: | 
					
						
							|  |  |  |         # use literal/range | 
					
						
							|  |  |  |         for p, n in runs: | 
					
						
							|  |  |  |             if n == 1: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 outappend((LITERAL, p)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 outappend((RANGE, (p, p+n-1))) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         if len(out) < len(charset): | 
					
						
							|  |  |  |             return out | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         # use bitmap | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |         data = _mk_bitmap(charmap) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         outappend((CHARSET, data)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         return out | 
					
						
							|  |  |  |     return charset | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  | def _mk_bitmap(bits): | 
					
						
							|  |  |  |     data = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |     dataappend = data.append | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |     if _sre.CODESIZE == 2: | 
					
						
							|  |  |  |         start = (1, 0) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         start = (1L, 0L) | 
					
						
							|  |  |  |     m, v = start | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |     for c in bits: | 
					
						
							|  |  |  |         if c: | 
					
						
							|  |  |  |             v = v + m | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         m = m + m | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |         if m > MAXCODE: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |             dataappend(v) | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |             m, v = start | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |     return data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # To represent a big charset, first a bitmap of all characters in the | 
					
						
							|  |  |  | # set is constructed. Then, this bitmap is sliced into chunks of 256 | 
					
						
							|  |  |  | # characters, duplicate chunks are eliminitated, and each chunk is | 
					
						
							|  |  |  | # given a number. In the compiled expression, the charset is | 
					
						
							|  |  |  | # represented by a 16-bit word sequence, consisting of one word for | 
					
						
							|  |  |  | # the number of different chunks, a sequence of 256 bytes (128 words) | 
					
						
							|  |  |  | # of chunk numbers indexed by their original chunk position, and a | 
					
						
							|  |  |  | # sequence of chunks (16 words each). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Compression is normally good: in a typical charset, large ranges of | 
					
						
							|  |  |  | # Unicode will be either completely excluded (e.g. if only cyrillic | 
					
						
							|  |  |  | # letters are to be matched), or completely included (e.g. if large | 
					
						
							|  |  |  | # subranges of Kanji match). These ranges will be represented by | 
					
						
							|  |  |  | # chunks of all one-bits or all zero-bits. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Matching can be also done efficiently: the more significant byte of | 
					
						
							|  |  |  | # the Unicode character is an index into the chunk number, and the | 
					
						
							|  |  |  | # less significant byte is a bit index in the chunk (just like the | 
					
						
							|  |  |  | # CHARSET matching). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  | # In UCS-4 mode, the BIGCHARSET opcode still supports only subsets | 
					
						
							|  |  |  | # of the basic multilingual plane; an efficient representation | 
					
						
							|  |  |  | # for all of UTF-16 has not yet been developed. This means, | 
					
						
							|  |  |  | # in particular, that negated charsets cannot be represented as | 
					
						
							|  |  |  | # bigcharsets. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  | def _optimize_unicode(charset, fixup): | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         import array | 
					
						
							|  |  |  |     except ImportError: | 
					
						
							|  |  |  |         return charset | 
					
						
							| 
									
										
										
										
											2004-03-27 09:24:36 +00:00
										 |  |  |     charmap = [0]*65536 | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |     negate = 0 | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         for op, av in charset: | 
					
						
							|  |  |  |             if op is NEGATE: | 
					
						
							|  |  |  |                 negate = 1 | 
					
						
							|  |  |  |             elif op is LITERAL: | 
					
						
							| 
									
										
										
										
											2004-03-27 09:24:36 +00:00
										 |  |  |                 charmap[fixup(av)] = 1 | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |             elif op is RANGE: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 for i in xrange(fixup(av[0]), fixup(av[1])+1): | 
					
						
							| 
									
										
										
										
											2004-03-27 09:24:36 +00:00
										 |  |  |                     charmap[i] = 1 | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |             elif op is CATEGORY: | 
					
						
							|  |  |  |                 # XXX: could expand category | 
					
						
							|  |  |  |                 return charset # cannot compress | 
					
						
							|  |  |  |     except IndexError: | 
					
						
							|  |  |  |         # non-BMP characters | 
					
						
							|  |  |  |         return charset | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |     if negate: | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |         if sys.maxunicode != 65535: | 
					
						
							|  |  |  |             # XXX: negation does not work with big charsets | 
					
						
							|  |  |  |             return charset | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         for i in xrange(65536): | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |             charmap[i] = not charmap[i] | 
					
						
							|  |  |  |     comps = {} | 
					
						
							|  |  |  |     mapping = [0]*256 | 
					
						
							|  |  |  |     block = 0 | 
					
						
							|  |  |  |     data = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |     for i in xrange(256): | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |         chunk = tuple(charmap[i*256:(i+1)*256]) | 
					
						
							|  |  |  |         new = comps.setdefault(chunk, block) | 
					
						
							|  |  |  |         mapping[i] = new | 
					
						
							|  |  |  |         if new == block: | 
					
						
							| 
									
										
										
										
											2002-06-27 20:08:25 +00:00
										 |  |  |             block = block + 1 | 
					
						
							|  |  |  |             data = data + _mk_bitmap(chunk) | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |     header = [block] | 
					
						
							| 
									
										
										
										
											2004-05-07 07:18:13 +00:00
										 |  |  |     if _sre.CODESIZE == 2: | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |         code = 'H' | 
					
						
							|  |  |  |     else: | 
					
						
							| 
									
										
										
										
											2004-05-07 07:18:13 +00:00
										 |  |  |         code = 'I' | 
					
						
							| 
									
										
										
										
											2003-04-19 12:56:08 +00:00
										 |  |  |     # Convert block indices to byte array of 256 bytes | 
					
						
							|  |  |  |     mapping = array.array('b', mapping).tostring() | 
					
						
							|  |  |  |     # Convert byte array to word array | 
					
						
							| 
									
										
										
										
											2004-05-07 07:18:13 +00:00
										 |  |  |     mapping = array.array(code, mapping) | 
					
						
							|  |  |  |     assert mapping.itemsize == _sre.CODESIZE | 
					
						
							|  |  |  |     header = header + mapping.tolist() | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  |     data[0:0] = header | 
					
						
							| 
									
										
										
										
											2001-07-21 01:41:30 +00:00
										 |  |  |     return [(BIGCHARSET, data)] | 
					
						
							| 
									
										
										
										
											2001-07-02 16:58:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  | def _simple(av): | 
					
						
							|  |  |  |     # check if av is a "simple" operator | 
					
						
							|  |  |  |     lo, hi = av[2].getwidth() | 
					
						
							| 
									
										
										
										
											2000-10-07 17:38:23 +00:00
										 |  |  |     if lo == 0 and hi == MAXREPEAT: | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         raise error, "nothing to repeat" | 
					
						
							|  |  |  |     return lo == hi == 1 and av[2][0][0] != SUBPATTERN | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  | def _compile_info(code, pattern, flags): | 
					
						
							|  |  |  |     # internal: compile an info block.  in the current version, | 
					
						
							| 
									
										
										
										
											2000-07-02 12:00:07 +00:00
										 |  |  |     # this contains min/max pattern width, and an optional literal | 
					
						
							|  |  |  |     # prefix or a character map | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     lo, hi = pattern.getwidth() | 
					
						
							|  |  |  |     if lo == 0: | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         return # not worth it | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     # look for a literal prefix | 
					
						
							|  |  |  |     prefix = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |     prefixappend = prefix.append | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |     prefix_skip = 0 | 
					
						
							| 
									
										
										
										
											2000-07-02 12:00:07 +00:00
										 |  |  |     charset = [] # not used | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |     charsetappend = charset.append | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     if not (flags & SRE_FLAG_IGNORECASE): | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         # look for literal prefix | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         for op, av in pattern.data: | 
					
						
							|  |  |  |             if op is LITERAL: | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                 if len(prefix) == prefix_skip: | 
					
						
							|  |  |  |                     prefix_skip = prefix_skip + 1 | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 prefixappend(av) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             elif op is SUBPATTERN and len(av[1]) == 1: | 
					
						
							|  |  |  |                 op, av = av[1][0] | 
					
						
							|  |  |  |                 if op is LITERAL: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                     prefixappend(av) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                 else: | 
					
						
							|  |  |  |                     break | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 break | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         # if no prefix, look for charset prefix | 
					
						
							|  |  |  |         if not prefix and pattern.data: | 
					
						
							|  |  |  |             op, av = pattern.data[0] | 
					
						
							|  |  |  |             if op is SUBPATTERN and av[1]: | 
					
						
							|  |  |  |                 op, av = av[1][0] | 
					
						
							|  |  |  |                 if op is LITERAL: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                     charsetappend((op, av)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                 elif op is BRANCH: | 
					
						
							|  |  |  |                     c = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                     cappend = c.append | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                     for p in av[1]: | 
					
						
							|  |  |  |                         if not p: | 
					
						
							|  |  |  |                             break | 
					
						
							|  |  |  |                         op, av = p[0] | 
					
						
							|  |  |  |                         if op is LITERAL: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                             cappend((op, av)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                         else: | 
					
						
							|  |  |  |                             break | 
					
						
							|  |  |  |                     else: | 
					
						
							|  |  |  |                         charset = c | 
					
						
							|  |  |  |             elif op is BRANCH: | 
					
						
							|  |  |  |                 c = [] | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                 cappend = c.append | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                 for p in av[1]: | 
					
						
							|  |  |  |                     if not p: | 
					
						
							|  |  |  |                         break | 
					
						
							|  |  |  |                     op, av = p[0] | 
					
						
							|  |  |  |                     if op is LITERAL: | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |                         cappend((op, av)) | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |                     else: | 
					
						
							|  |  |  |                         break | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     charset = c | 
					
						
							|  |  |  |             elif op is IN: | 
					
						
							|  |  |  |                 charset = av | 
					
						
							|  |  |  | ##     if prefix: | 
					
						
							|  |  |  | ##         print "*** PREFIX", prefix, prefix_skip | 
					
						
							|  |  |  | ##     if charset: | 
					
						
							|  |  |  | ##         print "*** CHARSET", charset | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     # add an info block | 
					
						
							|  |  |  |     emit = code.append | 
					
						
							|  |  |  |     emit(OPCODES[INFO]) | 
					
						
							|  |  |  |     skip = len(code); emit(0) | 
					
						
							|  |  |  |     # literal flag | 
					
						
							|  |  |  |     mask = 0 | 
					
						
							| 
									
										
										
										
											2000-07-02 12:00:07 +00:00
										 |  |  |     if prefix: | 
					
						
							|  |  |  |         mask = SRE_INFO_PREFIX | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         if len(prefix) == prefix_skip == len(pattern.data): | 
					
						
							| 
									
										
										
										
											2000-07-02 12:00:07 +00:00
										 |  |  |             mask = mask + SRE_INFO_LITERAL | 
					
						
							|  |  |  |     elif charset: | 
					
						
							|  |  |  |         mask = mask + SRE_INFO_CHARSET | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     emit(mask) | 
					
						
							|  |  |  |     # pattern length | 
					
						
							| 
									
										
										
										
											2000-07-02 12:00:07 +00:00
										 |  |  |     if lo < MAXCODE: | 
					
						
							|  |  |  |         emit(lo) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         emit(MAXCODE) | 
					
						
							|  |  |  |         prefix = prefix[:MAXCODE] | 
					
						
							|  |  |  |     if hi < MAXCODE: | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         emit(hi) | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         emit(0) | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     # add literal prefix | 
					
						
							|  |  |  |     if prefix: | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |         emit(len(prefix)) # length | 
					
						
							|  |  |  |         emit(prefix_skip) # skip | 
					
						
							|  |  |  |         code.extend(prefix) | 
					
						
							|  |  |  |         # generate overlap table | 
					
						
							|  |  |  |         table = [-1] + ([0]*len(prefix)) | 
					
						
							| 
									
										
										
										
											2004-03-26 11:16:55 +00:00
										 |  |  |         for i in xrange(len(prefix)): | 
					
						
							| 
									
										
										
										
											2000-08-07 20:59:04 +00:00
										 |  |  |             table[i+1] = table[i]+1 | 
					
						
							|  |  |  |             while table[i+1] > 0 and prefix[i] != prefix[table[i+1]-1]: | 
					
						
							|  |  |  |                 table[i+1] = table[table[i+1]-1]+1 | 
					
						
							|  |  |  |         code.extend(table[1:]) # don't store first entry | 
					
						
							| 
									
										
										
										
											2000-07-02 12:00:07 +00:00
										 |  |  |     elif charset: | 
					
						
							| 
									
										
										
										
											2003-02-24 01:18:35 +00:00
										 |  |  |         _compile_charset(charset, flags, code) | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  |     code[skip] = len(code) - skip | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-23 21:46:17 +00:00
										 |  |  | try: | 
					
						
							| 
									
										
										
										
											2003-07-02 20:03:04 +00:00
										 |  |  |     unicode | 
					
						
							| 
									
										
										
										
											2000-07-23 21:46:17 +00:00
										 |  |  | except NameError: | 
					
						
							| 
									
										
										
										
											2003-07-02 21:37:16 +00:00
										 |  |  |     STRING_TYPES = (type(""),) | 
					
						
							| 
									
										
										
										
											2003-07-02 20:03:04 +00:00
										 |  |  | else: | 
					
						
							|  |  |  |     STRING_TYPES = (type(""), type(unicode(""))) | 
					
						
							| 
									
										
										
										
											2000-07-23 21:46:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-02 21:37:16 +00:00
										 |  |  | def isstring(obj): | 
					
						
							|  |  |  |     for tp in STRING_TYPES: | 
					
						
							|  |  |  |         if isinstance(obj, tp): | 
					
						
							|  |  |  |             return 1 | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-01 21:05:41 +00:00
										 |  |  | def _code(p, flags): | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-01 17:39:12 +00:00
										 |  |  |     flags = p.pattern.flags | flags | 
					
						
							| 
									
										
										
										
											2000-06-29 16:57:40 +00:00
										 |  |  |     code = [] | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # compile info block | 
					
						
							|  |  |  |     _compile_info(code, p, flags) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # compile the pattern | 
					
						
							| 
									
										
										
										
											2000-06-01 17:39:12 +00:00
										 |  |  |     _compile(code, p.data, flags) | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-01 17:39:12 +00:00
										 |  |  |     code.append(OPCODES[SUCCESS]) | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |     return code | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def compile(p, flags=0): | 
					
						
							|  |  |  |     # internal: convert pattern list to internal format | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-02 21:37:16 +00:00
										 |  |  |     if isstring(p): | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  |         import sre_parse | 
					
						
							|  |  |  |         pattern = p | 
					
						
							|  |  |  |         p = sre_parse.parse(p, flags) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         pattern = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-01 21:05:41 +00:00
										 |  |  |     code = _code(p, flags) | 
					
						
							| 
									
										
										
										
											2000-08-01 18:20:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-23 21:46:17 +00:00
										 |  |  |     # print code | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-14 15:06:11 +00:00
										 |  |  |     # XXX: <fl> get rid of this limitation! | 
					
						
							| 
									
										
										
										
											2000-06-29 16:57:40 +00:00
										 |  |  |     assert p.pattern.groups <= 100,\ | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |            "sorry, but this version only supports 100 named groups" | 
					
						
							| 
									
										
										
										
											2000-06-29 23:33:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-02 22:25:39 +00:00
										 |  |  |     # map in either direction | 
					
						
							|  |  |  |     groupindex = p.pattern.groupdict | 
					
						
							|  |  |  |     indexgroup = [None] * p.pattern.groups | 
					
						
							|  |  |  |     for k, i in groupindex.items(): | 
					
						
							|  |  |  |         indexgroup[i] = k | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-01 17:39:12 +00:00
										 |  |  |     return _sre.compile( | 
					
						
							| 
									
										
										
										
											2000-07-03 18:44:21 +00:00
										 |  |  |         pattern, flags, code, | 
					
						
							|  |  |  |         p.pattern.groups-1, | 
					
						
							|  |  |  |         groupindex, indexgroup | 
					
						
							| 
									
										
										
										
											2000-06-30 07:50:59 +00:00
										 |  |  |         ) |