Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created February 28, 2012 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomjack/8e9cb8a83e11986a6682 to your computer and use it in GitHub Desktop.
Save tomjack/8e9cb8a83e11986a6682 to your computer and use it in GitHub Desktop.
(defn is-file-line [line]
(cond (>= (.indexOf line "Added:") 0) true
(>= (.indexOf line "Modified:") 0) true
:else false))
(defn is-jsfile-line [line]
(and (is-file-line line) (.endsWith line ".js")))
(let [debugger-line #"(?<!//.{0,102400})debugger"
alert-line #"(?<!//.{0,102400})alert\s*\("
console-line #"(?<!//.{0,102400})console"]
(defn process-js [line]
(let [lower-line (.substring (.toLowerCase line) 1)]
(cond (re-find debugger-line lower-line) true
(re-find alert-line lower-line) true
(re-find console-line lower-line) true
:else false))))
(let [added-line #"^\+[^\+]"]
(defn get-lines [lines state]
(when-let [[line & reader] (seq lines)]
(if (is-jsfile-line line)
(lazy-seq (get-lines reader "js")))
(if (and (= state "js")
(not (is-file-line line)))
(if (and (re-find added-line line) (process-js line))
(cons line
(lazy-seq (get-lines reader "js")))
(lazy-seq (get-lines reader "js")))
(lazy-seq (get-lines reader "not-js"))))))
(doseq [line (get-lines (line-seq (java.io.BufferedReader. *in*)) "not-js")]
(println line))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment