diff options
author | Chouser <chouser@n01se.net> | 2009-06-03 18:45:41 +0000 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2009-06-03 18:45:41 +0000 |
commit | abf462cb24fddb21834b523e3c56f568443714f8 (patch) | |
tree | 08753ad122f1474b124a3a6c96da4bdd1a1cb6b8 | |
parent | ffa868411cda6c617105b52b4f6f9e0f37ee8c24 (diff) |
repl-utils: Add expression-info
-rw-r--r-- | src/clojure/contrib/repl_utils.clj | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/src/clojure/contrib/repl_utils.clj b/src/clojure/contrib/repl_utils.clj index f0986a5f..5ab4b450 100644 --- a/src/clojure/contrib/repl_utils.clj +++ b/src/clojure/contrib/repl_utils.clj @@ -9,16 +9,19 @@ ; Utilities meant to be used interactively at the REPL (ns - #^{:author "Chris Houser", + #^{:author "Chris Houser, Christophe Grand, Stephen Gilardi", :doc "Utilities meant to be used interactively at the REPL"} clojure.contrib.repl-utils (:import (java.io File LineNumberReader InputStreamReader PushbackReader) (java.lang.reflect Modifier Method Constructor) - (clojure.lang RT)) + (clojure.lang RT Compiler Compiler$C)) (:use [clojure.contrib.seq-utils :only (indexed)] [clojure.contrib.javadoc.browse :only (browse-url)] [clojure.contrib.str-utils :only (str-join re-sub re-partition)])) +;; ---------------------------------------------------------------------- +;; Examine Java classes + (defn- sortable [t] (apply str (map (fn [[a b]] (str a (format "%04d" (Integer. b)))) (partition 2 (concat (re-partition #"\d+" t) [0]))))) @@ -88,6 +91,9 @@ (when (pred m) (printf "[%2d] %s\n" i (:text m))))))))) +;; ---------------------------------------------------------------------- +;; Examine Clojure functions (Vars, really) + (defn get-source "Returns a string of the source code for the given symbol, if it can find it. This requires that the symbol resolve to a Var defined in @@ -118,6 +124,8 @@ [n] `(println (or (get-source '~n) (str "Source not found")))) +;; ---------------------------------------------------------------------- +;; Handle Ctrl-C keystrokes (def #^{:doc "Threads to stop when Ctrl-C is pressed. See 'add-break-thread!'"} break-threads (ref nil)) @@ -150,6 +158,24 @@ (dosync (commute break-threads assoc (.getId t) tref))))) ;; ---------------------------------------------------------------------- +;; Compiler hooks + +(defn expression-info + "Uses the Clojure compiler to analyze the given s-expr. Returns + a map with keys :class and :primitive? indicating what the compiler + concluded about the return value of the expression. Returns nil if + not type info can be determined at compile-time. + + Example: (expression-info '(+ (int 5) (float 10))) + Returns: {:class float, :primitive? true}" + [expr] + (let [fn-ast (Compiler/analyze Compiler$C/EXPRESSION `(fn [] ~expr)) + expr-ast (.body (first (.methods fn-ast)))] + (when (.hasJavaClass expr-ast) + {:class (.getJavaClass expr-ast) + :primitive? (.isPrimitive (.getJavaClass expr-ast))}))) + +;; ---------------------------------------------------------------------- ;; scgilardi at gmail (defn run* @@ -165,6 +191,5 @@ [ns-name & args] `(run* '~ns-name ~@args)) -;; ---------------------------------------------------------------------- (load "repl_utils/javadoc") |