Открытие проекта leiningen в emacs / cider вызывает ошибку пути к классам - PullRequest
0 голосов
/ 13 ноября 2018

Я изучаю Clojure с книгой «Clojure для Храбрых и Истинных» и использую emacs, cider и leiningen. Я создал проект.

lein new app the-divine-cheese-code

Затем я добавил исходные файлы в проект.

-божественно-сыр-код \ SRC \ the_divine_cheese_code \ core.clj заместитель божественно-сыр-код \ SRC \ the_divine_cheese_code \ визуализации \ svg.clj

В 'core.clj' я ссылаюсь на пространство имен 'svg.clj'.

-божественно-сыр-код \ SRC \ the_divine_cheese_code \ core.clj

(ns the-divine-cheese-code.core)
;; Ensure that the SVG code is evaluated
(require 'the-divine-cheese-code.visualization.svg)
;; Refer the namespace so that you don't have to use the 
;; fully qualified name to reference svg functions
(refer 'the-divine-cheese-code.visualization.svg)

(def heists [{:location "Cologne, Germany"
              :cheese-name "Archbishop Hildebold's Cheese Pretzel"
              :lat 50.95
              :lng 6.97}
             {:location "Zurich, Switzerland"
              :cheese-name "The Standard Emmental"
              :lat 47.37
              :lng 8.55}
             {:location "Marseille, France"
              :cheese-name "Le Fromage de Cosquer"
              :lat 43.30
              :lng 5.37}
             {:location "Zurich, Switzerland"
              :cheese-name "The Lesser Emmental"
              :lat 47.37
              :lng 8.55}
             {:location "Vatican City"
              :cheese-name "The Cheese of Turin"
              :lat 41.90
              :lng 12.45}])

(defn -main
  [& args]
  (println (points heists)))

-божественно-сыр-код \ SRC \ the_divine_cheese_code \ визуализации \ svg.clj

(ns the-divine-cheese-code.visualization.svg)

(defn latlng->point
  "Convert lat/lng map to comma-separated string" 
  [latlng]
  (str (:lat latlng) "," (:lng latlng)))

(defn points
  [locations]
  (clojure.string/join " " (map latlng->point locations)))

Вот вся структура каталога проекта.

the-divine-cheese-code              
the-divine-cheese-code\.gitignore               
the-divine-cheese-code\.hgignore                
the-divine-cheese-code\.nrepl-port              
the-divine-cheese-code\CHANGELOG.md             
the-divine-cheese-code\doc              
the-divine-cheese-code\doc\intro.md             
the-divine-cheese-code\LICENSE              
the-divine-cheese-code\project.clj              
the-divine-cheese-code\README.md                
the-divine-cheese-code\resources                
the-divine-cheese-code\src              
the-divine-cheese-code\src\the_divine_cheese_code               
the-divine-cheese-code\src\the_divine_cheese_code\core.clj              
the-divine-cheese-code\src\the_divine_cheese_code\visualization             
the-divine-cheese-code\src\the_divine_cheese_code\visualization\svg.clj             
the-divine-cheese-code\target               
the-divine-cheese-code\target\default               
the-divine-cheese-code\target\default\classes               
the-divine-cheese-code\target\default\classes\META-INF              
the-divine-cheese-code\target\default\classes\META-INF\maven                
the-divine-cheese-code\target\default\classes\META-INF\maven\the-divine-cheese-code             
the-divine-cheese-code\target\default\classes\META-INF\maven\the-divine-cheese-code\the-divine-cheese-code              
the-divine-cheese-code\target\default\classes\META-INF\maven\the-divine-cheese-code\the-divine-cheese-code\pom.properties
the-divine-cheese-code\target\default\repl-port             

-божественно-сыр-код \ цель \ умолчанию \ несвежий
заместитель божественно-сыр-код \ целевой \ умолчанию \ несвежий \ leiningen.core.classpath.extract чужеродные-зависимостей
заместитель божественно-сыр-код \ тест
заместитель божественно-сыр-код \ тест \ the_divine_cheese_code
заместитель божественно-сыр-код \ тест \ the_divine_cheese_code \ core_test.clj

Когда я запускаю проект с «lein run», он успешно выполняется. Однако, когда я открываю файл core.clj с помощью emacs / cider и пытаюсь скомпилировать его, я получаю ошибку пути к классам.

CompilerException java.io.FileNotFoundException: Could not locate 
the_divine_cheese_code/visualization/svg__init.class or 
the_divine_cheese_code/visualization/svg.clj on classpath. Please check 
that namespaces with dashes use underscores in the Clojure file name., 
compiling:(c:/temp/the-divine-cheese-code/src/the_divine_cheese_code/core.clj:2:1)

CIDER успешно компилирует источники, если я помещаю их в один и тот же каталог (соответственно изменяя пространство имен).

(ns the-divine-cheese-code.core)
(require 'the-divine-cheese-code.svg)
(refer 'the-divine-cheese-code.svg)

(def heists [{:location "Cologne, Germany"
    ...

Так что, возможно, проблема связана с ОС. Я использую Windows 7, которая не является основной ОС для Emacs / CIDER.

После некоторых экспериментов я обнаружил, что CIDER работает без: см.

(ns the-divine-cheese-code.core
  (:require [the-divine-cheese-code.visualization.svg]))

Это похоже на ошибку CIDER, и 'lein run' предсказуемо дает ошибку в этом случае. Если я сделаю это правильно

(ns the-divine-cheese-code.core
  (:require [the-divine-cheese-code.visualization.svg :refer :all]))

CIDER теперь выдает еще одну ошибку:

Caused by java.lang.IllegalStateException
latlng->point already refers to:
#'the-divine-cheese-code.svg/latlng->point in namespace:
the-divine-cheese-code.core

Ответы [ 2 ]

0 голосов
/ 18 июня 2019

В моем случае ошибка исчезла после того, как я переименовал (в то же имя) папку src/the_divine_cheese_code/ и ее содержимое рекурсивно.

Не уверен, что вызвало проблему. Я думаю, что кодировка символов была испорчена. Я создал файл и папку в Emacs и переименовал в Double Commander.

0 голосов
/ 14 ноября 2018

Было бы предложено использовать опции, предоставляемые макросом ns, вместо простых операторов require и refer - это рекомендуемый способ выполнения импорта / запроса в Clojure, и большая часть инструментов написана таким образом управления пространствами имен в виду. Даже если приведенный ниже код все еще не работает в CIDER, его будет проще диагностировать:

;; the-divine-cheese-code\src\the_divine_cheese_code\core.clj

(ns the-divine-cheese-code.core
  (:require [the-divine-cheese-code.visualization.svg :refer :all]))

(def heists ...)

(defn- main ...)
...