aboutsummaryrefslogtreecommitdiff
path: root/src/lux/reader.clj
blob: 9fd9b14eaee5d521529bbff8ddfee5ad833f696d (plain)
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
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
;;   Copyright (c) Eduardo Julian. 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 lux.reader
  (:require [clojure.string :as string]
            [clojure.core.match :as M :refer [matchv]]
            clojure.core.match.array
            [lux.base :as & :refer [|do return* return fail fail* |let]]))

;; [Utils]
(defn ^:private with-line [body]
  (fn [state]
    (matchv ::M/objects [(&/get$ &/$SOURCE state)]
      [["lux;Nil" _]]
      (fail* "[Reader Error] EOF")

      [["lux;Cons" [[[file-name line-num column-num] line]
                    more]]]
      (matchv ::M/objects [(body file-name line-num column-num line)]
        [["No" msg]]
        (fail* msg)

        [["Done" output]]
        (return* (&/set$ &/$SOURCE more state)
                 output)

        [["Yes" [output line*]]]
        (return* (&/set$ &/$SOURCE (&/|cons line* more) state)
                 output))
      )))

(defn ^:private with-lines [body]
  (fn [state]
    (matchv ::M/objects [(body (&/get$ &/$SOURCE state))]
      [["lux;Right" [reader* match]]]
      (return* (&/set$ &/$SOURCE reader* state)
               match)

      [["lux;Left" msg]]
      (fail* msg)
      )))

;; [Exports]
(defn ^:private re-find! [^java.util.regex.Pattern regex column ^String line]
  (let [matcher (doto (.matcher regex line)
                  (.region column (.length line))
                  (.useAnchoringBounds true))]
    (when (.find matcher)
      (.group matcher 0))))

(defn ^:private re-find1! [^java.util.regex.Pattern regex column ^String line]
  (let [matcher (doto (.matcher regex line)
                  (.region column (.length line))
                  (.useAnchoringBounds true))]
    (when (.find matcher)
      (.group matcher 1))))

(defn ^:private re-find3! [^java.util.regex.Pattern regex column ^String line]
  (let [matcher (doto (.matcher regex line)
                  (.region column (.length line))
                  (.useAnchoringBounds true))]
    (when (.find matcher)
      (list (.group matcher 0)
            (.group matcher 1)
            (.group matcher 2)))))

(defn read-regex [regex]
  (with-line
    (fn [file-name line-num column-num ^String line]
      ;; (prn 'read-regex [file-name line-num column-num regex line])
      (if-let [^String match (do ;; (prn '[regex line] [regex line])
                                 (re-find! regex column-num line))]
        (let [;; _ (prn 'match match)
              match-length (.length match)
              column-num* (+ column-num match-length)]
          (if (= column-num* (.length line))
            (&/V "Done" (&/T (&/T file-name line-num column-num) match))
            (&/V "Yes" (&/T (&/T (&/T file-name line-num column-num) match)
                            (&/T (&/T file-name line-num column-num*) line)))))
        (&/V "No" (str "[Reader Error] Pattern failed: " regex))))))

(defn read-regex2 [regex]
  (with-line
    (fn [file-name line-num column-num ^String line]
      ;; (prn 'read-regex2 [file-name line-num column-num regex line])
      (if-let [[^String match tok1 tok2] (re-find3! regex column-num line)]
        (let [match-length (.length match)
              column-num* (+ column-num match-length)]
          (if (= column-num* (.length line))
            (&/V "Done" (&/T (&/T file-name line-num column-num) (&/T tok1 tok2)))
            (&/V "Yes" (&/T (&/T (&/T file-name line-num column-num) (&/T tok1 tok2))
                            (&/T (&/T file-name line-num column-num*) line)))))
        (&/V "No" (str "[Reader Error] Pattern failed: " regex))))))

(defn read-regex+ [regex]
  (with-lines
    (fn [reader]
      (loop [prefix ""
             reader* reader]
        (matchv ::M/objects [reader*]
          [["lux;Nil" _]]
          (&/V "lux;Left" "[Reader Error] EOF")

          [["lux;Cons" [[[file-name line-num column-num] ^String line]
                        reader**]]]
          (if-let [^String match (do ;; (prn 'read-regex+ regex line)
                                     (re-find1! regex column-num line))]
            (let [match-length (.length match)
                  column-num* (+ column-num match-length)]
              (if (= column-num* (.length line))
                (recur (str prefix match "\n") reader**)
                (&/V "lux;Right" (&/T (&/|cons (&/T (&/T file-name line-num column-num*) line)
                                               reader**)
                                      (&/T (&/T file-name line-num column-num) (str prefix match))))))
            (&/V "lux;Left" (str "[Reader Error] Pattern failed: " regex))))))))

(defn read-text [^String text]
  (with-line
    (fn [file-name line-num column-num ^String line]
      ;; (prn 'read-text [file-name line-num column-num text line])
      (if (.startsWith line text column-num)
        (let [match-length (.length text)
              column-num* (+ column-num match-length)]
          (if (= column-num* (.length line))
            (&/V "Done" (&/T (&/T file-name line-num column-num) text))
            (&/V "Yes" (&/T (&/T (&/T file-name line-num column-num) text)
                            (&/T (&/T file-name line-num column-num*) line)))))
        (&/V "No" (str "[Reader Error] Text failed: " text))))))

(def ^:private ^String +source-dir+ "input/")
(defn from [^String file-name ^String file-content]
  (let [lines (&/->list (string/split-lines file-content))
        file-name (.substring file-name (.length +source-dir+))]
    (&/|map (fn [line+line-num]
              (|let [[line-num line] line+line-num]
                (&/T (&/T file-name (inc line-num) 0)
                     line)))
            (&/|filter (fn [line+line-num]
                         (|let [[line-num line] line+line-num]
                           (not= "" line)))
                       (&/enumerate lines)))))