| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | ! Copyright (C) 2008 Doug Coleman, Daniel Ehrenberg. | 
					
						
							| 
									
										
										
										
											2008-08-29 00:22:53 -04:00
										 |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | USING: combinators io io.binary io.encodings.binary | 
					
						
							| 
									
										
										
										
											2009-03-06 15:10:53 -05:00
										 |  |  | io.streams.byte-array kernel math namespaces | 
					
						
							| 
									
										
										
										
											2009-01-27 19:42:17 -05:00
										 |  |  | sequences strings io.crlf ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | IN: base64 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-11 13:12:09 -04:00
										 |  |  | ERROR: malformed-base64 ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | <PRIVATE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | : read1-ignoring ( ignoring -- ch )
 | 
					
						
							|  |  |  |     read1 2dup swap member? [ drop read1-ignoring ] [ nip ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : read-ignoring ( ignoring n -- str )
 | 
					
						
							|  |  |  |     [ drop read1-ignoring ] with map harvest
 | 
					
						
							|  |  |  |     [ f ] [ >string ] if-empty ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : ch>base64 ( ch -- ch )
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  |     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" | 
					
						
							|  |  |  |     nth ; inline
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : base64>ch ( ch -- ch )
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f
 | 
					
						
							|  |  |  |         f f f f f f f f f f 62 f f f 63 52 53 54 55 56 57 58 59 60 61 f f
 | 
					
						
							|  |  |  |         f 0 f f f 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 | 
					
						
							|  |  |  |         22 23 24 25 f f f f f f 26 27 28 29 30 31 32 33 34 35 36 37 38 39
 | 
					
						
							|  |  |  |         40 41 42 43 44 45 46 47 48 49 50 51
 | 
					
						
							| 
									
										
										
										
											2009-04-09 20:50:25 -04:00
										 |  |  |     } nth [ malformed-base64 ] unless* ; inline
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | SYMBOL: column | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : write1-lines ( ch -- )
 | 
					
						
							|  |  |  |     write1
 | 
					
						
							|  |  |  |     column get [ | 
					
						
							| 
									
										
										
										
											2009-01-27 19:42:17 -05:00
										 |  |  |         1+ [ 76 = [ crlf ] when ] | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  |         [ 76 mod column set ] bi
 | 
					
						
							|  |  |  |     ] when* ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | : write-lines ( str -- )
 | 
					
						
							|  |  |  |     [ write1-lines ] each ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : encode3 ( seq -- )
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:16:18 -04:00
										 |  |  |     be> 4 <reversed> [ | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  |         -6 * shift HEX: 3f bitand ch>base64 write1-lines | 
					
						
							|  |  |  |     ] with each ; inline
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : encode-pad ( seq n -- )
 | 
					
						
							| 
									
										
										
										
											2009-01-29 23:19:07 -05:00
										 |  |  |     [ 3 0 pad-tail binary [ encode3 ] with-byte-writer ] | 
					
						
							|  |  |  |     [ 1+ ] bi* head-slice 4 CHAR: = pad-tail write-lines ; inline
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | : decode4 ( seq -- )
 | 
					
						
							|  |  |  |     [ 0 [ base64>ch swap 6 shift bitor ] reduce 3 >be ] | 
					
						
							|  |  |  |     [ [ CHAR: = = ] count ] bi head-slice*
 | 
					
						
							|  |  |  |     [ write1 ] each ; inline
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | PRIVATE>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | : encode-base64 ( -- )
 | 
					
						
							|  |  |  |     3 read dup length { | 
					
						
							|  |  |  |         { 0 [ drop ] } | 
					
						
							|  |  |  |         { 3 [ encode3 encode-base64 ] } | 
					
						
							|  |  |  |         [ encode-pad encode-base64 ] | 
					
						
							|  |  |  |     } case ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : encode-base64-lines ( -- )
 | 
					
						
							|  |  |  |     0 column [ encode-base64 ] with-variable ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : decode-base64 ( -- )
 | 
					
						
							|  |  |  |     "\n\r" 4 read-ignoring dup length { | 
					
						
							|  |  |  |         { 0 [ drop ] } | 
					
						
							|  |  |  |         { 4 [ decode4 decode-base64 ] } | 
					
						
							|  |  |  |         [ malformed-base64 ] | 
					
						
							|  |  |  |     } case ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-14 11:42:58 -05:00
										 |  |  | : >base64 ( seq -- base64 )
 | 
					
						
							| 
									
										
										
										
											2009-03-06 15:10:53 -05:00
										 |  |  |     binary [ binary [ encode-base64 ] with-byte-reader ] with-byte-writer ;
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-14 11:42:58 -05:00
										 |  |  | : base64> ( base64 -- seq )
 | 
					
						
							| 
									
										
										
										
											2009-03-06 15:10:53 -05:00
										 |  |  |     binary [ binary [ decode-base64 ] with-byte-reader ] with-byte-writer ;
 | 
					
						
							| 
									
										
										
										
											2009-01-13 19:50:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-14 11:42:58 -05:00
										 |  |  | : >base64-lines ( seq -- base64 )
 | 
					
						
							| 
									
										
										
										
											2009-03-06 15:10:53 -05:00
										 |  |  |     binary [ binary [ encode-base64-lines ] with-byte-reader ] with-byte-writer ;
 |