aboutsummaryrefslogtreecommitdiff
path: root/module/entry-points/benchmark.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-05-09 22:19:01 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-05-09 22:19:01 +0200
commitf56daa40756cb4f356c283567de9cbc050bd86b1 (patch)
tree778a1bbada2a00acc854a85721f36618b6ce4f6b /module/entry-points/benchmark.scm
parentClean up util header. (diff)
parentAdd short commentary on difference between parse and parse/component. (diff)
downloadcalp-f56daa40756cb4f356c283567de9cbc050bd86b1.tar.gz
calp-f56daa40756cb4f356c283567de9cbc050bd86b1.tar.xz
Replace iCalendar parser.
The old iCalendar parser was a direct port of my C parser, which unfortunately clashed with guile's evaluation model, and was therefore really slow. This new one is much schemier [sic?], and therefore much faster. On my laptop the parse time went from around 10s to 2.5s, so a 4x speedup!
Diffstat (limited to 'module/entry-points/benchmark.scm')
-rw-r--r--module/entry-points/benchmark.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/entry-points/benchmark.scm b/module/entry-points/benchmark.scm
index 4843a80a..701d786b 100644
--- a/module/entry-points/benchmark.scm
+++ b/module/entry-points/benchmark.scm
@@ -3,15 +3,15 @@
:use-module (ice-9 getopt-long)
:use-module (util)
- :use-module (vcomponent)
+ :use-module (util app)
)
(define opt-spec
- '((file (value #t) (single-char #\f))))
+ '())
(define (main args)
(define opts (getopt-long args opt-spec))
- (cond [(option-ref opts 'file #f) => (compose load-calendars* list)]
- [else (load-calendars)]))
+ (write (getf 'calendars app: (current-app)))
+)