| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* List a node on a file */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-13 17:05:14 +01:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											2020-04-14 14:26:24 +02:00
										 |  |  | #include "pycore_interp.h"   // PyInterpreterState.parser
 | 
					
						
							| 
									
										
										
										
											2020-04-14 15:14:01 +02:00
										 |  |  | #include "pycore_pystate.h"  // _PyInterpreterState_GET
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | #include "token.h"
 | 
					
						
							|  |  |  | #include "node.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Forward */ | 
					
						
							| 
									
										
										
										
											2000-07-09 03:09:57 +00:00
										 |  |  | static void list1node(FILE *, node *); | 
					
						
							|  |  |  | static void listnode(FILE *, node *); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:20:54 +00:00
										 |  |  | PyNode_ListTree(node *n) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     listnode(stdout, n); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-06-24 11:10:19 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:20:54 +00:00
										 |  |  | listnode(FILE *fp, node *n) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-14 15:14:01 +02:00
										 |  |  |     PyInterpreterState *interp = _PyInterpreterState_GET(); | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     interp->parser.listnode.level = 0; | 
					
						
							|  |  |  |     interp->parser.listnode.atbol = 1; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     list1node(fp, n); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:20:54 +00:00
										 |  |  | list1node(FILE *fp, node *n) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  |     PyInterpreterState *interp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-23 17:53:47 +02:00
										 |  |  |     if (n == NULL) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     if (ISNONTERMINAL(TYPE(n))) { | 
					
						
							|  |  |  |         int i; | 
					
						
							|  |  |  |         for (i = 0; i < NCH(n); i++) | 
					
						
							|  |  |  |             list1node(fp, CHILD(n, i)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (ISTERMINAL(TYPE(n))) { | 
					
						
							| 
									
										
										
										
											2020-04-14 15:14:01 +02:00
										 |  |  |         interp = _PyInterpreterState_GET(); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         switch (TYPE(n)) { | 
					
						
							|  |  |  |         case INDENT: | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  |             interp->parser.listnode.level++; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case DEDENT: | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  |             interp->parser.listnode.level--; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  |             if (interp->parser.listnode.atbol) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 int i; | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  |                 for (i = 0; i < interp->parser.listnode.level; ++i) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                     fprintf(fp, "\t"); | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  |                 interp->parser.listnode.atbol = 0; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             if (TYPE(n) == NEWLINE) { | 
					
						
							|  |  |  |                 if (STR(n) != NULL) | 
					
						
							|  |  |  |                     fprintf(fp, "%s", STR(n)); | 
					
						
							|  |  |  |                 fprintf(fp, "\n"); | 
					
						
							| 
									
										
										
										
											2019-11-07 10:08:58 +00:00
										 |  |  |                 interp->parser.listnode.atbol = 1; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 fprintf(fp, "%s ", STR(n)); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         fprintf(fp, "? "); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } |