breezewiki/src/config.rkt

70 lines
1.7 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
config-parameter
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-parameter key)
(hash-ref config key))
2022-08-24 08:59:11 +00:00
(define (config-true? key)
(not (member ((config-parameter key)) '("" "false"))))
(define (config-get key)
((config-parameter key)))
(define default-config
'((application_name . "BreezeWiki")
(canonical_origin . "")
2022-08-24 08:59:11 +00:00
(debug . "false")
(instance_is_official . "false") ; please don't turn this on, or you will make me very upset
(port . "10416")
(strict_proxy . "true")))
(define loaded-alist
(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)))))
(define combined-alist (append default-config loaded-alist))
(define config
(make-hasheq
(map (λ (pair)
(cons (car pair) (make-parameter (cdr pair))))
combined-alist)))
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 (sort
(hash->list (make-hasheq combined-alist))
symbol<?
#:key car))))