| 
									
										
										
										
											2008-01-23 03:07:15 -05:00
										 |  |  | ! Copyright (C) 2007, 2008 Slava Pestov. | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2008-03-27 18:12:39 -04:00
										 |  |  | USING: init kernel system namespaces io io.encodings | 
					
						
							| 
									
										
										
										
											2008-04-01 20:00:20 -04:00
										 |  |  | io.encodings.utf8 init assocs splitting ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | IN: io.backend | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SYMBOL: io-backend | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HOOK: init-io io-backend ( -- )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 02:37:05 -05:00
										 |  |  | HOOK: (init-stdio) io-backend ( -- stdin stdout stderr )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : init-stdio ( -- )
 | 
					
						
							| 
									
										
										
										
											2008-05-05 03:19:25 -04:00
										 |  |  |     (init-stdio) | 
					
						
							|  |  |  |     [ utf8 <decoder> input-stream set-global ] | 
					
						
							|  |  |  |     [ utf8 <encoder> output-stream set-global ] | 
					
						
							|  |  |  |     [ utf8 <encoder> error-stream set-global ] tri* ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | HOOK: io-multiplex io-backend ( ms -- )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HOOK: normalize-directory io-backend ( str -- newstr )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-01 20:51:49 -04:00
										 |  |  | HOOK: normalize-path io-backend ( str -- newstr )
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-01 20:51:49 -04:00
										 |  |  | M: object normalize-directory normalize-path ;
 | 
					
						
							| 
									
										
										
										
											2008-03-26 23:47:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 20:58:34 -05:00
										 |  |  | : set-io-backend ( io-backend -- )
 | 
					
						
							| 
									
										
										
										
											2008-03-27 18:12:39 -04:00
										 |  |  |     io-backend set-global init-io init-stdio | 
					
						
							|  |  |  |     "io.files" init-hooks get at call ;
 | 
					
						
							| 
									
										
										
										
											2008-02-18 06:07:40 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | [ init-io embedded? [ init-stdio ] unless ] | 
					
						
							|  |  |  | "io.backend" add-init-hook |