(library (sph config) (export config-clear! config-load config-loaders config-ref config-save config-savers config-set! primitive-config-ref primitive-config-set! sph-config-description sph-config-object) (import (guile) (sph filesystem) (sph hashtable) (sph io) (sph list) (sph number) (sph other) (sph process) (sph string) (sph vector) (sph) (sph tree) (only (rnrs base) set!)) (define sph-config-description "program configuration file management. deprecated writing is not completely implemented") (define (parse-config-file path) "string -> list" (tree-map-lists-and-self (compose ht-alist list->alist) (primitive-eval (list (q quasiquote) (file->datums path))))) (define sph-config-object (ht-create-symbol)) (define (config-load-default-get-path path name) "string/false string -> string create a configuration-file path. path + \"config/\" + name + \".scm\"" (string-append (if path (ensure-trailing-slash path) (string-append (ensure-trailing-slash (getcwd)) "config/")) name ".scm")) (define (config-save-default-get-path path name) "string string -> string" (string-append (string-drop-right (config-load-default-get-path path name) 4) ".runtime.scm")) (define (config-load-default name options) "string list:symbol-alist -> hashtable:config-object the default config-loader. loads config from a file either from a path given as an element in options like (symbol . string) or in a directory named \"config\" in the current working directory. the module-local \"config\" variable is updated." (let (path (config-load-default-get-path (alist-ref options (q path)) name)) (if (file-exists? path) (parse-config-file path) (raise (pair (q configuration-file-does-not-exist) path))))) (define (config-save-default config options) (call-with-output-file (config-save-default-get-path (alist-ref options (q path)) (ht-ref config (q name))) (l (port) (write (ht-alist config 32) port)))) (define-as config-loaders ht-create-symbol-q default config-load-default) (define-as config-savers ht-create-symbol-q default config-save-default) (define* (config-load #:optional name/config (loader-key (q default)) loader-options) "symbol/hashtable:name/config [alist] -> config-object successive calls to this procedure update the global configuration by merging. if name/config is a hashtable, the is is merged into the current \"config\" object, if name is a true value it is passed to a config loader selected by loader-key. the default config loader reads a \"flat-alist-tree\" from a file. if name/config is false, look for an environment variable sph-config-name and try to read a file $sph-config-name/default.scm" (if (ht? name/config) (ht-tree-merge! sph-config-object name/config) (let (name (or name/config (getenv "sph-config-name") "default")) (ht-tree-merge! sph-config-object ((ht-ref config-loaders loader-key) name loader-options)) (ht-set! sph-config-object (q config-name) name))) sph-config-object) (define* (config-save #:optional (saver-key (q default)) saver-options (config sph-config-object)) ((ht-ref config-savers saver-key) config saver-options)) (define (config-clear! name/config) (set! sph-config-object (ht-create-symbol))) (define-syntax-rule (primitive-config-set! symbol ... value) (ht-tree-set! sph-config-object symbol ... value)) (define-syntax-rule (primitive-config-ref symbol ...) (ht-tree-ref sph-config-object symbol ...)) (define-syntax-rule (config-set! unquoted-symbol ... value) (primitive-config-set! (q unquoted-symbol) ... value)) (define-syntax-rule (config-ref unquoted-symbol ...) (primitive-config-ref (q unquoted-symbol) ...)))