Created
January 21, 2014 14:52
-
-
Save llasram/8541480 to your computer and use it in GitHub Desktop.
Signed <-> unsigned JVM type conversion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def ^:private type-max | |
{'byte Byte/MAX_VALUE, | |
'short Short/MAX_VALUE, | |
'int Integer/MAX_VALUE}) | |
(defn ^:private signed* | |
[type x] | |
(let [max (type-max type), roll (->> max long inc (* 2))] | |
`(~type (let [x# (long ~x)] (if (<= x# ~max) x# (- x# ~roll)))))) | |
(defn ^:private unsigned* | |
[type x] | |
(let [max (type-max type), roll (->> max long inc (* 2))] | |
`(let [x# (long ~x)] (if (<= 0 x#) x# (+ x# ~roll))))) | |
(defn ^:private signvert-doc | |
[type f] | |
(if (= f 'signed*) | |
(str "Convert unsigned integral value to signed " type ".") | |
(str "Convert signed " type " to unsigned integral value."))) | |
(defmacro ^:private define-signverters | |
[& args] | |
`(do ~@(mapcat (fn [[type names]] | |
(map (fn [n f] | |
`(definline ~n | |
~(signvert-doc type f) | |
[~'x] (~f '~type ~'x))) | |
names '[signed* unsigned*])) | |
(partition 2 args)))) | |
(define-signverters | |
byte [sbyte ubyte] | |
short [sshort ushort] | |
int [sint uint]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment