breezewiki/src/config.rkt

56 lines
1.4 KiB
Racket
Raw Normal View History

#lang racket/base
2022-08-30 10:13:26 +00:00
(require racket/pretty
racket/runtime-path
2022-08-24 08:59:11 +00:00
ini)
(provide
2022-08-24 08:59:11 +00:00
config-true?
config-get)
2022-08-24 08:59:11 +00:00
(define-runtime-path path-config "../config.ini")
(define (config-true? key)
(not (member (hash-ref config key) '("" "false"))))
(define (config-get key)
(hash-ref config key))
(define default-config
2022-08-24 08:59:11 +00:00
'((port . "10416")
(debug . "false")
(instance-is-official . "false") ; please don't turn this on, or you will make me very upset
(application-name . "BreezeWiki")))
(define config
(make-hasheq
(append
default-config
(with-handlers
([exn:fail:filesystem:errno?
(λ (exn)
(begin0
'()
(displayln "note: config file not detected, using defaults")))]
[exn:fail:contract?
(λ (exn)
(begin0
'()
(displayln "note: config file empty or missing [] section, using defaults")))])
(define l
(hash->list
(hash-ref
(ini->hash
(call-with-input-file path-config
(λ (in)
(read-ini in))))
'||)))
(begin0
l
(printf "note: ~a items loaded from config file~n" (length l)))))))
2022-08-24 08:59:11 +00:00
(when (config-true? 'debug)
2022-08-30 12:45:37 +00:00
; all values here are optimised for maximum prettiness
2022-08-30 10:13:26 +00:00
(parameterize ([pretty-print-columns 80])
(display "config: ")
(pretty-write (hash->list config))))