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 Morse (Telegram API) sample project #68

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
14 changes: 14 additions & 0 deletions morse/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/target
/classes
/checkouts
profiles.clj
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
.hgignore
.hg/
/.idea/
/sample-project.iml
26 changes: 26 additions & 0 deletions morse/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# AMD64
FROM ghcr.io/graalvm/native-image:22.3.3@sha256:45af9f40460aba188d27ff3ce9ef56765965af8f6fbcb4c672d7897f2d4b5775
# ARM64
#FROM ghcr.io/graalvm/native-image:22.3.3@sha256:48837ac77ec827dbb76a8fc8c2e82806f180bb68de9039df3af0b5f335c5a7ad

# install leiningen
RUN curl -o /usr/local/bin/lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
RUN chmod a+x /usr/local/bin/lein

# create working directory
RUN mkdir native
WORKDIR /native

# copy project files
COPY . /native

# build uberjar
RUN lein do clean, uberjar

# create native image
RUN lein native

# run normal
RUN lein run
# run native
RUN lein run-native
20 changes: 20 additions & 0 deletions morse/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Sample-project

Use this project as template for testing a specific library with GraalVM **native-image**

## Usage

Currently testing:

[add.your/library-here "0.1.0]

Test with (requires a local GraalVM installation):

lein do clean, uberjar, native, run-native

alternatively use a Dockerized versions:

docker build --progress=plain -t graalvm-test .


Add any info might be useful for the reader.
32 changes: 32 additions & 0 deletions morse/project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
(defproject sample-project "0.1.0-SNAPSHOT"

:dependencies [[org.clojure/clojure "1.12.0"]
[morse "0.4.3"]
[com.github.clj-easy/graal-build-time "1.0.5"]]

:main simple.main

:uberjar-name "simple-main.jar"

:profiles {:uberjar {:aot :all}
:dev {:plugins [[lein-shell "0.5.0"]]}}

:aliases
{"native"
["shell"
"native-image"
"-Ob"
"-H:+TraceNativeToolUsage"
"-H:+AllowIncompleteClasspath"
"--verbose"
"--no-fallback"
"--report-unsupported-elements-at-runtime"
"--trace-object-instantiation=java.lang.Thread"

;; add here the namespaces of the library to test separated by commas
"--initialize-at-build-time"
"--features=clj_easy.graal_build_time.InitClojureClasses"
"-jar" "./target/${:uberjar-name:-${:name}-${:version}-standalone.jar}"
"-H:Name=./target/${:name}"]

"run-native" ["shell" "./target/${:name}" "start"]})
29 changes: 29 additions & 0 deletions morse/src/simple/main.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
(ns simple.main
(:require [morse.handlers :as h]
[morse.api :as t]
[morse.polling :as p]
[clojure.core.async :refer [<!!]])
(:gen-class))

(def token "7396862872:AAFAk8py-CbQJIY24na1Ar3cs-5NGKKyiAE")

; This will define bot-api function, which later could be
; used to start your bot
(h/defhandler bot-api

(h/command-fn "start" (fn [{{id :id :as chat} :chat}]
(println "Bot joined new chat: " chat)
(t/send-text token id "Welcome!")))

; You can use short syntax for same purposes
; Destructuring works same way as in function above
(h/command "help" {{id :id :as chat} :chat}
(println "Help was requested in " chat)
(t/send-text token id "Help is on the way"))

; So match-all catch-through case would look something like this:
(h/message message (println "Intercepted message:" message)))

(defn -main [& args]
(println "Starting the mybot")
(<!! (p/start token bot-api)))