Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add add-profile task, which adds profiles to the default #868

Merged
merged 1 commit into from
Nov 26, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/PROFILES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- TODO update for with-profile +/- syntax -->
# Profiles

In Leiningen 2.x you can change the configuration of your project by
Expand Down
67 changes: 51 additions & 16 deletions src/leiningen/with_profile.clj
Original file line number Diff line number Diff line change
@@ -1,39 +1,74 @@
(ns leiningen.with-profile
(:require [leiningen.core.main :as main]
(:require [clojure.string :as string]
[leiningen.core.main :as main]
[leiningen.core.project :as project]
[robert.hooke :as hooke]))

(defn- with-profile*
(defn ^:internal with-profiles*
"Apply the given task with a comma-separated profile list."
[project profiles task-name & args]
[project profiles task-name args]
(hooke/with-scope
(let [profiles (map keyword (.split profiles ","))
project (and project (project/set-profiles project profiles))
(let [project (and project (project/set-profiles project profiles))
task-name (main/lookup-alias task-name project)]
(main/apply-task task-name project args))))

(defn profiles-in-group
[project profile-group]
(let [profiles (.split profile-group ",")
prefixes (map first profiles)]
(cond
(every? #{\+ \-} prefixes)
(reduce
(fn [result profile]
(if (= \+ (first profile))
(concat result [(keyword (subs profile 1))])
(remove #(= (keyword (subs profile 1)) %) result)))
(:active-profiles (meta project))
profiles)

(not-any? #{\+ \-} prefixes)
(map keyword profiles)

:else
(throw
(ex-info
"Profiles in with-profile must either all be qualified, or none qualified"
{:exit-code 1})))))

(defn ^:no-project-needed ^:higher-order with-profile
"Apply the given task with the profile(s) specified.

Comma-separated profiles may be given to merge profiles and perform the task.
Colon-separated profiles may be given for sequential profile task application.

A profile list may either be a list of profiles to use, or may specify the
profiles to add or remove from the active profile list using + or - prefixes.

For example:

lein with-profile user,dev test
lein with-profile -dev test
lein with-profile +1.4:+1.4,-dev:base,user test

To list all profiles or show a single one, see the show-profiles task.
For a detailed description of profiles, see `lein help profiles`."
[project profiles task-name & args]
(let [profile-groups (seq (.split profiles ":"))
failures (atom 0)]
(doseq [profile-group profile-groups]
(doseq [profiles (map (partial profiles-in-group project) profile-groups)]
(main/info (format "Performing task '%s' with profile(s): '%s'"
task-name (string/join "," (map name profiles))))
(binding [main/*exit-process?* false]
(main/info (format "Performing task '%s' with profile(s): '%s'"
task-name profile-group))
(try (apply with-profile* project profile-group task-name args)
(catch Exception e
(main/info (format "Error encountered performing task '%s' with profile(s): '%s'"
task-name profile-group))
(if (and (:exit-code (ex-data e)) (not main/*debug*))
(main/info (.getMessage e))
(.printStackTrace e))
(swap! failures inc)))))
(try
(with-profiles* project profiles task-name args)
(catch Exception e
(main/info
(format
"Error encountered performing task '%s' with profile(s): '%s'"
task-name (string/join "," (map name profiles))))
(if (and (:exit-code (ex-data e)) (not main/*debug*))
(main/info (.getMessage e))
(.printStackTrace e))
(swap! failures inc)))))
(when (pos? @failures)
(main/abort))))