| 
									
										
										
										
											2000-03-06 19:13:21 +00:00
										 |  |  | import sys | 
					
						
							|  |  |  | import getopt | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from compiler import compile, visitor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  |     VERBOSE = 0 | 
					
						
							| 
									
										
										
										
											2000-10-13 21:59:32 +00:00
										 |  |  |     DISPLAY = 0 | 
					
						
							|  |  |  |     opts, args = getopt.getopt(sys.argv[1:], 'vqd') | 
					
						
							| 
									
										
										
										
											2000-03-06 19:13:21 +00:00
										 |  |  |     for k, v in opts: | 
					
						
							|  |  |  |         if k == '-v': | 
					
						
							|  |  |  |             VERBOSE = 1 | 
					
						
							|  |  |  |             visitor.ASTVisitor.VERBOSE = visitor.ASTVisitor.VERBOSE + 1 | 
					
						
							|  |  |  |         if k == '-q': | 
					
						
							| 
									
										
										
										
											2000-05-02 22:29:46 +00:00
										 |  |  |             if sys.platform[:3]=="win": | 
					
						
							|  |  |  |                 f = open('nul', 'wb') # /dev/null fails on Windows... | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 f = open('/dev/null', 'wb') | 
					
						
							| 
									
										
										
										
											2000-03-06 19:13:21 +00:00
										 |  |  |             sys.stdout = f | 
					
						
							| 
									
										
										
										
											2000-10-13 21:59:32 +00:00
										 |  |  |         if k == '-d': | 
					
						
							|  |  |  |             DISPLAY = 1 | 
					
						
							| 
									
										
										
										
											2000-03-06 19:13:21 +00:00
										 |  |  |     if not args: | 
					
						
							|  |  |  |         print "no files to compile" | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         for filename in args: | 
					
						
							|  |  |  |             if VERBOSE: | 
					
						
							|  |  |  |                 print filename | 
					
						
							| 
									
										
										
										
											2000-10-13 21:59:32 +00:00
										 |  |  |             compile(filename, DISPLAY) | 
					
						
							| 
									
										
										
										
											2000-03-06 19:13:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     main() |