Extensions and enhancements to the Clojure libraries.

learn more… | top users | synonyms

0
votes
1answer
37 views

check if attribute with a specific value is present in zip/node using zip-filter library or another one

am new at clojure and would like to know how to check if an attribute with a specific value is present in a zip/node using the zip-filter library. Let us say I have the following xml content in a ...
2
votes
2answers
81 views

Manipulating java objects from clojure

am new at clojure and would like to interact with java objects using clojure. If I have well understood, one can reach this interaction using defprotocol. What I concretely try to do is the ...
0
votes
0answers
108 views

Polymorphic I/O utility functions for Java 7 file I/O

Is there a library for I/O utility functions for Java 7 file I/O akin to clojure.java.io available in Clojure Contrib or elsewhere? Specifically, I'm interested in the utilities which could provide a ...
7
votes
2answers
244 views

How do I depend on every clojure contrib library?

I used to like to include all of clojure.contrib, and require all the libraries. This makes find-doc useful as a discovery tool. Nowadays (clojure 1.4) clojure.contrib is split into many ...
3
votes
1answer
171 views

Any library for Java properties files in *new* contrib?

In the old monolithic clojure-contrib there were java-utils and properties namespaces with a few handy functions, like read-properties which parsed a Java properties file into a Clojure map. Is there ...
3
votes
4answers
152 views

how are you expected to install the clojure modular contribs?

The old monolithic clojure.contrib was available as a .jar from the same place you got the clojure .jar, and you used it by pointing your classpath at it. As far as I can tell, the new modular ...
7
votes
2answers
151 views

How do I find which of my dependencies is downloading a particular jar?

One of my project.clj's :dependencies is dependent on the monolithic clojure-contrib-1.1.0.jar, but I can't guess which one is downloading it. Short of incrementally commenting out each one, how can I ...
2
votes
1answer
354 views

How do I eval a clojure data structure within the context of a namespace?

I'm writing a clojure app for internal use, and I want the config file to be in clojure too. I have defined a few macros to make writing the config file easier, but when I try to eval the data from ...
2
votes
1answer
137 views

Monolithic Contrib for Clojure

https://github.com/clojure/clojure-contrib This link of clojure asks to use Monolithic Contrib with clojure 1.3. From where can i get jar of Monolithic Contrib or jar is same as clojure-contrib?
4
votes
1answer
465 views

How to find import-static in clojure 1.3

I am reading "Programming Clojure", and this book is based on clojure 1.1. I want to use the latest stable version, 1.3, but it does not have old clojure-contrib. My problem is that I cannot find ...
5
votes
2answers
101 views

Pass Sequence as Argument in Place of Multiple Arguments

How can I/should I pass a single sequence as an argument to a function which expects multiple arguments? Specifically, I'm trying to use cartesian-product and pass it a sequence (see below); however, ...
0
votes
0answers
57 views

How to code a Launcher that launches clojure code from Java directly. [closed]

write a Java application that launches the Clojure compiler directly to compile and then execute the Clojure code.
3
votes
3answers
379 views

Why does my Clojure import fail?

I'm running Clojure 1.3 with contrib 1.1 in IntelliJ. My program consists of a single line (use 'clojure.contrib.prxml) I get the following error upon running Exception in thread "main" ...
4
votes
2answers
162 views

How do I extend clojure.contribs json writer to serialize other classes

I need to create JSON objects from clojure maps that store things like clojure vars. The base implementation throws this kind of error when it sees them: java.lang.Exception: Don't know how to write ...
0
votes
2answers
125 views

Check physical existence of files referenced in DB table

We have one rather large table containing documents info together with filepaths pointing to files on file system. After couple of years we noticed that we have files on the disk which are not ...
6
votes
2answers
263 views

Find where clojure-contrib libs have moved to

Given how with future version of clojure are discouraging use of clojure-contrib as a single item - how do you find where things have moved to. For example - this utility: ...
3
votes
2answers
149 views

using clojure.contrib.strint with a string defined elsewhere

I'm new to clojure, and I'm trying to use clojure.contrib.strint to build a URL. for example I might use this for a google search: (def search_base_url ...
5
votes
3answers
1k views

How to Execute Clojure File?

How can I run a clojure file/script, which uses clojure-contrib, from the command line? My (winodws) machine has clojure-1.2.1.jar and clojure-contrib-1.2.0.jar on the classpath. Note: I can start the ...
9
votes
3answers
407 views

How to call Clojure Macros from Java?

Is there anyway to call Clojure macros from Java? Here is what I am trying to do: RT.var("clojure.core", "require").invoke(Symbol.create("clojure.contrib.prxml")); Var prxml = ...
0
votes
2answers
159 views

Cannot get clojure-contrib sql to load - FileNotFoundException

I installed clojure and clojure contrib manually, through homebrew and mac ports all of them gives me this error. I can get other parts to work. What gives? edit this question seems similar Can not ...
3
votes
2answers
235 views

loading clojure-contrib

I'm new to the whole JVM thing, and trying to play with clojure. I'm attempting to load clojure-contrib and failing: # in bash $ java -cp /path/to/clojure.jar:/path/to/contrib.jar clojure.main # in ...
11
votes
4answers
3k views

Where to find valid version numbers for dependencies in Leiningen

I'm new to Clojure and Leiningen, and I've determined that some of what I'll want to use is located in clojure.contrib.generic.math-functions. I found API information for that at ...
7
votes
1answer
608 views

IllegalStateException Compiling Clojure-Contrib

I am trying to compile my own version of clojure-contrib with Maven I get the following exception: Exception in thread "main" java.lang.IllegalStateException: Can't dynamically bind non-dynamic var: ...
0
votes
2answers
248 views

Clojure throws error only when using namespace

I've started working on a chess game in Clojure, but am having trouble with my namespace. At the top of my file, I have (ns chess.core (:require clojure.contrib.str-utils2)) and also define ...
5
votes
3answers
729 views

How do I dynamically find metadata for a Clojure function?

Say I have the following code: (defn ^{:graph-title "Function 1"} func-1 [x] (do-something-with x)) (defn get-graph-title [func] (str ((meta func) :graph-title))) I expect this to ...
3
votes
2answers
255 views

Create line segment from two points in Clojure

What's the best way to go about doing this? Here's what I've got so far (defn line-segment [start end] (let [x-direction (abs (- (first end) (first start))) y-direction (abs (- (last end) ...
22
votes
1answer
3k views

How does ClojureQL compare to clojure.contrib.sql?

It looks like each one covers the basic cases like selecting certain columns and filtering by predicate pretty well, but I'm wondering how each compares for more advanced cases. Is it easier to ...
4
votes
1answer
108 views

How do you get all the functions defined in the namespace in Clojure?

I want to see all the functions defined in the current namespace. Is there a function I can call in the REPL that can answer this question?
8
votes
3answers
2k views

Create a list from a string in Clojure

I'm looking to create a list of characters using a string as my source. I did a bit of googling and came up with nothing so then I wrote a function that did what I wanted: (defn list-from-string ...
3
votes
1answer
270 views

reading large command output with clojure

I'm using the sh function from the clojure.java.shell command to read the very large output of a command. The output is around 60meg of data. I keep getting java.lang.OutOfMemoryError. Is there a ...
0
votes
2answers
198 views

clojure-contrib.jar import error

Command line is "D:\Progra~1\Java\jre6\bin\java.exe -jar D:\Old\Clojure\clojure.jar D:\Old\Clojure\clojure-contrib.jar" Following error appears: clojure.lang.Compiler$CompilerException: ...
1
vote
3answers
786 views

How to include clj-time and clojure.contrib under clojure 1.2?

I tried to migrate a project from clojure 1.1 to 1.2 because of the new protocols introduced in 1.2. But when I try to :use clojure-contrib.duck-streams I get a warning about 'spit' which already ...
2
votes
1answer
328 views

Clojure contrib sql makes all numbers a BigDecimal

The clojure.contrib.sql library returns BigDecimals for all numeric fields. What's a good way to have some fields as Integers? Example code below: (sql/with-connection my-db ...
10
votes
2answers
794 views

Use for the identity monad in Clojure

I've been reading an excellent introduction to monads for Clojure programmers. The article illustrates that the Identity monad is functionally equivalent to Clojure's let and that the Sequence/List ...
4
votes
3answers
1k views

How to convert a sequence to a byte[] in Clojure?

I need to write raw bytes to the file. I do it with: (.write (FileOutputStream "/path") bytes) ...where bytes must be of type byte[]. Please note it cannot be Byte[]. I tried to convert my ...
3
votes
3answers
775 views

Importing clojure functions from jars

I'm playing around with Clojure, and I can't figure out how to import a function from clojure-contrib.jar. Working from this answer, I'm doing the following: Running the REPL like so: java -cp ...
4
votes
1answer
584 views

Compojure + clojure.contrib.sql: SELECT query is being cached. Why?

I'm writing a Compojure TODO app and with MySQL as the primary data store. I'm using clojure.contrib.sql to interface with MySQL as follows: (def db {:classname "com.mysql.jdbc.Driver" ...
5
votes
1answer
1k views

How to install clojure-contrib on Windows?

I can't seem to find a way to launch the Clojure REPL with the contrib library included. If I understood the documentation correctly then this command should do it: ...
6
votes
1answer
2k views

Tips for Html parsing and web driving with clojure?

I want to automate filling in data on a website using clojure. For this I want to query elements of webpages and create http requests. I have been looking at using HttpUnit and ...
8
votes
2answers
1k views

Insertions into Zipper trees on XML files in Clojure

I'm confused as how to idiomatically change a xml tree accessed through clojure.contrib's zip-filter.xml. Should be trying to do this at all, or is there a better way? Say that I have some dummy xml ...
7
votes
1answer
767 views

How do I combine results from zip-filter queries on an xml tree in Clojure?

I want to combine the results of three zip-filter queries on an xml tree. The XML I am parsing looks like this: <someroot> <publication> <contributors> ...
4
votes
4answers
2k views

Compojure HTML Formatting

I'm relatively new to Clojure and a complete HTML/Compojure virgin. I'm trying to use Compojure to create static pages of HTML using a function similar to this: (defn fake-write-html [dir args] ...
2
votes
2answers
135 views

How can you “parameterize” Clojure Contrib's test-is?

Both Junit and TestNG provide mechanisms for iterating over a collection of input parameters and running your tests against them. In Junit this is supported via the Parameterized annotation, while ...
2
votes
3answers
303 views

If I'm making a mail system that manages large amounts of email would I be better off using james or Javamail

I'm trying to decide whether to use James(http://james.apache.org/) or Javamail(http://java.sun.com/products/javamail/) to build a email system that takes and processes email. It will send and recieve ...
67
votes
5answers
8k views

Building a Clojure app with a command-line interface?

I just started w/ Clojure (coming from Ruby) and I would like to build an small app with a command-line interface. How do I handle input/output to a CL? I noticed that there is a ...
53
votes
2answers
14k views

Clojure XML Parsing

I can not find any info on how to parse xml documents and access elements. I have found two ways to parse the xml document (clojure.zip/xml-zip (clojure.xml/parse file)) and (parse-seq file) ...
2
votes
1answer
198 views

how do i get rid of duplicate clojure test-is unit tests on the REPL

I have a little script (use :reload-all 'com.example.package1 'com.example.package2 'com.example.package3 'com.example.testlib) (run-tests 'com.example.package1 'com.example.package2 ...