aboutsummaryrefslogtreecommitdiff
path: root/src/clojure
diff options
context:
space:
mode:
authorStuart Sierra <mail@stuartsierra.com>2009-08-19 18:57:54 -0400
committerStuart Sierra <mail@stuartsierra.com>2009-08-19 18:57:54 -0400
commitb086e55310f9002dd09b61a5389a943a724897a5 (patch)
treebcb4c374bfdbba280bf772b9f9c45d5c8cd816a5 /src/clojure
parentaae84a8b7e47622a4ca324a2828757996b592ea4 (diff)
base64.clj: Base-64 encoding
Next step: implement decoding!
Diffstat (limited to 'src/clojure')
-rw-r--r--src/clojure/contrib/base64.clj89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/clojure/contrib/base64.clj b/src/clojure/contrib/base64.clj
new file mode 100644
index 00000000..ccd2bf45
--- /dev/null
+++ b/src/clojure/contrib/base64.clj
@@ -0,0 +1,89 @@
+;;; base64.clj: Experimental Base-64 encoding and (later) decoding
+
+;; by Stuart Sierra, http://stuartsierra.com/
+;; August 19, 2009
+
+;; Copyright (c) Stuart Sierra, 2009. All rights reserved. The use
+;; and distribution terms for this software are covered by the Eclipse
+;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
+;; which can be found in the file epl-v10.html at the root of this
+;; distribution. By using this software in any fashion, you are
+;; agreeing to be bound by the terms of this license. You must not
+;; remove this notice, or any other, from this software.
+
+
+(ns clojure.contrib.base64
+ (:import (java.io InputStream Writer ByteArrayInputStream
+ StringWriter)))
+
+(def *base64-alphabet*
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=")
+
+(defn encode
+ "Encodes bytes of input, writing Base 64 text on output. alphabet
+ is a 65-character String containing the 64 characters to use in the
+ encoding; the 65th character is the pad character. line-length is
+ the maximum number of characters per line, nil for no line breaks."
+ [#^InputStream input #^Writer output #^String alphabet line-length]
+ (let [buffer (make-array Byte/TYPE 3)]
+ (loop [line 0]
+ (let [len (.read input buffer)]
+ (when (pos? len)
+ (cond (= len 3)
+ (let [s0 (bit-and 0x3F (bit-shift-right (aget buffer 0) 2))
+ s1 (bit-and 0x3F
+ (bit-or (bit-shift-left (aget buffer 0) 4)
+ (bit-shift-right (aget buffer 1) 4)))
+ s2 (bit-and 0x3F
+ (bit-or (bit-shift-left (aget buffer 1) 2)
+ (bit-shift-right (aget buffer 2) 6)))
+ s3 (bit-and 0x3F (aget buffer 2))]
+ (.append output (.charAt alphabet s0))
+ (.append output (.charAt alphabet s1))
+ (.append output (.charAt alphabet s2))
+ (.append output (.charAt alphabet s3)))
+
+ (= len 2)
+ (let [s0 (bit-and 0x3F (bit-shift-right (aget buffer 0) 2))
+ s1 (bit-and 0x3F
+ (bit-or (bit-shift-left (aget buffer 0) 4)
+ (bit-shift-right (aget buffer 1) 4)))
+ s2 (bit-and 0x3F (bit-shift-left (aget buffer 1) 2))]
+ (.append output (.charAt alphabet s0))
+ (.append output (.charAt alphabet s1))
+ (.append output (.charAt alphabet s2))
+ (.append output (.charAt alphabet 64)))
+
+ (= len 1)
+ (let [s0 (bit-and 0x3F (bit-shift-right (aget buffer 0) 2))
+ s1 (bit-and 0x3F (bit-shift-left (aget buffer 0) 4))]
+ (.append output (.charAt alphabet s0))
+ (.append output (.charAt alphabet s1))
+ (.append output (.charAt alphabet 64))
+ (.append output (.charAt alphabet 64))))
+ (if (and line-length (> (+ line 4) line-length))
+ (do (.append output \newline)
+ (recur 0))
+ (recur (+ line 4))))))))
+
+(defn encode-str
+ "Encodes String in base 64; returns a String. If not specified,
+ encoding is UTF-8 and line-length is nil."
+ ([s] (encode-str s "UTF-8" nil))
+ ([#^String s #^String encoding line-length]
+ (let [output (StringWriter.)]
+ (encode (ByteArrayInputStream. (.getBytes s encoding))
+ output *base64-alphabet* line-length)
+ (.toString output))))
+
+
+;;; tests
+
+;; (deftest t-encode-str
+;; (is (= (encode-str "") ""))
+;; (is (= (encode-str "f") "Zg=="))
+;; (is (= (encode-str "fo") "Zm8="))
+;; (is (= (encode-str "foo") "Zm9v"))
+;; (is (= (encode-str "foob") "Zm9vYg=="))
+;; (is (= (encode-str "fooba") "Zm9vYmE="))
+;; (is (= (encode-str "foobar") "Zm9vYmFy")))