|
1 | 1 | (ns clj-depend.internal-api
|
2 | 2 | (:require [clj-depend.analyzer :as analyzer]
|
3 | 3 | [clj-depend.config :as config]
|
4 |
| - [clj-depend.parser :as parser] |
5 | 4 | [clj-depend.snapshot :as snapshot]
|
6 | 5 | [clojure.java.io :as io]
|
7 |
| - [clojure.string :as string])) |
| 6 | + [clojure.string :as string] |
| 7 | + [clojure.tools.namespace.file :as file] |
| 8 | + [clojure.tools.namespace.find :as namespace.find] |
| 9 | + [clojure.tools.namespace.parse :as namespace.parse])) |
8 | 10 |
|
9 |
| -(defn- ->project-root |
| 11 | +(defn ^:private ->project-root |
10 | 12 | [{:keys [project-root]} context]
|
11 | 13 | (assoc context :project-root project-root))
|
12 | 14 |
|
13 |
| -(defn- ->config |
| 15 | +(defn ^:private ->config |
14 | 16 | [{:keys [config]}
|
15 | 17 | {:keys [project-root] :as context}]
|
16 | 18 | (assoc context :config (config/resolve-config! project-root config)))
|
17 | 19 |
|
18 |
| -(defn ^:private file-within-some-source-paths? |
19 |
| - [file source-paths] |
20 |
| - (some #(.startsWith (.toPath file) (.toPath %)) source-paths)) |
| 20 | +(defn ^:private source-paths-or-project-root->files |
| 21 | + [{:keys [project-root] {:keys [source-paths]} :config}] |
| 22 | + (if (not-empty source-paths) |
| 23 | + (map #(io/file project-root %) source-paths) |
| 24 | + #{project-root})) |
21 | 25 |
|
22 |
| -(defn ^:private files-within-source-paths |
23 |
| - [files source-paths] |
24 |
| - (filter #(file-within-some-source-paths? % source-paths) files)) |
| 26 | +(defn ^:private analyze? |
| 27 | + [{:keys [file namespace]} files-to-be-analyzed namespaces-to-be-analyzed] |
| 28 | + (boolean (cond |
| 29 | + (and (not-empty files-to-be-analyzed) (not-empty namespaces-to-be-analyzed)) |
| 30 | + (and (some #(.startsWith (.toPath file) (.toPath %)) files-to-be-analyzed) |
| 31 | + (contains? namespaces-to-be-analyzed namespace)) |
25 | 32 |
|
26 |
| -(defn- ->files |
27 |
| - [{:keys [files]} |
28 |
| - {:keys [project-root] {:keys [source-paths]} :config :as context}] |
29 |
| - (let [source-paths (map #(io/file project-root %) source-paths)] |
30 |
| - (cond |
31 |
| - (not-empty files) (assoc context :files (files-within-source-paths files source-paths)) |
32 |
| - (not-empty source-paths) (assoc context :files source-paths) |
33 |
| - :else (assoc context :files #{project-root})))) |
| 33 | + (not-empty files-to-be-analyzed) |
| 34 | + (some #(.startsWith (.toPath file) (.toPath %)) files-to-be-analyzed) |
34 | 35 |
|
35 |
| -(defn- ->namespaces |
36 |
| - [{:keys [namespaces]} |
37 |
| - {:keys [files] :as context}] |
38 |
| - (let [ns-deps (parser/parse-clojure-files! files namespaces)] |
39 |
| - (assoc context :dependencies-by-namespace (reduce-kv (fn [m k v] (assoc m k (:dependencies (first v)))) |
40 |
| - {} |
41 |
| - (group-by :name ns-deps))))) |
| 36 | + (not-empty namespaces-to-be-analyzed) |
| 37 | + (contains? namespaces-to-be-analyzed namespace) |
42 | 38 |
|
43 |
| -(defn- build-context |
| 39 | + :else |
| 40 | + true))) |
| 41 | + |
| 42 | +(defn ^:private ->namespaces-and-dependencies |
| 43 | + [_options |
| 44 | + context] |
| 45 | + (let [files (source-paths-or-project-root->files context) |
| 46 | + clojure-files (mapcat #(namespace.find/find-sources-in-dir %) files)] |
| 47 | + (assoc context :namespaces-and-dependencies (keep (fn [file] |
| 48 | + (when-let [ns-decl (file/read-file-ns-decl file)] |
| 49 | + {:namespace (namespace.parse/name-from-ns-decl ns-decl) |
| 50 | + :dependencies (namespace.parse/deps-from-ns-decl ns-decl) |
| 51 | + :file file})) clojure-files)))) |
| 52 | + |
| 53 | +(defn ^:private ->namespaces-to-be-analyzed |
| 54 | + [{files-to-be-analyzed :files |
| 55 | + namespaces-to-be-analyzed :namespaces} |
| 56 | + {:keys [namespaces-and-dependencies] :as context}] |
| 57 | + (assoc context :namespaces-to-be-analyzed (->> namespaces-and-dependencies |
| 58 | + (filter #(analyze? % files-to-be-analyzed namespaces-to-be-analyzed)) |
| 59 | + (map :namespace)))) |
| 60 | + |
| 61 | +(defn ^:private build-context |
44 | 62 | [options]
|
45 | 63 | (->> {}
|
46 | 64 | (->project-root options)
|
47 | 65 | (->config options)
|
48 |
| - (->files options) |
49 |
| - (->namespaces options))) |
| 66 | + (->namespaces-and-dependencies options) |
| 67 | + (->namespaces-to-be-analyzed options))) |
50 | 68 |
|
51 | 69 | (defn configured?
|
52 | 70 | [project-root]
|
|
0 commit comments