2019-05-27 20:50:57 +00:00
|
|
|
#!/usr/bin/env janet
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
# CLI tool for building janet projects.
|
2019-05-27 20:50:57 +00:00
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
#
|
|
|
|
# Basic Path Settings
|
|
|
|
#
|
|
|
|
|
|
|
|
# Windows is the OS outlier
|
|
|
|
(def- is-win (= (os/which) :windows))
|
|
|
|
(def- is-mac (= (os/which) :macos))
|
|
|
|
(def- sep (if is-win "\\" "/"))
|
|
|
|
(def- objext (if is-win ".obj" ".o"))
|
|
|
|
(def- modext (if is-win ".dll" ".so"))
|
|
|
|
(def- statext (if is-win ".static.lib" ".a"))
|
|
|
|
(def- absprefix (if is-win "C:\\" "/"))
|
|
|
|
|
2020-05-09 15:22:46 +00:00
|
|
|
#
|
|
|
|
# Defaults
|
|
|
|
#
|
|
|
|
|
2020-06-14 19:09:32 +00:00
|
|
|
###START###
|
|
|
|
|
|
|
|
# Overriden on some installs.
|
2020-05-09 15:22:46 +00:00
|
|
|
(def- exe-dir
|
|
|
|
"Directory containing jpm script"
|
|
|
|
(do
|
|
|
|
(def exe (dyn :current-file))
|
|
|
|
(def i (last (string/find-all sep exe)))
|
|
|
|
(slice exe 0 i)))
|
|
|
|
|
2020-06-18 10:07:43 +00:00
|
|
|
(defn- install-paths []
|
2020-06-14 19:04:23 +00:00
|
|
|
{:headerpath (os/realpath (string exe-dir "/../include/janet"))
|
|
|
|
:libpath (os/realpath (string exe-dir "/../lib"))
|
|
|
|
:binpath exe-dir})
|
2020-06-14 19:09:32 +00:00
|
|
|
|
2020-06-14 19:04:23 +00:00
|
|
|
###END###
|
2020-05-09 15:22:46 +00:00
|
|
|
|
|
|
|
# Default based on janet binary location
|
|
|
|
(def JANET_HEADERPATH (or (os/getenv "JANET_HEADERPATH")
|
2020-06-18 10:07:43 +00:00
|
|
|
(get (install-paths) :headerpath)))
|
2020-05-09 15:22:46 +00:00
|
|
|
(def JANET_LIBPATH (or (os/getenv "JANET_LIBPATH")
|
2020-06-18 10:07:43 +00:00
|
|
|
(get (install-paths) :libpath)))
|
2020-05-10 00:02:12 +00:00
|
|
|
# We want setting JANET_PATH to contain installed binaries. However, it is convenient
|
|
|
|
# to have globally installed binaries got to the same place as jpm itself, which is on
|
|
|
|
# the $PATH.
|
2020-05-09 15:22:46 +00:00
|
|
|
(def JANET_BINPATH (or (os/getenv "JANET_BINPATH")
|
2020-05-10 00:02:12 +00:00
|
|
|
(if-let [mp (os/getenv "JANET_MODPATH")] (string mp "/bin"))
|
|
|
|
(if-let [mp (os/getenv "JANET_PATH")] (string mp "/bin"))
|
2020-06-18 10:07:43 +00:00
|
|
|
(get (install-paths) :binpath)))
|
2020-06-14 19:04:23 +00:00
|
|
|
|
|
|
|
# modpath should only be derived from the syspath being used or an environment variable.
|
|
|
|
(def JANET_MODPATH (or (os/getenv "JANET_MODPATH") (dyn :syspath)))
|
2020-05-09 15:22:46 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Utilities
|
|
|
|
#
|
|
|
|
|
|
|
|
(defn find-manifest-dir
|
|
|
|
"Get the path to the directory containing manifests for installed
|
|
|
|
packages."
|
|
|
|
[]
|
|
|
|
(string (dyn :modpath JANET_MODPATH) sep ".manifests"))
|
|
|
|
|
|
|
|
(defn find-manifest
|
|
|
|
"Get the full path of a manifest file given a package name."
|
|
|
|
[name]
|
|
|
|
(string (find-manifest-dir) sep name ".jdn"))
|
|
|
|
|
|
|
|
(defn find-cache
|
|
|
|
"Return the path to the global cache."
|
|
|
|
[]
|
|
|
|
(def path (dyn :modpath JANET_MODPATH))
|
|
|
|
(string path sep ".cache"))
|
|
|
|
|
|
|
|
(defn rm
|
|
|
|
"Remove a directory and all sub directories."
|
|
|
|
[path]
|
2020-06-15 15:43:18 +00:00
|
|
|
(case (os/lstat path :mode)
|
|
|
|
:directory (do
|
2020-05-09 15:22:46 +00:00
|
|
|
(each subpath (os/dir path)
|
|
|
|
(rm (string path sep subpath)))
|
|
|
|
(os/rmdir path))
|
2020-06-15 15:43:18 +00:00
|
|
|
nil nil # do nothing if file does not exist
|
|
|
|
# Default, try to remove
|
2020-05-09 15:22:46 +00:00
|
|
|
(os/rm path)))
|
|
|
|
|
|
|
|
(defn- rimraf
|
|
|
|
"Hard delete directory tree"
|
|
|
|
[path]
|
|
|
|
(if is-win
|
|
|
|
# windows get rid of read-only files
|
2020-06-15 15:43:18 +00:00
|
|
|
(when (os/stat path :mode)
|
|
|
|
(os/shell (string `rmdir /S /Q "` path `"`)))
|
2020-05-20 00:03:49 +00:00
|
|
|
(rm path)))
|
2020-05-09 15:22:46 +00:00
|
|
|
|
|
|
|
(defn clear-cache
|
|
|
|
"Clear the global git cache."
|
|
|
|
[]
|
|
|
|
(def cache (find-cache))
|
2020-05-19 23:20:09 +00:00
|
|
|
(print "clearing cache " cache "...")
|
2020-05-09 15:22:46 +00:00
|
|
|
(rimraf cache))
|
|
|
|
|
2020-05-19 23:20:09 +00:00
|
|
|
(defn clear-manifest
|
|
|
|
"Clear the global installation manifest."
|
|
|
|
[]
|
2020-05-19 23:21:30 +00:00
|
|
|
(def manifest (find-manifest-dir))
|
2020-05-19 23:20:09 +00:00
|
|
|
(print "clearing manifests " manifest "...")
|
|
|
|
(rimraf manifest))
|
|
|
|
|
2020-05-09 15:22:46 +00:00
|
|
|
(def- default-pkglist
|
|
|
|
(or (os/getenv "JANET_PKGLIST") "https://github.com/janet-lang/pkgs.git"))
|
|
|
|
|
|
|
|
(defn- pslurp
|
|
|
|
"Like slurp, but with file/popen instead file/open. Also trims output"
|
|
|
|
[cmd]
|
|
|
|
(string/trim (with [f (file/popen cmd)] (:read f :all))))
|
|
|
|
|
|
|
|
(def- path-splitter
|
|
|
|
"split paths on / and \\."
|
|
|
|
(peg/compile ~(any (* '(any (if-not (set `\/`) 1)) (+ (set `\/`) -1)))))
|
|
|
|
|
|
|
|
(defn create-dirs
|
|
|
|
"Create all directories needed for a file (mkdir -p)."
|
|
|
|
[dest]
|
|
|
|
(def segs (peg/match path-splitter dest))
|
|
|
|
(for i 1 (length segs)
|
|
|
|
(def path (string/join (slice segs 0 i) sep))
|
|
|
|
(unless (empty? path) (os/mkdir path))))
|
|
|
|
|
|
|
|
(def- filepath-replacer
|
|
|
|
"Convert url with potential bad characters into a file path element."
|
|
|
|
(peg/compile ~(% (any (+ (/ '(set "<>:\"/\\|?*") "_") '1)))))
|
|
|
|
|
|
|
|
(defn filepath-replace
|
|
|
|
"Remove special characters from a string or path
|
|
|
|
to make it into a path segment."
|
|
|
|
[repo]
|
|
|
|
(get (peg/match filepath-replacer repo) 0))
|
|
|
|
|
|
|
|
(defn shell
|
|
|
|
"Do a shell command"
|
|
|
|
[& args]
|
|
|
|
(if (dyn :verbose)
|
|
|
|
(print ;(interpose " " args)))
|
|
|
|
(def res (os/execute args :p))
|
|
|
|
(unless (zero? res)
|
|
|
|
(error (string "command exited with status " res))))
|
|
|
|
|
|
|
|
(defn copy
|
|
|
|
"Copy a file or directory recursively from one location to another."
|
|
|
|
[src dest]
|
|
|
|
(print "copying " src " to " dest "...")
|
|
|
|
(if is-win
|
|
|
|
(let [end (last (peg/match path-splitter src))
|
|
|
|
isdir (= (os/stat src :mode) :directory)]
|
2020-05-21 04:18:07 +00:00
|
|
|
(shell "C:\\Windows\\System32\\xcopy.exe"
|
|
|
|
(string/replace "/" "\\" src) (string/replace "/" "\\" (if isdir (string dest "\\" end) dest))
|
|
|
|
"/y" "/s" "/e" "/i"))
|
2020-05-09 15:22:46 +00:00
|
|
|
(shell "cp" "-rf" src dest)))
|
|
|
|
|
|
|
|
(defn mkdir
|
|
|
|
"Create a directory if it doesn't exist. If it does exist, do nothing.
|
|
|
|
If we can't create it, give a friendly error. Return true if created, false if
|
|
|
|
existing. Throw an error if we can't create it."
|
|
|
|
[dir]
|
|
|
|
(os/mkdir dir))
|
|
|
|
|
|
|
|
(defn- abspath
|
|
|
|
"Create an absolute path. Does not resolve . and .. (useful for
|
|
|
|
generating entries in install manifest file)."
|
|
|
|
[path]
|
|
|
|
(if (if is-win
|
|
|
|
(peg/match '(+ "\\" (* (range "AZ" "az") ":\\")) path)
|
|
|
|
(string/has-prefix? "/" path))
|
|
|
|
path
|
|
|
|
(string (os/cwd) sep path)))
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
#
|
|
|
|
# Rule Engine
|
|
|
|
#
|
|
|
|
|
|
|
|
(defn- getrules []
|
|
|
|
(if-let [rules (dyn :rules)] rules (setdyn :rules @{})))
|
|
|
|
|
|
|
|
(defn- gettarget [target]
|
|
|
|
(def item ((getrules) target))
|
|
|
|
(unless item (error (string "No rule for target " target)))
|
|
|
|
item)
|
|
|
|
|
2020-06-15 15:43:18 +00:00
|
|
|
(defn add-dep
|
|
|
|
"Add a dependency to an existing rule. Useful for extending phony
|
|
|
|
rules or extending the dependency graph of existing rules."
|
|
|
|
[target dep]
|
|
|
|
(def [deps] (gettarget target))
|
|
|
|
(unless (find |(= dep $) deps)
|
|
|
|
(array/push deps dep)))
|
|
|
|
|
|
|
|
(defn- add-thunk
|
|
|
|
[target more &opt phony]
|
|
|
|
(def item (gettarget target))
|
|
|
|
(def [_ thunks pthunks] item)
|
|
|
|
(array/push (if phony pthunks thunks) more)
|
|
|
|
item)
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
(defn- rule-impl
|
|
|
|
[target deps thunk &opt phony]
|
2020-06-15 15:43:18 +00:00
|
|
|
(def rules (getrules))
|
|
|
|
(unless (rules target) (put rules target @[(array/slice deps) @[] @[]]))
|
|
|
|
(each d deps (add-dep target d))
|
|
|
|
(add-thunk target thunk phony))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defmacro rule
|
|
|
|
"Add a rule to the rule graph."
|
|
|
|
[target deps & body]
|
2020-04-15 01:43:53 +00:00
|
|
|
~(,rule-impl ,target ,deps (fn [] ,;body)))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defmacro phony
|
|
|
|
"Add a phony rule to the rule graph. A phony rule will run every time
|
|
|
|
(it is always considered out of date). Phony rules are good for defining
|
|
|
|
user facing tasks."
|
|
|
|
[target deps & body]
|
|
|
|
~(,rule-impl ,target ,deps (fn [] nil ,;body) true))
|
|
|
|
|
2020-04-15 01:43:53 +00:00
|
|
|
(defmacro sh-rule
|
|
|
|
"Add a rule that invokes a shell command, and fails if the command returns non-zero."
|
|
|
|
[target deps & body]
|
|
|
|
~(,rule-impl ,target ,deps (fn [] (,assert (,zero? (,os/shell (,string ,;body)))))))
|
|
|
|
|
|
|
|
(defmacro sh-phony
|
|
|
|
"Add a phony rule that invokes a shell command, and fails if the command returns non-zero."
|
|
|
|
[target deps & body]
|
|
|
|
~(,rule-impl ,target ,deps (fn [] (,assert (,zero? (,os/shell (,string ,;body))))) true))
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
(defmacro add-body
|
|
|
|
"Add recipe code to an existing rule. This makes existing rules do more but
|
|
|
|
does not modify the dependency graph."
|
|
|
|
[target & body]
|
|
|
|
~(,add-thunk ,target (fn [] ,;body)))
|
|
|
|
|
|
|
|
(defn- needs-build
|
|
|
|
[dest src]
|
|
|
|
(let [mod-dest (os/stat dest :modified)
|
|
|
|
mod-src (os/stat src :modified)]
|
|
|
|
(< mod-dest mod-src)))
|
|
|
|
|
|
|
|
(defn- needs-build-some
|
|
|
|
[dest sources]
|
|
|
|
(def f (file/open dest))
|
|
|
|
(if (not f) (break true))
|
|
|
|
(file/close f)
|
|
|
|
(some (partial needs-build dest) sources))
|
|
|
|
|
|
|
|
(defn do-rule
|
|
|
|
"Evaluate a given rule."
|
|
|
|
[target]
|
|
|
|
(def item ((getrules) target))
|
|
|
|
(unless item
|
|
|
|
(if (os/stat target :mode)
|
|
|
|
(break target)
|
|
|
|
(error (string "No rule for file " target " found."))))
|
2020-01-14 02:49:00 +00:00
|
|
|
(def [deps thunks phony] item)
|
2019-08-29 01:54:31 +00:00
|
|
|
(def realdeps (seq [dep :in deps :let [x (do-rule dep)] :when x] x))
|
2020-06-15 15:43:18 +00:00
|
|
|
(each thunk phony (thunk))
|
|
|
|
(unless (empty? thunks)
|
|
|
|
(when (needs-build-some target realdeps)
|
|
|
|
(each thunk thunks (thunk))
|
|
|
|
target)))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Importing a file
|
|
|
|
#
|
|
|
|
|
|
|
|
(def- _env (fiber/getenv (fiber/current)))
|
|
|
|
|
|
|
|
(defn- proto-flatten
|
|
|
|
[into x]
|
|
|
|
(when x
|
|
|
|
(proto-flatten into (table/getproto x))
|
2020-04-16 17:11:17 +00:00
|
|
|
(merge-into into x))
|
2019-08-29 01:54:31 +00:00
|
|
|
into)
|
|
|
|
|
2020-04-16 17:11:17 +00:00
|
|
|
(defn make-jpm-env
|
|
|
|
"Build an environment table with jpm functions preloaded."
|
|
|
|
[&opt no-deps]
|
|
|
|
(def env (make-env))
|
|
|
|
(put env :jpm-no-deps no-deps)
|
|
|
|
(loop [k :keys _env :when (symbol? k)]
|
2020-05-05 14:21:50 +00:00
|
|
|
(unless ((_env k) :private) (put env k (_env k))))
|
2020-04-16 17:11:17 +00:00
|
|
|
env)
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn require-jpm
|
|
|
|
"Require a jpm file project file. This is different from a normal require
|
|
|
|
in that code is loaded in the jpm environment."
|
|
|
|
[path &opt no-deps]
|
2019-08-29 01:54:31 +00:00
|
|
|
(unless (os/stat path :mode)
|
|
|
|
(error (string "cannot open " path)))
|
2020-04-16 17:11:17 +00:00
|
|
|
(def env (make-jpm-env no-deps))
|
2019-08-29 01:54:31 +00:00
|
|
|
(def currenv (proto-flatten @{} (fiber/getenv (fiber/current))))
|
|
|
|
(loop [k :keys currenv :when (keyword? k)]
|
|
|
|
(put env k (currenv k)))
|
|
|
|
(dofile path :env env :exit true)
|
2020-04-04 00:32:50 +00:00
|
|
|
env)
|
|
|
|
|
|
|
|
(defn import-rules
|
|
|
|
"Import another file that defines more rules. This ruleset
|
|
|
|
is merged into the current ruleset."
|
|
|
|
[path &opt no-deps]
|
|
|
|
(def env (require-jpm path no-deps))
|
2020-03-26 00:44:30 +00:00
|
|
|
(when-let [rules (env :rules)] (merge-into (getrules) rules))
|
|
|
|
env)
|
2019-08-29 01:54:31 +00:00
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defmacro post-deps
|
|
|
|
"Run code at the top level if jpm dependencies are installed. Build
|
|
|
|
code that imports dependencies should be wrapped with this macro, as project.janet
|
|
|
|
needs to be able to run successfully even without dependencies installed."
|
|
|
|
[& body]
|
|
|
|
(unless (dyn :jpm-no-deps)
|
|
|
|
~',(reduce |(eval $1) nil body)))
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
#
|
2020-05-09 15:22:46 +00:00
|
|
|
# C Compilation
|
2019-08-29 01:54:31 +00:00
|
|
|
#
|
|
|
|
|
2020-05-09 15:22:46 +00:00
|
|
|
(def default-compiler (or (os/getenv "CC") (if is-win "cl.exe" "cc")))
|
|
|
|
(def default-linker (or (os/getenv "CC") (if is-win "link.exe" "cc")))
|
|
|
|
(def default-archiver (or (os/getenv "AR") (if is-win "lib.exe" "ar")))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
2020-05-09 15:22:46 +00:00
|
|
|
# Detect threads
|
|
|
|
(def env (fiber/getenv (fiber/current)))
|
|
|
|
(def threads? (not (not (env 'thread/new))))
|
|
|
|
(def- thread-flags
|
|
|
|
(if is-win []
|
|
|
|
(if threads? ["-lpthread"] [])))
|
2020-05-10 02:11:26 +00:00
|
|
|
|
2020-06-14 16:01:07 +00:00
|
|
|
# flags needed for the janet binary and compiling standalone
|
|
|
|
# executables.
|
2020-05-10 02:11:26 +00:00
|
|
|
(def janet-lflags
|
2020-05-09 15:22:46 +00:00
|
|
|
(case (os/which)
|
|
|
|
:macos ["-ldl" "-lm" ;thread-flags]
|
|
|
|
:windows [;thread-flags]
|
|
|
|
:linux ["-lm" "-ldl" "-lrt" ;thread-flags]
|
|
|
|
["-lm" ;thread-flags]))
|
2020-06-14 16:01:07 +00:00
|
|
|
(def janet-ldflags [])
|
|
|
|
(def janet-cflags [])
|
2019-08-29 01:54:31 +00:00
|
|
|
|
2020-05-10 02:11:26 +00:00
|
|
|
# Default flags for natives, but not required
|
2020-06-14 16:01:07 +00:00
|
|
|
# How can we better detect the need for -pthread?
|
|
|
|
# we probably want to better detect compiler
|
2020-05-10 02:11:26 +00:00
|
|
|
(def default-lflags (if is-win ["/nologo"] []))
|
|
|
|
(def default-cflags
|
|
|
|
(if is-win
|
|
|
|
["/nologo" "/MD"]
|
|
|
|
["-std=c99" "-Wall" "-Wextra"]))
|
2020-06-14 16:01:07 +00:00
|
|
|
(def default-ldflags [])
|
2020-05-10 02:11:26 +00:00
|
|
|
|
2020-05-09 15:22:46 +00:00
|
|
|
# Required flags for dynamic libraries. These
|
|
|
|
# are used no matter what for dynamic libraries.
|
|
|
|
(def- dynamic-cflags
|
2019-08-29 01:54:31 +00:00
|
|
|
(if is-win
|
2020-05-09 15:22:46 +00:00
|
|
|
["/LD"]
|
|
|
|
["-fPIC"]))
|
|
|
|
(def- dynamic-lflags
|
|
|
|
(if is-win
|
2020-06-14 16:01:07 +00:00
|
|
|
["/DLL"]
|
2020-05-09 15:22:46 +00:00
|
|
|
(if is-mac
|
|
|
|
["-shared" "-undefined" "dynamic_lookup" ;thread-flags]
|
|
|
|
["-shared" ;thread-flags])))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
2020-05-09 15:22:46 +00:00
|
|
|
(defn- opt
|
|
|
|
"Get an option, allowing overrides via dynamic bindings AND some
|
|
|
|
default value dflt if no dynamic binding is set."
|
|
|
|
[opts key dflt]
|
|
|
|
(def ret (or (opts key) (dyn key dflt)))
|
|
|
|
(if (= nil ret)
|
|
|
|
(error (string "option :" key " not set")))
|
|
|
|
ret)
|
2019-12-12 09:20:20 +00:00
|
|
|
|
2020-05-09 15:22:46 +00:00
|
|
|
(defn check-cc
|
|
|
|
"Ensure we have a c compiler."
|
|
|
|
[]
|
|
|
|
(if is-win
|
|
|
|
(do
|
|
|
|
(if (os/getenv "INCLUDE") (break))
|
|
|
|
(error "Run jpm inside a Developer Command Prompt.
|
|
|
|
jpm needs a c compiler to compile natives. You can install the MSVC compiler from
|
|
|
|
microsoft.com"))
|
|
|
|
(do)))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defn- embed-name
|
|
|
|
"Rename a janet symbol for embedding."
|
|
|
|
[path]
|
|
|
|
(->> path
|
2019-09-22 18:01:14 +00:00
|
|
|
(string/replace-all "\\" "___")
|
|
|
|
(string/replace-all "/" "___")
|
2019-08-29 01:54:31 +00:00
|
|
|
(string/replace-all ".janet" "")))
|
|
|
|
|
|
|
|
(defn- out-path
|
|
|
|
"Take a source file path and convert it to an output path."
|
|
|
|
[path from-ext to-ext]
|
|
|
|
(->> path
|
2019-09-22 17:19:02 +00:00
|
|
|
(string/replace-all "\\" "___")
|
|
|
|
(string/replace-all "/" "___")
|
2019-08-29 01:54:31 +00:00
|
|
|
(string/replace-all from-ext to-ext)
|
|
|
|
(string "build" sep)))
|
|
|
|
|
|
|
|
(defn- make-define
|
|
|
|
"Generate strings for adding custom defines to the compiler."
|
|
|
|
[define value]
|
|
|
|
(if value
|
2020-06-14 16:01:07 +00:00
|
|
|
(string "-D" define "=" value)
|
|
|
|
(string "-D" define)))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defn- make-defines
|
|
|
|
"Generate many defines. Takes a dictionary of defines. If a value is
|
|
|
|
true, generates -DNAME (/DNAME on windows), otherwise -DNAME=value."
|
|
|
|
[defines]
|
|
|
|
(seq [[d v] :pairs defines] (make-define d (if (not= v true) v))))
|
|
|
|
|
|
|
|
(defn- getcflags
|
|
|
|
"Generate the c flags from the input options."
|
|
|
|
[opts]
|
|
|
|
@[;(opt opts :cflags default-cflags)
|
2020-06-14 16:01:07 +00:00
|
|
|
(string "-I" (dyn :headerpath JANET_HEADERPATH))
|
|
|
|
(string "-O" (opt opts :optimize 2))])
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defn- entry-name
|
|
|
|
"Name of symbol that enters static compilation of a module."
|
|
|
|
[name]
|
|
|
|
(string "janet_module_entry_" (filepath-replace name)))
|
|
|
|
|
|
|
|
(defn- compile-c
|
|
|
|
"Compile a C file into an object file."
|
|
|
|
[opts src dest &opt static?]
|
|
|
|
(def cc (opt opts :compiler default-compiler))
|
|
|
|
(def cflags [;(getcflags opts) ;(if static? [] dynamic-cflags)])
|
|
|
|
(def entry-defines (if-let [n (opts :entry-name)]
|
|
|
|
[(make-define "JANET_ENTRY_NAME" n)]
|
|
|
|
[]))
|
|
|
|
(def defines [;(make-defines (opt opts :defines {})) ;entry-defines])
|
|
|
|
(def headers (or (opts :headers) []))
|
|
|
|
(rule dest [src ;headers]
|
|
|
|
(check-cc)
|
|
|
|
(print "compiling " dest "...")
|
2020-04-21 00:02:09 +00:00
|
|
|
(create-dirs dest)
|
2019-08-29 01:54:31 +00:00
|
|
|
(if is-win
|
|
|
|
(shell cc ;defines "/c" ;cflags (string "/Fo" dest) src)
|
|
|
|
(shell cc "-c" src ;defines ;cflags "-o" dest))))
|
|
|
|
|
|
|
|
(defn- libjanet
|
|
|
|
"Find libjanet.a (or libjanet.lib on windows) at compile time"
|
|
|
|
[]
|
|
|
|
(def libpath (dyn :libpath JANET_LIBPATH))
|
|
|
|
(unless libpath
|
|
|
|
(error "cannot find libpath: provide --libpath or JANET_LIBPATH"))
|
|
|
|
(string (dyn :libpath JANET_LIBPATH)
|
|
|
|
sep
|
|
|
|
(if is-win "libjanet.lib" "libjanet.a")))
|
|
|
|
|
|
|
|
(defn- win-import-library
|
|
|
|
"On windows, an import library is needed to link to a dll statically."
|
|
|
|
[]
|
|
|
|
(def hpath (dyn :headerpath JANET_HEADERPATH))
|
|
|
|
(unless hpath
|
|
|
|
(error "cannot find headerpath: provide --headerpath or JANET_HEADERPATH"))
|
|
|
|
(string hpath `\\janet.lib`))
|
|
|
|
|
|
|
|
(defn- link-c
|
|
|
|
"Link object files together to make a native module."
|
|
|
|
[opts target & objects]
|
2019-12-04 03:00:59 +00:00
|
|
|
(def linker (opt opts (if is-win :linker :compiler) default-linker))
|
2019-08-29 01:54:31 +00:00
|
|
|
(def cflags (getcflags opts))
|
|
|
|
(def lflags [;(opt opts :lflags default-lflags)
|
|
|
|
;(if (opts :static) [] dynamic-lflags)])
|
2020-05-10 02:11:26 +00:00
|
|
|
(def ldflags [;(opt opts :ldflags [])])
|
2019-08-29 01:54:31 +00:00
|
|
|
(rule target objects
|
|
|
|
(check-cc)
|
|
|
|
(print "linking " target "...")
|
2020-04-21 00:02:09 +00:00
|
|
|
(create-dirs target)
|
2019-08-29 01:54:31 +00:00
|
|
|
(if is-win
|
2020-05-10 02:11:26 +00:00
|
|
|
(shell linker ;ldflags (string "/OUT:" target) ;objects (win-import-library) ;lflags)
|
|
|
|
(shell linker ;cflags ;ldflags `-o` target ;objects ;lflags))))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defn- archive-c
|
|
|
|
"Link object files together to make a static library."
|
|
|
|
[opts target & objects]
|
|
|
|
(def ar (opt opts :archiver default-archiver))
|
|
|
|
(rule target objects
|
|
|
|
(check-cc)
|
|
|
|
(print "creating static library " target "...")
|
2020-04-21 00:02:09 +00:00
|
|
|
(create-dirs target)
|
2019-08-29 01:54:31 +00:00
|
|
|
(if is-win
|
|
|
|
(shell ar "/nologo" (string "/out:" target) ;objects)
|
|
|
|
(shell ar "rcs" target ;objects))))
|
|
|
|
|
|
|
|
(defn- create-buffer-c-impl
|
|
|
|
[bytes dest name]
|
2020-04-21 00:02:09 +00:00
|
|
|
(create-dirs dest)
|
2019-08-29 01:54:31 +00:00
|
|
|
(def out (file/open dest :w))
|
|
|
|
(def chunks (seq [b :in bytes] (string b)))
|
|
|
|
(file/write out
|
|
|
|
"#include <janet.h>\n"
|
|
|
|
"static const unsigned char bytes[] = {"
|
|
|
|
(string/join (interpose ", " chunks))
|
|
|
|
"};\n\n"
|
|
|
|
"const unsigned char *" name "_embed = bytes;\n"
|
|
|
|
"size_t " name "_embed_size = sizeof(bytes);\n")
|
|
|
|
(file/close out))
|
|
|
|
|
|
|
|
(defn- create-buffer-c
|
|
|
|
"Inline raw byte file as a c file."
|
|
|
|
[source dest name]
|
|
|
|
(rule dest [source]
|
|
|
|
(print "generating " dest "...")
|
2020-04-21 00:02:09 +00:00
|
|
|
(create-dirs dest)
|
2019-08-29 01:54:31 +00:00
|
|
|
(with [f (file/open source :r)]
|
|
|
|
(create-buffer-c-impl (:read f :all) dest name))))
|
|
|
|
|
|
|
|
(def- root-env (table/getproto (fiber/getenv (fiber/current))))
|
|
|
|
|
|
|
|
(defn- modpath-to-meta
|
|
|
|
"Get the meta file path (.meta.janet) corresponding to a native module path (.so)."
|
|
|
|
[path]
|
|
|
|
(string (string/slice path 0 (- (length modext))) "meta.janet"))
|
|
|
|
|
|
|
|
(defn- modpath-to-static
|
|
|
|
"Get the static library (.a) path corresponding to a native module path (.so)."
|
|
|
|
[path]
|
|
|
|
(string (string/slice path 0 (- -1 (length modext))) statext))
|
|
|
|
|
2020-04-26 17:14:43 +00:00
|
|
|
(defn- make-bin-source
|
|
|
|
[declarations lookup-into-invocations]
|
2020-05-01 02:35:22 +00:00
|
|
|
(string
|
2020-04-26 17:14:43 +00:00
|
|
|
declarations
|
|
|
|
```
|
|
|
|
|
2020-05-01 02:35:22 +00:00
|
|
|
int main(int argc, const char **argv) {
|
|
|
|
janet_init();
|
2020-04-26 17:14:43 +00:00
|
|
|
|
2020-05-01 02:35:22 +00:00
|
|
|
/* Get core env */
|
|
|
|
JanetTable *env = janet_core_env(NULL);
|
|
|
|
JanetTable *lookup = janet_env_lookup(env);
|
|
|
|
JanetTable *temptab;
|
|
|
|
int handle = janet_gclock();
|
2020-04-26 17:14:43 +00:00
|
|
|
|
2020-05-01 02:35:22 +00:00
|
|
|
/* Load natives into unmarshalling dictionary */
|
2020-04-26 17:14:43 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
lookup-into-invocations
|
|
|
|
```
|
2020-05-01 02:35:22 +00:00
|
|
|
/* Unmarshal bytecode */
|
|
|
|
Janet marsh_out = janet_unmarshal(
|
|
|
|
janet_payload_image_embed,
|
|
|
|
janet_payload_image_embed_size,
|
|
|
|
0,
|
|
|
|
lookup,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
/* Verify the marshalled object is a function */
|
|
|
|
if (!janet_checktype(marsh_out, JANET_FUNCTION)) {
|
|
|
|
fprintf(stderr, "invalid bytecode image - expected function.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
JanetFunction *jfunc = janet_unwrap_function(marsh_out);
|
|
|
|
|
|
|
|
/* Check arity */
|
|
|
|
janet_arity(argc, jfunc->def->min_arity, jfunc->def->max_arity);
|
|
|
|
|
|
|
|
/* Collect command line arguments */
|
|
|
|
JanetArray *args = janet_array(argc);
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
janet_array_push(args, janet_cstringv(argv[i]));
|
2020-04-26 17:14:43 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 02:35:22 +00:00
|
|
|
/* Create enviornment */
|
|
|
|
temptab = janet_table(0);
|
|
|
|
temptab = env;
|
|
|
|
janet_table_put(temptab, janet_ckeywordv("args"), janet_wrap_array(args));
|
|
|
|
janet_gcroot(janet_wrap_table(temptab));
|
|
|
|
|
|
|
|
/* Unlock GC */
|
|
|
|
janet_gcunlock(handle);
|
|
|
|
|
|
|
|
/* Run everything */
|
|
|
|
JanetFiber *fiber = janet_fiber(jfunc, 64, argc, argc ? args->data : NULL);
|
|
|
|
fiber->env = temptab;
|
|
|
|
Janet out;
|
|
|
|
JanetSignal result = janet_continue(fiber, janet_wrap_nil(), &out);
|
|
|
|
if (result != JANET_SIGNAL_OK && result != JANET_SIGNAL_EVENT) {
|
|
|
|
janet_stacktrace(fiber, out);
|
|
|
|
janet_deinit();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#ifdef JANET_NET
|
|
|
|
janet_loop();
|
|
|
|
#endif
|
|
|
|
janet_deinit();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
```))
|
2020-04-26 17:14:43 +00:00
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
(defn- create-executable
|
|
|
|
"Links an image with libjanet.a (or .lib) to produce an
|
|
|
|
executable. Also will try to link native modules into the
|
|
|
|
final executable as well."
|
|
|
|
[opts source dest]
|
|
|
|
|
|
|
|
# Create executable's janet image
|
|
|
|
(def cimage_dest (string dest ".c"))
|
2020-06-14 16:01:07 +00:00
|
|
|
(def no-compile (opts :no-compile))
|
|
|
|
(rule (if no-compile cimage_dest dest) [source]
|
2019-08-29 01:54:31 +00:00
|
|
|
(check-cc)
|
|
|
|
(print "generating executable c source...")
|
2020-04-21 00:02:09 +00:00
|
|
|
(create-dirs dest)
|
2019-08-29 01:54:31 +00:00
|
|
|
# Load entry environment and get main function.
|
|
|
|
(def entry-env (dofile source))
|
|
|
|
(def main ((entry-env 'main) :value))
|
2019-09-21 23:57:04 +00:00
|
|
|
(def dep-lflags @[])
|
2020-05-10 02:11:26 +00:00
|
|
|
(def dep-ldflags @[])
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
# Create marshalling dictionary
|
|
|
|
(def mdict (invert (env-lookup root-env)))
|
|
|
|
# Load all native modules
|
|
|
|
(def prefixes @{})
|
|
|
|
(def static-libs @[])
|
|
|
|
(loop [[name m] :pairs module/cache
|
|
|
|
:let [n (m :native)]
|
|
|
|
:when n
|
|
|
|
:let [prefix (gensym)]]
|
|
|
|
(print "found native " n "...")
|
|
|
|
(put prefixes prefix n)
|
|
|
|
(array/push static-libs (modpath-to-static n))
|
|
|
|
(def oldproto (table/getproto m))
|
|
|
|
(table/setproto m nil)
|
|
|
|
(loop [[sym value] :pairs (env-lookup m)]
|
|
|
|
(put mdict value (symbol prefix sym)))
|
|
|
|
(table/setproto m oldproto))
|
|
|
|
|
|
|
|
# Find static modules
|
|
|
|
(def declarations @"")
|
|
|
|
(def lookup-into-invocations @"")
|
|
|
|
(loop [[prefix name] :pairs prefixes]
|
|
|
|
(def meta (eval-string (slurp (modpath-to-meta name))))
|
|
|
|
(buffer/push-string lookup-into-invocations
|
|
|
|
" temptab = janet_table(0);\n"
|
|
|
|
" temptab->proto = env;\n"
|
|
|
|
" " (meta :static-entry) "(temptab);\n"
|
|
|
|
" janet_env_lookup_into(lookup, temptab, \""
|
|
|
|
prefix
|
|
|
|
"\", 0);\n\n")
|
2019-09-21 23:57:04 +00:00
|
|
|
(when-let [lfs (meta :lflags)]
|
2020-05-05 14:21:50 +00:00
|
|
|
(array/concat dep-lflags lfs))
|
2020-05-10 02:11:26 +00:00
|
|
|
(when-let [lfs (meta :ldflags)]
|
|
|
|
(array/concat dep-ldflags lfs))
|
2019-08-29 01:54:31 +00:00
|
|
|
(buffer/push-string declarations
|
|
|
|
"extern void "
|
|
|
|
(meta :static-entry)
|
|
|
|
"(JanetTable *);\n"))
|
|
|
|
|
|
|
|
# Build image
|
|
|
|
(def image (marshal main mdict))
|
|
|
|
# Make image byte buffer
|
|
|
|
(create-buffer-c-impl image cimage_dest "janet_payload_image")
|
|
|
|
# Append main function
|
2020-04-26 17:14:43 +00:00
|
|
|
(spit cimage_dest (make-bin-source declarations lookup-into-invocations) :ab)
|
|
|
|
# Compile and link final exectable
|
2020-06-14 16:01:07 +00:00
|
|
|
(unless no-compile
|
2020-04-26 17:14:43 +00:00
|
|
|
(def cc (opt opts :compiler default-compiler))
|
2020-06-14 16:01:07 +00:00
|
|
|
(def ldflags [;dep-ldflags ;(opt opts :ldflags []) ;janet-ldflags])
|
2020-05-10 02:11:26 +00:00
|
|
|
(def lflags [;static-libs (libjanet) ;dep-lflags ;(opt opts :lflags default-lflags) ;janet-lflags])
|
2020-06-14 16:01:07 +00:00
|
|
|
(def cflags [;(getcflags opts) ;janet-cflags])
|
2020-04-26 17:14:43 +00:00
|
|
|
(def defines (make-defines (opt opts :defines {})))
|
|
|
|
(print "compiling and linking " dest "...")
|
|
|
|
(if is-win
|
2020-05-10 02:11:26 +00:00
|
|
|
(shell cc ;cflags ;ldflags cimage_dest ;lflags `/link` (string "/OUT:" dest))
|
|
|
|
(shell cc ;cflags ;ldflags `-o` dest cimage_dest ;lflags)))))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
#
|
2020-05-09 15:22:46 +00:00
|
|
|
# Installation and Dependencies
|
2019-08-29 01:54:31 +00:00
|
|
|
#
|
|
|
|
|
2020-05-19 22:36:58 +00:00
|
|
|
(var- stored-git-path nil)
|
|
|
|
(defn- git-path
|
|
|
|
"Get the location of git such that it can be passed as an argument to os/execute."
|
|
|
|
"(Some builds/configurations of windows don't like just the string 'git')"
|
|
|
|
[]
|
|
|
|
(if stored-git-path (break stored-git-path))
|
|
|
|
(set stored-git-path
|
|
|
|
(if is-win
|
2020-07-21 18:40:23 +00:00
|
|
|
(or (os/getenv "JANET_GIT") (first (string/split "\n" (pslurp "where git"))))
|
2020-05-19 22:36:58 +00:00
|
|
|
(os/getenv "JANET_GIT" "git"))))
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
(defn uninstall
|
|
|
|
"Uninstall bundle named name"
|
|
|
|
[name]
|
|
|
|
(def manifest (find-manifest name))
|
2020-03-26 01:55:04 +00:00
|
|
|
(when-with [f (file/open manifest)]
|
|
|
|
(def man (parse (:read f :all)))
|
|
|
|
(each path (get man :paths [])
|
|
|
|
(print "removing " path)
|
|
|
|
(rm path))
|
2020-05-20 00:03:49 +00:00
|
|
|
(print "removing manifest " manifest)
|
|
|
|
(:close f) # I hate windows
|
2020-03-26 01:55:04 +00:00
|
|
|
(rm manifest)
|
|
|
|
(print "Uninstalled.")))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defn install-git
|
|
|
|
"Install a bundle from git. If the bundle is already installed, the bundle
|
2019-12-12 09:20:20 +00:00
|
|
|
is reinistalled (but not rebuilt if artifacts are cached)."
|
2020-03-26 00:44:30 +00:00
|
|
|
[repotab &opt recurse no-deps]
|
2019-08-30 23:23:13 +00:00
|
|
|
(def repo (if (string? repotab) repotab (repotab :repo)))
|
|
|
|
(def tag (unless (string? repotab) (repotab :tag)))
|
2019-12-12 09:20:20 +00:00
|
|
|
# prevent infinite recursion (very unlikely, but consider
|
2019-10-10 23:11:45 +00:00
|
|
|
# 'my-package "my-package" in the package listing)
|
|
|
|
(when (> (or recurse 0) 100)
|
|
|
|
(error "too many references resolving package url"))
|
|
|
|
# Handle short names
|
|
|
|
(unless (string/find ":" repo)
|
2019-12-12 09:20:20 +00:00
|
|
|
(def pkgs
|
2019-10-10 23:42:49 +00:00
|
|
|
(try (require "pkgs")
|
2020-05-05 14:21:50 +00:00
|
|
|
([err f]
|
|
|
|
(install-git (dyn :pkglist default-pkglist))
|
|
|
|
(require "pkgs"))))
|
2019-10-10 23:42:49 +00:00
|
|
|
(def next-repo (get-in pkgs ['packages :value (symbol repo)]))
|
|
|
|
(unless next-repo
|
|
|
|
(error (string "package " repo " not found.")))
|
|
|
|
(unless (or (string? next-repo) (dictionary? next-repo))
|
|
|
|
(error (string "expected string or table for repository, got " next-repo)))
|
|
|
|
(break (install-git next-repo (if recurse (inc recurse) 0))))
|
2019-08-29 01:54:31 +00:00
|
|
|
(def cache (find-cache))
|
2019-12-12 09:20:20 +00:00
|
|
|
(mkdir cache)
|
2019-08-29 01:54:31 +00:00
|
|
|
(def id (filepath-replace repo))
|
|
|
|
(def module-dir (string cache sep id))
|
2019-08-30 23:23:13 +00:00
|
|
|
(var fresh false)
|
2020-04-21 17:41:08 +00:00
|
|
|
(if (dyn :offline)
|
|
|
|
(if (not= :directory (os/stat module-dir :mode))
|
|
|
|
(error (string "did not find cached repo for dependency " repo))
|
|
|
|
(set fresh true))
|
|
|
|
(when (mkdir module-dir)
|
2020-05-05 14:21:50 +00:00
|
|
|
(set fresh true)
|
|
|
|
(print "cloning repository " repo " to " module-dir)
|
2020-05-19 23:20:09 +00:00
|
|
|
(unless (zero? (os/execute [(git-path) "clone" repo module-dir] :p))
|
2020-05-05 14:21:50 +00:00
|
|
|
(rimraf module-dir)
|
|
|
|
(error (string "could not clone git dependency " repo)))))
|
2019-08-29 01:54:31 +00:00
|
|
|
(def olddir (os/cwd))
|
2020-03-26 01:55:04 +00:00
|
|
|
(try
|
2019-09-01 16:08:39 +00:00
|
|
|
(with-dyns [:rules @{}
|
|
|
|
:modpath (abspath (dyn :modpath JANET_MODPATH))
|
|
|
|
:headerpath (abspath (dyn :headerpath JANET_HEADERPATH))
|
|
|
|
:libpath (abspath (dyn :libpath JANET_LIBPATH))
|
|
|
|
:binpath (abspath (dyn :binpath JANET_BINPATH))]
|
2020-03-26 01:55:04 +00:00
|
|
|
(os/cd module-dir)
|
2019-08-30 23:23:13 +00:00
|
|
|
(unless fresh
|
2020-06-15 15:43:18 +00:00
|
|
|
(os/execute [(git-path) "pull" "origin" "master" "--ff-only"] :p))
|
2019-08-30 23:23:13 +00:00
|
|
|
(when tag
|
2020-05-19 22:36:58 +00:00
|
|
|
(os/execute [(git-path) "reset" "--hard" tag] :p))
|
2020-04-21 17:41:08 +00:00
|
|
|
(unless (dyn :offline)
|
2020-05-19 22:36:58 +00:00
|
|
|
(os/execute [(git-path) "submodule" "update" "--init" "--recursive"] :p))
|
2020-06-30 01:51:38 +00:00
|
|
|
(import-rules "./project.janet" true)
|
2020-03-26 00:44:30 +00:00
|
|
|
(unless no-deps (do-rule "install-deps"))
|
2019-08-29 01:54:31 +00:00
|
|
|
(do-rule "build")
|
2020-03-26 01:55:04 +00:00
|
|
|
(do-rule "install"))
|
|
|
|
([err] (print "Error building git repository dependency: " err)))
|
|
|
|
(os/cd olddir))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defn install-rule
|
|
|
|
"Add install and uninstall rule for moving file from src into destdir."
|
|
|
|
[src destdir]
|
2019-09-22 18:01:14 +00:00
|
|
|
(def parts (peg/match path-splitter src))
|
2019-08-29 01:54:31 +00:00
|
|
|
(def name (last parts))
|
|
|
|
(def path (string destdir sep name))
|
|
|
|
(array/push (dyn :installed-files) path)
|
2020-06-15 15:43:18 +00:00
|
|
|
(phony "install" []
|
|
|
|
(mkdir destdir)
|
|
|
|
(copy src destdir)))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
2020-03-26 00:44:30 +00:00
|
|
|
(defn- make-lockfile
|
|
|
|
[&opt filename]
|
2020-04-23 09:53:36 +00:00
|
|
|
(default filename "lockfile.jdn")
|
2020-03-26 00:44:30 +00:00
|
|
|
(def cwd (os/cwd))
|
|
|
|
(def packages @[])
|
2020-03-26 01:55:04 +00:00
|
|
|
# Read installed modules from manifests
|
2020-03-26 05:12:18 +00:00
|
|
|
(def mdir (find-manifest-dir))
|
|
|
|
(each man (os/dir mdir)
|
|
|
|
(def package (parse (slurp (string mdir sep man))))
|
2020-03-27 17:45:40 +00:00
|
|
|
(if (and (dictionary? package) (package :repo) (package :sha))
|
|
|
|
(array/push packages package)
|
|
|
|
(print "Cannot add local or malformed package " mdir sep man " to lockfile, skipping...")))
|
2020-03-26 00:44:30 +00:00
|
|
|
# Put in correct order, such that a package is preceded by all of its dependencies
|
|
|
|
(def ordered-packages @[])
|
|
|
|
(def resolved @{})
|
|
|
|
(while (< (length ordered-packages) (length packages))
|
2020-03-26 05:34:34 +00:00
|
|
|
(var made-progress false)
|
2020-03-26 00:44:30 +00:00
|
|
|
(each p packages
|
2020-03-26 01:55:04 +00:00
|
|
|
(def {:repo r :sha s :dependencies d} p)
|
2020-03-26 05:34:34 +00:00
|
|
|
(def dep-urls (map |(if (string? $) $ ($ :repo)) d))
|
2020-03-26 00:44:30 +00:00
|
|
|
(unless (resolved r)
|
2020-03-26 05:34:34 +00:00
|
|
|
(when (all resolved dep-urls)
|
2020-04-16 23:44:21 +00:00
|
|
|
(array/push ordered-packages {:repo r :sha s})
|
2020-03-26 05:34:34 +00:00
|
|
|
(set made-progress true)
|
|
|
|
(put resolved r true))))
|
|
|
|
(unless made-progress
|
|
|
|
(error (string/format "could not resolve package order for: %j"
|
|
|
|
(filter (complement resolved) (map |($ :repo) packages))))))
|
2020-05-18 03:42:42 +00:00
|
|
|
# Write to file, manual format for better diffs.
|
|
|
|
(with [f (file/open filename :w)]
|
|
|
|
(with-dyns [:out f]
|
|
|
|
(prin "@[")
|
|
|
|
(eachk i ordered-packages
|
|
|
|
(unless (zero? i)
|
|
|
|
(prin "\n "))
|
|
|
|
(prinf "%j" (ordered-packages i)))
|
|
|
|
(print "]"))))
|
2020-03-26 00:44:30 +00:00
|
|
|
|
|
|
|
(defn- load-lockfile
|
|
|
|
[&opt filename]
|
2020-04-23 09:53:36 +00:00
|
|
|
(default filename "lockfile.jdn")
|
2020-03-26 01:55:04 +00:00
|
|
|
(def lockarray (parse (slurp filename)))
|
2020-03-26 00:44:30 +00:00
|
|
|
(each {:repo url :sha sha} lockarray
|
|
|
|
(install-git {:repo url :tag sha} nil true)))
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
#
|
|
|
|
# Declaring Artifacts - used in project.janet, targets specifically
|
|
|
|
# tailored for janet.
|
|
|
|
#
|
|
|
|
|
|
|
|
(defn declare-native
|
|
|
|
"Declare a native module. This is a shared library that can be loaded
|
|
|
|
dynamically by a janet runtime. This also builds a static libary that
|
|
|
|
can be used to bundle janet code and native into a single executable."
|
|
|
|
[&keys opts]
|
|
|
|
(def sources (opts :source))
|
|
|
|
(def name (opts :name))
|
|
|
|
(def path (dyn :modpath JANET_MODPATH))
|
|
|
|
|
|
|
|
# Make dynamic module
|
|
|
|
(def lname (string "build" sep name modext))
|
|
|
|
(loop [src :in sources]
|
|
|
|
(compile-c opts src (out-path src ".c" objext)))
|
|
|
|
(def objects (map (fn [path] (out-path path ".c" objext)) sources))
|
|
|
|
(when-let [embedded (opts :embedded)]
|
2020-05-05 14:21:50 +00:00
|
|
|
(loop [src :in embedded]
|
|
|
|
(def c-src (out-path src ".janet" ".janet.c"))
|
|
|
|
(def o-src (out-path src ".janet" (if is-win ".janet.obj" ".janet.o")))
|
|
|
|
(array/push objects o-src)
|
|
|
|
(create-buffer-c src c-src (embed-name src))
|
|
|
|
(compile-c opts c-src o-src)))
|
2019-08-29 01:54:31 +00:00
|
|
|
(link-c opts lname ;objects)
|
|
|
|
(add-dep "build" lname)
|
|
|
|
(install-rule lname path)
|
|
|
|
|
|
|
|
# Add meta file
|
|
|
|
(def metaname (modpath-to-meta lname))
|
|
|
|
(def ename (entry-name name))
|
|
|
|
(rule metaname []
|
|
|
|
(print "generating meta file " metaname "...")
|
|
|
|
(spit metaname (string/format
|
|
|
|
"# Metadata for static library %s\n\n%.20p"
|
|
|
|
(string name statext)
|
|
|
|
{:static-entry ename
|
2020-05-10 02:11:26 +00:00
|
|
|
:ldflags ~',(opts :ldflags)
|
2019-12-07 00:45:29 +00:00
|
|
|
:lflags ~',(opts :lflags)})))
|
2019-08-29 01:54:31 +00:00
|
|
|
(add-dep "build" metaname)
|
|
|
|
(install-rule metaname path)
|
|
|
|
|
|
|
|
# Make static module
|
|
|
|
(unless (dyn :nostatic)
|
|
|
|
(def sname (string "build" sep name statext))
|
|
|
|
(def opts (merge @{:entry-name ename} opts))
|
|
|
|
(def sobjext (string ".static" objext))
|
|
|
|
(def sjobjext (string ".janet" sobjext))
|
|
|
|
(loop [src :in sources]
|
|
|
|
(compile-c opts src (out-path src ".c" sobjext) true))
|
|
|
|
(def sobjects (map (fn [path] (out-path path ".c" sobjext)) sources))
|
|
|
|
(when-let [embedded (opts :embedded)]
|
2020-05-05 14:21:50 +00:00
|
|
|
(loop [src :in embedded]
|
|
|
|
(def c-src (out-path src ".janet" ".janet.c"))
|
|
|
|
(def o-src (out-path src ".janet" sjobjext))
|
|
|
|
(array/push sobjects o-src)
|
|
|
|
# Buffer c-src is already declared by dynamic module
|
|
|
|
(compile-c opts c-src o-src true)))
|
2019-08-29 01:54:31 +00:00
|
|
|
(archive-c opts sname ;sobjects)
|
|
|
|
(add-dep "build" sname)
|
|
|
|
(install-rule sname path)))
|
|
|
|
|
|
|
|
(defn declare-source
|
2020-05-12 14:16:45 +00:00
|
|
|
"Create Janet modules. This does not actually build the module(s),
|
|
|
|
but registers them for packaging and installation. :source should be an
|
|
|
|
array of files and directores to copy into JANET_MODPATH or JANET_PATH.
|
|
|
|
:prefix can optionally be given to modify the destination path to be
|
|
|
|
(string JANET_PATH prefix source)."
|
2020-05-12 13:46:26 +00:00
|
|
|
[&keys {:source sources :prefix prefix}]
|
|
|
|
(def path (string (dyn :modpath JANET_MODPATH) (or prefix "")))
|
2019-08-29 01:54:31 +00:00
|
|
|
(if (bytes? sources)
|
|
|
|
(install-rule sources path)
|
|
|
|
(each s sources
|
|
|
|
(install-rule s path))))
|
|
|
|
|
|
|
|
(defn declare-bin
|
|
|
|
"Declare a generic file to be installed as an executable."
|
|
|
|
[&keys {:main main}]
|
|
|
|
(install-rule main (dyn :binpath JANET_BINPATH)))
|
|
|
|
|
|
|
|
(defn declare-executable
|
|
|
|
"Declare a janet file to be the entry of a standalone executable program. The entry
|
|
|
|
file is evaluated and a main function is looked for in the entry file. This function
|
|
|
|
is marshalled into bytecode which is then embedded in a final executable for distribution.\n\n
|
|
|
|
This executable can be installed as well to the --binpath given."
|
2020-01-24 23:35:21 +00:00
|
|
|
[&keys {:install install :name name :entry entry :headers headers
|
2020-06-14 16:01:07 +00:00
|
|
|
:cflags cflags :lflags lflags :deps deps :ldflags ldflags
|
|
|
|
:no-compile no-compile}]
|
2019-08-29 01:54:31 +00:00
|
|
|
(def name (if is-win (string name ".exe") name))
|
|
|
|
(def dest (string "build" sep name))
|
2020-06-14 16:01:07 +00:00
|
|
|
(create-executable @{:cflags cflags :lflags lflags :ldflags ldflags :no-compile no-compile} entry dest)
|
|
|
|
(if no-compile
|
|
|
|
(let [cdest (string dest ".c")]
|
|
|
|
(add-dep "build" cdest))
|
|
|
|
(do
|
|
|
|
(add-dep "build" dest)
|
|
|
|
(when headers
|
|
|
|
(each h headers (add-dep dest h)))
|
|
|
|
(when deps
|
|
|
|
(each d deps (add-dep dest d)))
|
|
|
|
(when install
|
|
|
|
(install-rule dest (dyn :binpath JANET_BINPATH))))))
|
2019-08-29 01:54:31 +00:00
|
|
|
|
|
|
|
(defn declare-binscript
|
|
|
|
"Declare a janet file to be installed as an executable script. Creates
|
2020-05-17 14:29:45 +00:00
|
|
|
a shim on windows. If hardcode is true, will insert code into the script
|
|
|
|
such that it will run correctly even when JANET_PATH is changed."
|
|
|
|
[&keys {:main main :hardcode-syspath hardcode}]
|
2019-08-29 01:54:31 +00:00
|
|
|
(def binpath (dyn :binpath JANET_BINPATH))
|
2020-05-17 14:29:45 +00:00
|
|
|
(if hardcode
|
|
|
|
(let [syspath (dyn :modpath JANET_MODPATH)]
|
|
|
|
(def parts (peg/match path-splitter main))
|
|
|
|
(def name (last parts))
|
|
|
|
(def path (string binpath sep name))
|
|
|
|
(array/push (dyn :installed-files) path)
|
2020-06-15 15:43:18 +00:00
|
|
|
(phony "install" []
|
2020-05-17 14:29:45 +00:00
|
|
|
(def contents
|
|
|
|
(with [f (file/open main)]
|
|
|
|
(def first-line (:read f :line))
|
|
|
|
(def second-line (string/format "(put root-env :syspath %v)\n" syspath))
|
|
|
|
(def rest (:read f :all))
|
|
|
|
(string first-line second-line rest)))
|
|
|
|
(create-dirs path)
|
|
|
|
(spit path contents)
|
|
|
|
(unless is-win (shell "chmod" "+x" path))))
|
|
|
|
(install-rule main binpath))
|
2019-08-29 01:54:31 +00:00
|
|
|
# Create a dud batch file when on windows.
|
|
|
|
(when is-win
|
2019-09-22 18:01:14 +00:00
|
|
|
(def name (last (peg/match path-splitter main)))
|
2019-08-29 01:54:31 +00:00
|
|
|
(def fullname (string binpath sep name))
|
|
|
|
(def bat (string "@echo off\r\njanet \"" fullname "\" %*"))
|
|
|
|
(def newname (string binpath sep name ".bat"))
|
|
|
|
(array/push (dyn :installed-files) newname)
|
2020-06-15 15:43:18 +00:00
|
|
|
(phony "install" []
|
2019-08-29 01:54:31 +00:00
|
|
|
(spit newname bat))))
|
|
|
|
|
2020-04-20 23:32:25 +00:00
|
|
|
(defn- print-rule-tree
|
|
|
|
"Show dependencies for a given rule recursively in a nice tree."
|
|
|
|
[root depth prefix prefix-part]
|
2020-04-21 00:50:32 +00:00
|
|
|
(print prefix root)
|
|
|
|
(when-let [[root-deps] ((getrules) root)]
|
2020-04-20 23:32:25 +00:00
|
|
|
(when (pos? depth)
|
2020-04-21 00:50:32 +00:00
|
|
|
(def l (-> root-deps length dec))
|
2020-04-20 23:32:25 +00:00
|
|
|
(eachp [i d] (sorted root-deps)
|
|
|
|
(print-rule-tree
|
|
|
|
d (dec depth)
|
2020-05-05 14:21:50 +00:00
|
|
|
(string prefix-part (if (= i l) " └─" " ├─"))
|
|
|
|
(string prefix-part (if (= i l) " " " │ ")))))))
|
2020-04-20 23:32:25 +00:00
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
(defn declare-archive
|
|
|
|
"Build a janet archive. This is a file that bundles together many janet
|
|
|
|
scripts into a janet image. This file can the be moved to any machine with
|
|
|
|
a janet vm and the required dependencies and run there."
|
|
|
|
[&keys opts]
|
|
|
|
(def entry (opts :entry))
|
|
|
|
(def name (opts :name))
|
|
|
|
(def iname (string "build" sep name ".jimage"))
|
|
|
|
(rule iname (or (opts :deps) [])
|
2020-04-21 00:02:09 +00:00
|
|
|
(create-dirs iname)
|
2019-08-29 01:54:31 +00:00
|
|
|
(spit iname (make-image (require entry))))
|
|
|
|
(def path (dyn :modpath JANET_MODPATH))
|
|
|
|
(add-dep "build" iname)
|
|
|
|
(install-rule iname path))
|
|
|
|
|
|
|
|
(defn declare-project
|
|
|
|
"Define your project metadata. This should
|
|
|
|
be the first declaration in a project.janet file.
|
|
|
|
Also sets up basic phony targets like clean, build, test, etc."
|
|
|
|
[&keys meta]
|
|
|
|
(setdyn :project meta)
|
|
|
|
|
|
|
|
(def installed-files @[])
|
|
|
|
(def manifests (find-manifest-dir))
|
|
|
|
(def manifest (find-manifest (meta :name)))
|
|
|
|
(setdyn :manifest manifest)
|
|
|
|
(setdyn :manifest-dir manifests)
|
|
|
|
(setdyn :installed-files installed-files)
|
|
|
|
|
2020-04-21 00:02:09 +00:00
|
|
|
(phony "build" [])
|
2019-08-29 01:54:31 +00:00
|
|
|
|
2020-06-15 15:43:18 +00:00
|
|
|
(phony "manifest" [manifest])
|
|
|
|
(rule manifest []
|
2019-08-29 01:54:31 +00:00
|
|
|
(print "generating " manifest "...")
|
2019-12-12 09:20:20 +00:00
|
|
|
(mkdir manifests)
|
2020-05-19 22:36:58 +00:00
|
|
|
(def sha (pslurp (string "\"" (git-path) "\" rev-parse HEAD")))
|
2020-05-19 22:41:17 +00:00
|
|
|
(def url (pslurp (string "\"" (git-path) "\" remote get-url origin")))
|
2020-03-26 01:55:04 +00:00
|
|
|
(def man
|
|
|
|
{:sha (if-not (empty? sha) sha)
|
|
|
|
:repo (if-not (empty? url) url)
|
|
|
|
:dependencies (array/slice (get meta :dependencies []))
|
|
|
|
:paths installed-files})
|
|
|
|
(spit manifest (string/format "%j\n" man)))
|
2020-03-26 00:44:30 +00:00
|
|
|
|
2020-06-15 15:43:18 +00:00
|
|
|
(phony "install" ["uninstall" "build" manifest]
|
2019-11-09 16:03:56 +00:00
|
|
|
(when (dyn :test)
|
|
|
|
(do-rule "test"))
|
2019-08-29 01:54:31 +00:00
|
|
|
(print "Installed as '" (meta :name) "'."))
|
|
|
|
|
|
|
|
(phony "install-deps" []
|
|
|
|
(if-let [deps (meta :dependencies)]
|
|
|
|
(each dep deps
|
|
|
|
(install-git dep))
|
|
|
|
(print "no dependencies found")))
|
|
|
|
|
|
|
|
(phony "uninstall" []
|
|
|
|
(uninstall (meta :name)))
|
|
|
|
|
|
|
|
(phony "clean" []
|
|
|
|
(when (os/stat "./build" :mode)
|
|
|
|
(rm "build")
|
|
|
|
(print "Deleted build directory.")))
|
|
|
|
|
|
|
|
(phony "test" ["build"]
|
|
|
|
(defn dodir
|
|
|
|
[dir]
|
2019-09-15 00:39:14 +00:00
|
|
|
(each sub (sort (os/dir dir))
|
2019-08-29 01:54:31 +00:00
|
|
|
(def ndir (string dir sep sub))
|
|
|
|
(case (os/stat ndir :mode)
|
|
|
|
:file (when (string/has-suffix? ".janet" ndir)
|
|
|
|
(print "running " ndir " ...")
|
2019-09-16 05:47:54 +00:00
|
|
|
(def result (os/execute [(dyn :executable "janet") ndir] :p))
|
|
|
|
(when (not= 0 result)
|
|
|
|
(os/exit result)))
|
2019-08-29 01:54:31 +00:00
|
|
|
:directory (dodir ndir))))
|
|
|
|
(dodir "test")
|
|
|
|
(print "All tests passed.")))
|
|
|
|
|
|
|
|
#
|
|
|
|
# CLI
|
|
|
|
#
|
2019-05-27 20:50:57 +00:00
|
|
|
|
2019-05-28 02:14:24 +00:00
|
|
|
(def- argpeg
|
|
|
|
(peg/compile
|
2019-07-27 03:43:54 +00:00
|
|
|
'(* "--" '(some (if-not "=" 1)) (+ (* "=" '(any 1)) -1))))
|
2019-05-28 02:14:24 +00:00
|
|
|
|
2019-07-05 16:00:46 +00:00
|
|
|
(defn- local-rule
|
2020-04-04 00:32:50 +00:00
|
|
|
[rule &opt no-deps]
|
|
|
|
(import-rules "./project.janet" no-deps)
|
2019-08-29 01:54:31 +00:00
|
|
|
(do-rule rule))
|
2019-07-05 16:00:46 +00:00
|
|
|
|
2019-05-28 02:14:24 +00:00
|
|
|
(defn- help
|
2019-05-27 20:50:57 +00:00
|
|
|
[]
|
2019-05-28 02:14:24 +00:00
|
|
|
(print `
|
2019-07-27 03:43:54 +00:00
|
|
|
usage: jpm [--key=value, --flag] ... [subcommand] [args] ...
|
2019-07-05 16:00:46 +00:00
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
Run from a directory containing a project.janet file to perform operations
|
|
|
|
on a project, or from anywhere to do operations on the global module cache (modpath).
|
2020-06-27 16:23:47 +00:00
|
|
|
Commands that need write permission to the modpath are considered privileged commands - in
|
|
|
|
some environments they may require super user privileges.
|
|
|
|
Other project-level commands need to have a ./project.janet file in the current directory.
|
2019-08-29 01:54:31 +00:00
|
|
|
|
2020-06-27 16:23:47 +00:00
|
|
|
Unprivileged global subcommands:
|
2019-09-05 04:44:23 +00:00
|
|
|
help : show this help text
|
2020-06-27 16:23:47 +00:00
|
|
|
show-paths : prints the paths that will be used to install things.
|
|
|
|
quickbin entry executable : Create an executable from a janet script with a main function.
|
|
|
|
|
|
|
|
Privileged global subcommands:
|
2020-05-09 15:22:46 +00:00
|
|
|
install (repo or name)... : install artifacts. If a repo is given, install the contents of that
|
2019-07-05 16:00:46 +00:00
|
|
|
git repository, assuming that the repository is a jpm project. If not, build
|
|
|
|
and install the current project.
|
2020-05-09 15:22:46 +00:00
|
|
|
uninstall (module)... : uninstall a module. If no module is given, uninstall the module
|
2019-07-05 16:00:46 +00:00
|
|
|
defined by the current directory.
|
|
|
|
clear-cache : clear the git cache. Useful for updating dependencies.
|
2020-05-19 23:20:09 +00:00
|
|
|
clear-manifest : clear the manifest. Useful for fixing broken installs.
|
2020-03-26 00:44:30 +00:00
|
|
|
make-lockfile (lockfile) : Create a lockfile based on repositories in the cache. The
|
|
|
|
lockfile will record the exact versions of dependencies used to ensure a reproducible
|
|
|
|
build. Lockfiles are best used with applications, not libraries. The default lockfile
|
2020-04-23 09:53:36 +00:00
|
|
|
name is lockfile.jdn.
|
2020-03-26 00:44:30 +00:00
|
|
|
load-lockfile (lockfile) : Install modules from a lockfile in a reproducible way. The
|
2020-04-23 09:53:36 +00:00
|
|
|
default lockfile name is lockfile.jdn.
|
2020-06-27 16:23:47 +00:00
|
|
|
update-pkgs : Update the current package listing from the remote git repository selected.
|
|
|
|
|
|
|
|
Privileged project subcommands:
|
|
|
|
deps : install dependencies for the current project.
|
|
|
|
install : install artifacts of the current project.
|
|
|
|
uninstall : uninstall the current project's artifacts.
|
|
|
|
|
|
|
|
Unprivileged project subcommands:
|
|
|
|
build : build all artifacts
|
|
|
|
clean : remove any generated files or artifacts
|
|
|
|
test : run tests. Tests should be .janet files in the test/ directory relative to project.janet.
|
|
|
|
run rule : run a rule. Can also run custom rules added via (phony "task" [deps...] ...)
|
|
|
|
or (rule "ouput.file" [deps...] ...).
|
|
|
|
rules : list rules available with run.
|
2020-07-05 22:43:39 +00:00
|
|
|
list-installed : list installed packages in the current syspath.
|
|
|
|
list-pkgs (search) : list packages in the package listing that the contain the string search.
|
|
|
|
If no search pattern is given, prints the entire package listing.
|
2020-06-27 16:23:47 +00:00
|
|
|
rule-tree (root rule) (depth) : Print a nice tree to see what rules depend on other rules.
|
|
|
|
Optionally provide a root rule to start printing from, and a
|
|
|
|
max depth to print. Without these options, all rules will print
|
|
|
|
their full dependency tree.
|
2020-05-15 22:21:58 +00:00
|
|
|
debug-repl : Run a repl in the context of the current project.janet file. This lets you run rules and
|
|
|
|
otherwise debug the current project.janet file.
|
2019-05-28 02:14:24 +00:00
|
|
|
|
|
|
|
Keys are:
|
2019-08-29 01:54:31 +00:00
|
|
|
--modpath : The directory to install modules to. Defaults to $JANET_MODPATH, $JANET_PATH, or (dyn :syspath)
|
2019-07-27 03:43:54 +00:00
|
|
|
--headerpath : The directory containing janet headers. Defaults to $JANET_HEADERPATH.
|
2019-05-29 15:04:38 +00:00
|
|
|
--binpath : The directory to install binaries and scripts. Defaults to $JANET_BINPATH.
|
2019-07-27 03:43:54 +00:00
|
|
|
--libpath : The directory containing janet C libraries (libjanet.*). Defaults to $JANET_LIBPATH.
|
2019-12-04 03:00:59 +00:00
|
|
|
--compiler : C compiler to use for natives. Defaults to $CC or cc (cl.exe on windows).
|
|
|
|
--archiver : C compiler to use for static libraries. Defaults to $AR ar (lib.exe on windows).
|
|
|
|
--linker : C linker to use for linking natives. Defaults to link.exe on windows, not used on
|
|
|
|
other platforms.
|
2019-10-10 23:11:45 +00:00
|
|
|
--pkglist : URL of git repository for package listing. Defaults to $JANET_PKGLIST or https://github.com/janet-lang/pkgs.git
|
2019-07-27 03:43:54 +00:00
|
|
|
|
|
|
|
Flags are:
|
2020-04-04 00:32:50 +00:00
|
|
|
--nocolor : Disable color in the jpm repl.
|
2019-07-27 03:43:54 +00:00
|
|
|
--verbose : Print shell commands as they are executed.
|
2019-11-09 16:03:56 +00:00
|
|
|
--test : If passed to jpm install, runs tests before installing. Will run tests recursively on dependencies.
|
2020-04-21 17:41:08 +00:00
|
|
|
--offline : Prevents jpm from going to network to get dependencies - all dependencies should be in the cache or this command will fail.
|
2019-05-28 02:14:24 +00:00
|
|
|
`))
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn show-help
|
2019-09-05 04:44:23 +00:00
|
|
|
[]
|
|
|
|
(print help))
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn show-paths
|
2019-12-16 04:02:33 +00:00
|
|
|
[]
|
|
|
|
(print "binpath: " (dyn :binpath JANET_BINPATH))
|
|
|
|
(print "modpath: " (dyn :modpath JANET_MODPATH))
|
|
|
|
(print "libpath: " (dyn :libpath JANET_LIBPATH))
|
|
|
|
(print "headerpath: " (dyn :headerpath JANET_HEADERPATH))
|
|
|
|
(print "syspath: " (dyn :syspath)))
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn build
|
2019-07-05 16:00:46 +00:00
|
|
|
[]
|
|
|
|
(local-rule "build"))
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn clean
|
2019-07-05 16:00:46 +00:00
|
|
|
[]
|
|
|
|
(local-rule "clean"))
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn install
|
2020-05-09 15:22:46 +00:00
|
|
|
[& repo]
|
|
|
|
(if (empty? repo)
|
|
|
|
(local-rule "install")
|
|
|
|
(each rep repo (install-git rep))))
|
2019-07-05 16:00:46 +00:00
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn test
|
2019-07-05 16:00:46 +00:00
|
|
|
[]
|
|
|
|
(local-rule "test"))
|
|
|
|
|
2019-08-29 06:02:05 +00:00
|
|
|
(defn- uninstall-cmd
|
2020-05-09 15:22:46 +00:00
|
|
|
[& what]
|
|
|
|
(if (empty? what)
|
|
|
|
(local-rule "uninstall")
|
|
|
|
(each wha what (uninstall wha))))
|
2019-07-05 16:00:46 +00:00
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn deps
|
2019-07-05 16:00:46 +00:00
|
|
|
[]
|
2020-04-04 00:32:50 +00:00
|
|
|
(local-rule "install-deps" true))
|
2019-07-05 16:00:46 +00:00
|
|
|
|
2020-04-20 23:32:25 +00:00
|
|
|
(defn show-rule-tree
|
|
|
|
[&opt root depth]
|
2020-04-21 00:19:53 +00:00
|
|
|
(import-rules "./project.janet")
|
2020-04-20 23:32:25 +00:00
|
|
|
(def max-depth (if depth (scan-number depth) math/inf))
|
|
|
|
(if root
|
|
|
|
(print-rule-tree root max-depth "" "")
|
|
|
|
(let [ks (sort (seq [k :keys (dyn :rules)] k))]
|
|
|
|
(each k ks (print-rule-tree k max-depth "" "")))))
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn list-rules
|
|
|
|
[&opt ctx]
|
2020-06-30 01:51:38 +00:00
|
|
|
(import-rules "./project.janet")
|
2019-09-01 16:26:48 +00:00
|
|
|
(def ks (sort (seq [k :keys (dyn :rules)] k)))
|
|
|
|
(each k ks (print k)))
|
|
|
|
|
2020-07-05 22:43:39 +00:00
|
|
|
(defn list-installed
|
|
|
|
[]
|
2020-07-05 22:49:48 +00:00
|
|
|
(def xs
|
|
|
|
(seq [x :in (os/dir (find-manifest-dir))
|
|
|
|
:when (string/has-suffix? ".jdn" x)]
|
|
|
|
(string/slice x 0 -5)))
|
|
|
|
(sort xs)
|
|
|
|
(each x xs (print x)))
|
2020-07-05 22:43:39 +00:00
|
|
|
|
|
|
|
(defn list-pkgs
|
|
|
|
[&opt search]
|
2020-07-05 22:49:48 +00:00
|
|
|
(def [ok _] (module/find "pkgs"))
|
|
|
|
(unless ok
|
|
|
|
(eprint "no local package listing found. Run `jpm update-pkgs` to get listing.")
|
|
|
|
(os/exit 1))
|
2020-07-05 22:43:39 +00:00
|
|
|
(def pkgs-mod (require "pkgs"))
|
2020-07-05 22:49:48 +00:00
|
|
|
(def ps
|
|
|
|
(seq [p :keys (get-in pkgs-mod ['packages :value] [])
|
|
|
|
:when (if search (string/find search p) true)]
|
|
|
|
p))
|
|
|
|
(sort ps)
|
|
|
|
(each p ps (print p)))
|
2020-07-05 22:43:39 +00:00
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn update-pkgs
|
2019-10-10 23:42:49 +00:00
|
|
|
[]
|
|
|
|
(install-git (dyn :pkglist default-pkglist)))
|
|
|
|
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn quickbin
|
2019-10-30 01:33:18 +00:00
|
|
|
[input output]
|
|
|
|
(create-executable @{} input output)
|
|
|
|
(do-rule output))
|
|
|
|
|
2020-05-15 22:21:58 +00:00
|
|
|
(defn jpm-debug-repl
|
2020-04-04 00:32:50 +00:00
|
|
|
[]
|
2020-04-16 17:11:17 +00:00
|
|
|
(def env
|
|
|
|
(try
|
|
|
|
(require-jpm "./project.janet")
|
2020-05-05 14:21:50 +00:00
|
|
|
([err f]
|
|
|
|
(if (= "cannot open ./project.janet" err)
|
|
|
|
(put (make-jpm-env) :project {})
|
|
|
|
(propagate err f)))))
|
2020-04-04 00:32:50 +00:00
|
|
|
(setdyn :pretty-format (if-not (dyn :nocolor) "%.20Q" "%.20q"))
|
|
|
|
(setdyn :err-color (if-not (dyn :nocolor) true))
|
2020-04-16 17:11:17 +00:00
|
|
|
(def p (env :project))
|
|
|
|
(def name (p :name))
|
|
|
|
(if name (print "Project: " name))
|
|
|
|
(if-let [r (p :repo)] (print "Repository: " r))
|
|
|
|
(if-let [a (p :author)] (print "Author: " a))
|
2020-04-04 00:32:50 +00:00
|
|
|
(defn getchunk [buf p]
|
|
|
|
(def [line] (parser/where p))
|
2020-04-16 17:11:17 +00:00
|
|
|
(getline (string "jpm[" (or name "repl") "]:" line ":" (parser/state p :delimiters) "> ") buf env))
|
2020-04-04 00:32:50 +00:00
|
|
|
(repl getchunk nil env))
|
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
(def- subcommands
|
2019-07-05 16:00:46 +00:00
|
|
|
{"build" build
|
|
|
|
"clean" clean
|
2019-09-05 04:44:23 +00:00
|
|
|
"help" show-help
|
2019-07-05 16:00:46 +00:00
|
|
|
"install" install
|
|
|
|
"test" test
|
|
|
|
"help" help
|
|
|
|
"deps" deps
|
2020-05-15 22:21:58 +00:00
|
|
|
"debug-repl" jpm-debug-repl
|
2020-04-20 23:32:25 +00:00
|
|
|
"rule-tree" show-rule-tree
|
2019-12-16 04:02:33 +00:00
|
|
|
"show-paths" show-paths
|
2020-07-05 22:43:39 +00:00
|
|
|
"list-installed" list-installed
|
|
|
|
"list-pkgs" list-pkgs
|
2019-08-29 01:54:31 +00:00
|
|
|
"clear-cache" clear-cache
|
2020-05-19 23:20:09 +00:00
|
|
|
"clear-manifest" clear-manifest
|
2019-09-01 16:26:48 +00:00
|
|
|
"run" local-rule
|
|
|
|
"rules" list-rules
|
2019-10-10 23:42:49 +00:00
|
|
|
"update-pkgs" update-pkgs
|
2019-10-30 01:33:18 +00:00
|
|
|
"uninstall" uninstall-cmd
|
2020-03-26 00:44:30 +00:00
|
|
|
"make-lockfile" make-lockfile
|
|
|
|
"load-lockfile" load-lockfile
|
2019-10-30 01:33:18 +00:00
|
|
|
"quickbin" quickbin})
|
2019-07-05 16:00:46 +00:00
|
|
|
|
2019-08-29 01:54:31 +00:00
|
|
|
(def- args (tuple/slice (dyn :args) 1))
|
|
|
|
(def- len (length args))
|
|
|
|
(var i :private 0)
|
2019-07-05 16:00:46 +00:00
|
|
|
|
|
|
|
# Get flags
|
|
|
|
(while (< i len)
|
2019-07-27 03:43:54 +00:00
|
|
|
(if-let [m (peg/match argpeg (args i))]
|
|
|
|
(if (= 2 (length m))
|
|
|
|
(let [[key value] m]
|
|
|
|
(setdyn (keyword key) value))
|
|
|
|
(setdyn (keyword (m 0)) true))
|
|
|
|
(break))
|
2019-07-05 16:00:46 +00:00
|
|
|
(++ i))
|
|
|
|
|
|
|
|
# Run subcommand
|
|
|
|
(if (= i len)
|
|
|
|
(help)
|
|
|
|
(do
|
|
|
|
(if-let [com (subcommands (args i))]
|
|
|
|
(com ;(tuple/slice args (+ i 1)))
|
|
|
|
(do
|
|
|
|
(print "invalid command " (args i))
|
|
|
|
(help)))))
|