12

启动并运行 Emacs / Clojure 环境,我现在遇到了我不确定是否正常的行为。特别是,当我启动一个 nREPL 并编译 (Cc Ck) 我的缓冲区时,我会被放入 core.clj 文件顶部定义的命名空间之外的其他地方。我应该添加免责声明,即我对 Clojure 和命名空间有点陌生,所以我对这一切的理解可能很模糊。我愿意接受那些向我展示 Better Way™ 的固执己见的答案。

首先,关于我的设置:

我的 emacs 环境是 Cocoa Emacs 24,主要使用 Melpa 存储库中的 emacs 入门工具包进行设置,并通过包管理器添加 clojure 和 nrepl 包。

我的 leiningen 2 项目是使用lein new test-clj.

我的project.clj

(defproject test-clj "0.1.0-SNAPSHOT"
  :description "A geospatial test app example mostly ripped off from http://datamangling.com/blog/2010/05/26/geotools-quickstart-in-clojure/"
  :repositories {"osgeo-geotools" "http://download.osgeo.org/webdav/geotools"}
  :url "FIXME"
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :dependencies [[org.clojure/clojure "1.4.0"]
                 [org.geotools/gt-main "8.2"]
                 [org.geotools/gt-shapefile "8.2"]
                 [org.geotools/gt-epsg-hsql "8.2"]
                 [org.geotools/gt-swing "8.2"]])

我的core.clj

(ns test-clj.core
  (:import [org.geotools.data CachingFeatureSource FeatureSource FileDataStore FileDataStoreFinder])
  (:import [org.geotools.map DefaultMapContext MapContext])
  (:import [org.geotools.swing JMapFrame])
  (:import [org.geotools.swing.data JFileDataStoreChooser]))


(defn show-shapefile
  "Prompts the user for a shapefile and displays its content"
  []
  (if-let [shapefile (JFileDataStoreChooser/showOpenFile "shp" nil)]
    (let [fs (.getFeatureSource (FileDataStoreFinder/getDataStore shapefile))]
      (doto (DefaultMapContext.)
        (.setTitle "Quickstart")
        (.addLayer fs nil)
        (JMapFrame/showMap)))))

我应该能够

  1. 加载我的 core.clj 文件并插入 ( M-x nrepl-jack-in)
  2. C-c C-k将缓冲区加载到 REPL
  3. 输入 (show-shapefile) 并对我的聪明印象深刻

实际上,我收到一个看起来像的错误clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: Unable to resolve symbol: show-shapefile in this context, compiling:(NO_SOURCE_PATH:1)

如果从 REPL 中我第一次输入(in-ns `test-clj.core),我就是金子。另外,如果我输入 (test-clj.core/show-shapefile) 我就设置好了。

当我以逆时针方向加载 REPL 时,我会自动进入 test-clj.core 命名空间,这看起来非常方便。

那么我的问题有两个:

  1. 这是我看到的正确行为吗?(即我只是懒惰?)
  2. 有没有办法进入这个命名空间(或者相反,告诉我这是一个愚蠢的想法)?
4

1 回答 1

12

只需对您的工作流程进行一些更改:

  1. 加载我的 core.clj 文件并插入(M-xnrepl-jack-in)
  2. C-c C-l加载文件
  3. c-c M-n将 repl 切换到命名空间
  4. 输入 (show-shapefile) 并对我的聪明印象深刻

第 2 步编译文件,创建命名空间
第 3 步只是比切换到 repl 并运行更短in-ns

于 2012-10-19T22:25:44.493 回答