| 
									
										
										
										
											2014-10-23 15:48:53 +02:00
										 |  |  | // Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  | // modify it under the terms of the GNU General Public | 
					
						
							|  |  |  | // License as published by the Free Software Foundation; either | 
					
						
							|  |  |  | // version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  | // General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | // along with this library; if not, write to the Free Software | 
					
						
							|  |  |  | // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | 
					
						
							|  |  |  | // MA 02110-1301  USA | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-15 20:34:25 +02:00
										 |  |  | package ethrepl | 
					
						
							| 
									
										
										
										
											2014-05-17 15:15:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"bufio" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2014-05-17 15:15:46 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *JSRepl) read() { | 
					
						
							|  |  |  | 	reader := bufio.NewReader(os.Stdin) | 
					
						
							|  |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2014-05-19 13:04:31 +02:00
										 |  |  | 		fmt.Printf(self.prompt) | 
					
						
							| 
									
										
										
										
											2014-05-17 15:15:46 +02:00
										 |  |  | 		str, _, err := reader.ReadLine() | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			fmt.Println("Error reading input", err) | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:03 -06:00
										 |  |  | 			if string(str) == "exit" { | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 				self.Stop() | 
					
						
							|  |  |  | 				break | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				self.parseInput(string(str)) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-05-17 15:15:46 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-05-19 16:32:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | func addHistory(s string) { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func printColored(outputVal string) { | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:03 -06:00
										 |  |  | 	for outputVal != "" { | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 		codePart := "" | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:03 -06:00
										 |  |  | 		if strings.HasPrefix(outputVal, "\033[32m") { | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 			codePart = "\033[32m" | 
					
						
							|  |  |  | 			changeColor(2) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:03 -06:00
										 |  |  | 		if strings.HasPrefix(outputVal, "\033[1m\033[30m") { | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 			codePart = "\033[1m\033[30m" | 
					
						
							|  |  |  | 			changeColor(8) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:03 -06:00
										 |  |  | 		if strings.HasPrefix(outputVal, "\033[31m") { | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 			codePart = "\033[31m" | 
					
						
							|  |  |  | 			changeColor(red) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:03 -06:00
										 |  |  | 		if strings.HasPrefix(outputVal, "\033[35m") { | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 			codePart = "\033[35m" | 
					
						
							|  |  |  | 			changeColor(5) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:03 -06:00
										 |  |  | 		if strings.HasPrefix(outputVal, "\033[0m") { | 
					
						
							| 
									
										
										
										
											2014-10-15 02:41:26 +03:00
										 |  |  | 			codePart = "\033[0m" | 
					
						
							|  |  |  | 			resetColorful() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		textPart := outputVal[len(codePart):len(outputVal)] | 
					
						
							|  |  |  | 		index := strings.Index(textPart, "\033") | 
					
						
							|  |  |  | 		if index == -1 { | 
					
						
							|  |  |  | 			outputVal = "" | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			outputVal = textPart[index:len(textPart)] | 
					
						
							|  |  |  | 			textPart = textPart[0:index] | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		fmt.Printf("%v", textPart) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *JSRepl) PrintValue(v interface{}) { | 
					
						
							|  |  |  | 	method, _ := self.re.Vm.Get("prettyPrint") | 
					
						
							|  |  |  | 	v, err := self.re.Vm.ToValue(v) | 
					
						
							|  |  |  | 	if err == nil { | 
					
						
							|  |  |  | 		val, err := method.Call(method, v) | 
					
						
							|  |  |  | 		if err == nil { | 
					
						
							|  |  |  | 			printColored(fmt.Sprintf("%v", val)) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-19 16:32:45 +02:00
										 |  |  | } |