From d00fea566004e67161ee45246b239fff5d416b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 21 Dec 2021 16:17:28 +0100 Subject: Cleanup modules. Primarly this moves all vcompenent input and output code to clearly labeled modules, instead of being spread out. At the same time it also removes a handfull of unused procedures. --- module/vcomponent/util/parse-cal-path.scm | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 module/vcomponent/util/parse-cal-path.scm (limited to 'module/vcomponent/util/parse-cal-path.scm') diff --git a/module/vcomponent/util/parse-cal-path.scm b/module/vcomponent/util/parse-cal-path.scm new file mode 100644 index 00000000..94c0c6ed --- /dev/null +++ b/module/vcomponent/util/parse-cal-path.scm @@ -0,0 +1,35 @@ +(define-module (vcomponent util parse-cal-path) + :use-module (calp util) + :use-module ((calp util time) :select (report-time!)) + :use-module (vcomponent base) + :use-module ((vcomponent formats ical parse) + :select (parse-calendar)) + :use-module ((vcomponent formats vdir parse) + :select (parse-vdir))) + + +;; Parse a vdir or ics file at the given path. +(define-public (parse-cal-path path) + ;; TODO check (access? path R_OK) ? + (define st (stat path)) + (define cal + (case (stat:type st) + [(regular) + (let ((comp (call-with-input-file path parse-calendar))) + (set! (prop comp '-X-HNH-SOURCETYPE) 'file) + comp) ] + [(directory) + (report-time! "Parsing ~a" path) + (let ((comp (parse-vdir path))) + (set! (prop comp '-X-HNH-SOURCETYPE) 'vdir + (prop comp '-X-HNH-DIRECTORY) path) + comp)] + [(block-special char-special fifo socket unknown symlink) + => (lambda (t) (error "Can't parse file of type " t))])) + + (unless (prop cal "NAME") + (set! (prop cal "NAME") + (or (prop cal "X-WR-CALNAME") + (string-append "[" (basename path) "]")))) + + cal) -- cgit v1.2.3