aboutsummaryrefslogtreecommitdiff
path: root/module/output/types.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-06-25 18:09:39 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-06-25 18:25:33 +0200
commit3cfa27e710514207a45919fd03a9ddba75b5c2fb (patch)
tree9cc342b1363da551a6993a8ba308802cd42fab54 /module/output/types.scm
parentMerge UTC-OFFSET and TIMESPEC into one. (diff)
downloadcalp-3cfa27e710514207a45919fd03a9ddba75b5c2fb.tar.gz
calp-3cfa27e710514207a45919fd03a9ddba75b5c2fb.tar.xz
ICS writer now handles types and parameters.
Diffstat (limited to 'module/output/types.scm')
-rw-r--r--module/output/types.scm103
1 files changed, 103 insertions, 0 deletions
diff --git a/module/output/types.scm b/module/output/types.scm
new file mode 100644
index 00000000..08ac878a
--- /dev/null
+++ b/module/output/types.scm
@@ -0,0 +1,103 @@
+;; see (vcomponent parse types)
+(define-module (output types)
+ :use-module (util)
+ :use-module (util exceptions)
+ :use-module (util base64)
+ :use-module (datetime)
+ :use-module (datetime util)
+ :use-module (rnrs io ports))
+
+
+(define (write-binary _ value)
+ (bytevector->string (bytevector->base64 value)
+ (make-transcoder (latin-1-codec))))
+
+(define (write-boolean _ value)
+ (if value "TRUE" "FALSE"))
+
+(define (write-date _ value)
+ (date->string value "~Y~m~d"))
+
+(define (write-datetime prop value)
+ (datetime->string (hashq-ref prop 'X-HNH-ORIGINAL value)
+ ;; TODO ~Z ?
+ "~Y~m~dT~H~M~S~Z"
+ #;
+ (let ((tz (and=> (prop vline 'TZID) car)))
+ (when (and tz (string= tz "UTC"))
+ (display #\Z)))))
+
+;; TODO
+(define (write-duration _ value)
+ (warning "DURATION writer not yet implemented")
+ (with-output-to-string
+ (lambda () (write value))))
+
+(define (write-float _ value)
+ (number->string value))
+
+(define (write-integer _ value)
+ (number->string value))
+
+;; TODO
+(define (write-period _ value)
+ (warning "PERIOD writer not yet implemented")
+ (with-output-to-string
+ (lambda () (write value))))
+
+(define (write-recur _ value)
+ ((@ (vcomponent recurrence internal)
+ recur-rule->rrule-string) value))
+
+(define (escape-chars str)
+ (define (escape char)
+ (string #\\ char))
+ (string-concatenate
+ (map (lambda (c)
+ (case c
+ ((#\newline) "\\n")
+ ((#\, #\; #\\) => escape)
+ (else => string)))
+ (string->list str))))
+
+(define (write-text _ value)
+ (escape-chars value))
+
+(define (write-time _ value)
+ (time->string value "~H~M~S"))
+
+(define (write-uri _ value)
+ value)
+
+
+(use-modules (datetime timespec))
+
+(define (write-utc-offset _ value)
+ (with-output-to-string
+ (lambda ()
+ (display (if (time-zero? (timespec-time value))
+ '+ (timespec-sign value)))
+ (display (time->string (timespec-time value) "~H~M"))
+ (when (not (zero? (second (timespec-time value))))
+ (display (time->string (timespec-time value) "~S"))))))
+
+
+(define type-writers (make-hash-table))
+(hashq-set! type-writers 'BINARY write-binary)
+(hashq-set! type-writers 'BOOLEAN write-boolean)
+(hashq-set! type-writers 'CAL-ADDRESS write-uri)
+(hashq-set! type-writers 'DATE write-date)
+(hashq-set! type-writers 'DATE-TIME write-datetime)
+(hashq-set! type-writers 'DURATION write-duration)
+(hashq-set! type-writers 'FLOAT write-float)
+(hashq-set! type-writers 'INTEGER write-integer)
+(hashq-set! type-writers 'PERIOD write-period)
+(hashq-set! type-writers 'RECUR write-recur)
+(hashq-set! type-writers 'TEXT write-text)
+(hashq-set! type-writers 'TIME write-time)
+(hashq-set! type-writers 'URI write-uri)
+(hashq-set! type-writers 'UTC-OFFSET write-utc-offset)
+
+(define-public (get-writer type)
+ (or (hashq-ref type-writers type #f)
+ (error "No writer for type" type)))