unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Simon Streit <simon@netpanic.org>
To: help-guix@gnu.org
Subject: Is the example about the serialiser in the manual correct? Was: Help on writing config serialiser
Date: Fri, 28 Jan 2022 14:13:01 +0100	[thread overview]
Message-ID: <yguczkcm2aq.fsf@netpanic.org> (raw)
In-Reply-To: <ygupmohglii.fsf@netpanic.org> (Simon Streit's message of "Mon, 24 Jan 2022 17:13:09 +0100")

Hello,

I gave up, and thought of starting from scratch.  But my initial attempt
failed right from the beginning.

I'm not so sure now if the example provided in the manual is usable in
its current state.  The following is a (slightly) unedited copy from the
manual:

--8<---------------cut here---------------start------------->8---
(use-modules (gnu services)
             (guix gexp)
             (gnu services configuration)
             (srfi srfi-26)
             (srfi srfi-1))

;; Turn field names, which are Scheme symbols into strings
(define (uglify-field-name field-name)
  (let ((str (symbol->string field-name)))
    ;; field? -> is-field
    (if (string-suffix? "?" str)
        (string-append "is-" (string-drop-right str 1))
      str)))

(define (serialize-string field-name value)
  #~(string-append #$(uglify-field-name field-name) " = " #$value "\n"))

(define (serialize-integer field-name value)
  (serialize-string field-name (number->string value)))

(define (serialize-boolean field-name value)
  (serialize-string field-name (if value "true" "false")))

(define (serialize-contact-name field-name value)
  #~(string-append "\n[" #$value "]\n"))

(define (list-of-contact-configurations? lst)
  (every contact-configuration? lst))

(define (serialize-list-of-contact-configurations field-name value)
  #~(string-append #$@(map (cut serialize-configuration <>
                                contact-configuration-fields)
                           value)))

(define (serialize-contacts-list-configuration configuration)
  (mixed-text-file
   "contactrc"
   #~(string-append "[Owner]\n"
                    #$(serialize-configuration
                       configuration contacts-list-configuration-fields))))

(define-maybe integer)
(define-maybe string)

(define-configuration contact-configuration
  (name
   (string)
   "The name of the contact."
   serialize-contact-name)
  (phone-number
   (maybe-integer 'disabled)
   "The person's phone number.")
  (email
   (maybe-string 'disabled)
   "The person's email address.")
  (married?
   (boolean)
   "Whether the person is married."))

(define-configuration contacts-list-configuration
  (name
   (string)
   "The name of the owner of this contact list.")
  (email
   (string)
   "The owner's email address.")
  (contacts
   (list-of-contact-configurations '())
   "A list of @code{contact-configuation} records which contain
     information about all your contacts."))

;; A contacts list configuration could then be created like this:

(define my-contacts
  (contacts-list-configuration
   (name "Alice")
   (email "alice@example.org")
   (contacts
    (list (contact-configuration
           (name "Bob")
           (phone-number 1234)
           (email "bob@gnu.org")
           (married? #f))
          (contact-configuration
           (name "Charlie")
           (phone-number 0000)
           (married? #t))))))
--8<---------------cut here---------------end--------------->8---


Evaluating it with will result:

--8<---------------cut here---------------start------------->8---
~ $ guile example.scm
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /home/ss2/example.scm
;;; compiled /home/ss2/.cache/guile/ccache/3.0-LE-8-4.5/home/ss2/example.scm.go
Backtrace:
In ice-9/boot-9.scm:
  1752:10  9 (with-exception-handler _ _ #:unwind? _ # _)
In unknown file:
           8 (apply-smob/0 #<thunk 7f3e06d30080>)
In ice-9/boot-9.scm:
    724:2  7 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
In ice-9/eval.scm:
    619:8  6 (_ #(#(#<directory (guile-user) 7f3e06d36c80>)))
In ice-9/boot-9.scm:
   2835:4  5 (save-module-excursion _)
  4380:12  4 (_)
In /home/ss2/example.scm:
     75:2  3 (_)
In srfi/srfi-1.scm:
    634:9  2 (for-each #<procedure 7f3e00139500 at gnu/services/con…> …)
In gnu/services/configuration.scm:
   121:24  1 (_ #<<configuration-field> name: contacts type: list-of…>)
In srfi/srfi-1.scm:
    241:2  0 (every _ _ . _)

srfi/srfi-1.scm:241:2: In procedure every:
In procedure every: Wrong type argument: #<syntax-transformer contact-configuration?>
--8<---------------cut here---------------end--------------->8---

Maybe something is wrong? 


Kind regards
Simon


      reply	other threads:[~2022-01-28 13:21 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-24 16:13 Help on writing config serialiser Simon Streit
2022-01-28 13:13 ` Simon Streit [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=yguczkcm2aq.fsf@netpanic.org \
    --to=simon@netpanic.org \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).