Fork me on GitHub
#babashka
<
2021-02-17
>
teodorlu09:02:21

Hello! On Clojure/JVM, I can evaluate clojure.lang.PersistentVector, and get a java class. On Babashka, I cannot. See attached error message. @beoliver and I could "just use symbols" instead. But I would like to ask why this behavior is different from clj to bb first. Any advice?

borkdude09:02:53

@teodorlu This is because not all classes are "mapped" into bb because this takes extra space. Most interfaces are available though, like clojure.lang.IPersistentVector

3
beoliver10:02:57

Hi - jumping in as @teodorlu mentioned… Good to know about the interfaces. the concrete example of the issue we are trying to solve is in porting the following pattern (The following is a simplified example)

beoliver10:02:25

we could re-write and use map? string? etc or use interfaces - but the ability to use sets of types makes the algorithm fairly clean :thinking_face:

borkdude10:02:53

Maybe you could implement this like (every? #(instance? clojure.lang.IPersistentMap %) ...) instead. This will avoid relying on concrete classes

borkdude10:02:14

Or you can make a function that translates your thing to a keyword based on a predicate

borkdude10:02:49

Or you can use hierarchies maybe as well (`isa?`, derive , etc)

beoliver10:02:55

👍 I think just using some predicates will work.

teodorlu10:02:22

> Or you can use hierarchies maybe as well (`isa?`, `derive` , etc) I think we should be able to get the same performance guarantees as we have right now with a custom hierarcy, and derive calls. Good idea. As ben says, we might just go for a simple solution, though. @borkdude thanks for the help!

borkdude10:02:27

I think I could support instance checks for the concrete classes as well in bb. You could post an issue for next time you need it

👍 6
beoliver10:02:14

the only reason for sets was to reduce the search space but chances are that every? will return quickly on error. for the other usecase we can rewrite it as

(defn partition-by-type [items]
  (let [key-fn (juxt number? string? boolean? vector? map?)]
    (vals (group-by key-fn items))))

> (partition-by-type [1 "2" 2 "3" true ])
([1 2] ["2" "3"] [true])

beoliver10:02:12

I really don’t think performance will be an issue 😉

✔️ 3
borkdude09:02:58

What are you trying to accomplish?

teodorlu09:02:09

Hoping @beoliver will jump in to explain here.

borkdude10:02:26

Both clojure.lang.IPersistentVector and clojure.lang.IPersistentMap are available for instance checks, protocols, etc

👍 3
heow13:02:00

In honor of @borkdude half-life, here is a single multifaceted form to celebrate:

#!/usr/bin/env bb

(require '[babashka.deps :as deps])
(deps/add-deps '{:deps {cljc.java-time/cljc.java-time {:mvn/version "0.1.12"}}})

(require  '[cljc.java-time.local-date :as ld])
(require  '[cljc.java-time.temporal.chrono-unit :as cu])

(let [min-bork "1981-02-08"
      max-bork (int (* 365.25 80.6)) ; NL male, round down
      all-bork 100] 
  (defn borkdays [] (cu/between cu/days (ld/parse min-bork) (ld/now)))
  (defn borkcal  []
    (format "Borkdude is %d days old, expiration in %d days. (%.2f%% remaining)" 
            (borkdays) 
            (- max-bork (borkdays))
            (double (- all-bork (* all-bork (/ (borkdays) max-bork)))) ))
  (println (borkcal)) )

😄 19
borkdude14:02:25

Thank you! :)

lukasz17:02:42

It's early days, but this is all of the boilerplate you need to deploy bb to lambda, as a docker image; https://gist.github.com/lukaszkorecki/a1fe27bf08f9b98e9def9da4bcb3264e - works in the emulator at least 😉 Once I got it all working down to deploying to AWS, I'll open source a sample repo along with Terraform manifests required to deploy this

🆒 18
🚀 21
heow18:02:55

Whats the best way to determine if a script is being executed vs say imported or REPLed? Use the file variable?

borkdude19:02:55

@heow we have one system property (System/getProperty "babashka.file") which contains the name of the file that is being executed

borkdude19:02:12

if you call it with bb foo.clj (or using a shebang)

👍 3