all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob f0ebb56065222a8fa9616bc1ed7de748f30847ef 6204 bytes (raw)
name: doc/examples/_unknown.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
 
;; _unknown.scm -- An example for an `unknown' service.
;; Copyright (C) 2003 Wolfgang Jährling <wolfgang@pro-linux.de>
;;
;; This file is part of the GNU Shepherd.
;;
;; The GNU Shepherd is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3 of the License, or (at
;; your option) any later version.
;;
;; The GNU Shepherd is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.

;; Return true if STR1 lacks a character that exists in STR2, but
;; otherwise both are identical.
(define (lacks-char-from? str1 str2)
  (and (= (string-length str1)
          (+ (string-length str2) 1))
       (letrec ((next
                 (lambda (pos)
                   (and (not (= pos (string-length str1)))
                        (or (string=? str2
                                      (string-append
                                       (substring str1 0 pos)
                                       (substring str1
                                                  (+ pos 1)
                                                  (string-length str1))))
                            (next (+ pos 1)))))))
         (next 0))))

;; Return true if either of STR1 and STR2 lacks a character found in
;; the other one, but otherwise both are identical (e.g. as is the
;; case for "blah" and "bla").
(define (differs-by-missing-char? str1 str2)
  (or (lacks-char-from? str1 str2)
      (lacks-char-from? str2 str1)))

;; Return true if the only difference between STR1 and STR2 is that a
;; successive pair of characters is switched in one of them.
(define (differs-by-switched-chars? str1 str2)
  (and (= (string-length str1)
          (string-length str2))
       (> (string-length str1) 1)
       (letrec ((next
                 (lambda (pos)
                   (and (not (= pos (string-length str1)))
                        (or (string=? str2
                                      (string-append
                                       (substring str1 0 (- pos 1))
                                       (string (string-ref str1 pos)
                                               (string-ref str1 (- pos 1)))
                                       (substring str1
                                                  (+ pos 1)
                                                  (string-length str1))))
                            (next (+ pos 1)))))))
         (next 1))))

;; Return true if they differ by exactly one character (e.g. as is the
;; case for "blah" and "bleh"), if it isn't the only one.
(define (differs-by-one-char? str1 str2)
  (and (= (string-length str1)
          (string-length str2))
       (> (string-length str1) 1)
       (letrec ((next
                 (lambda (pos found-difference)
                   (if (= pos (string-length str1))
                       found-difference
                       (if (char=? (string-ref str1 pos)
                                   (string-ref str2 pos))
                           (next (+ pos 1) found-difference)
                           (and (not found-difference)
                                (next (+ pos 1) #t)))))))
         (next 0 #f))))

;; Return true if STR1 and STR2 are identical, except for case
;; (e.g. this gives true for "foobar" and "FooBAR").
(define (differs-only-in-case? str1 str2)
  (and (not (string=? str1 str2))
       (string-ci=? str1 str2)))

;; Return true if STR1 and STR2 are `similar' strings, meaning that
;; they only differ in a minor way.
(define (similar? str1 str2)
  (any (lambda (pred?)
         (pred? str1 str2))
       (list differs-by-missing-char?
             differs-by-switched-chars?
             differs-by-one-char?
             differs-only-in-case?)))

\f

;; TODO
;;  - We could look for non-running services first on `start' etc.
;;  - We also should do `unknown-action' (if service is known)
;;    - If doing this, we should enable the service to handle it
;;  - Make this the `default unknown service'
;;  - Messages if nothing found.

;; Suggest a service that satisfies PRED?, if given, and has a name
;; similar to SERVICE-SYMBOL.
(define look-for-service
  (case-lambda
    ((service-symbol) (look-for-service service-symbol (lambda (x) #t)))
    ((service-symbol pred?)
     (call/ec
      (lambda (return)
        (for-each-service
         (lambda (s)
           (and (pred? s)
                (similar? (symbol->string service-symbol)
                          (symbol->string (canonical-name s)))
                (begin
                  (format #t "Did you mean ~a maybe?" (canonical-name s))
                  (newline)
                  (return #t)))))
        #f)))))

;; The classical compose.
(define (compose f g)
  (lambda (x)
    (f (g x)))

  (define unknown-service
    (make <service>
      #:provides '(unknown)
      #:actions (make-actions
                 (start
                  "Called if user wants to start an unknown service."
                  (lambda (running service-sym . args)
                    (or (look-for-service service-sym (compose not running?))
                        (look-for-service service-sym))
                    running))
                 (stop
                  "Called if user wants to stop an unknown service."
                  (lambda (running service-sym . args)
                    (or (look-for-service service-sym running?)
                        (look-for-service service-sym))
                    running))
                 (action
                  "Called if user frobs an unknown service."
                  (lambda (running service-sym the-action . args)
                    (or (look-for-service service-sym running?)
                        (look-for-service service-sym))
                    running)))))

  (register-services unknown-service)
  (start unknown-service)

debug log:

solving fb639ab ...
found fb639ab in https://yhetil.org/guix/1453927534-32056-3-git-send-email-mthl@gnu.org/

applying [1/1] https://yhetil.org/guix/1453927534-32056-3-git-send-email-mthl@gnu.org/
diff --git a/doc/examples/_unknown.scm b/doc/examples/_unknown.scm
new file mode 100644
index 0000000..fb639ab

Checking patch doc/examples/_unknown.scm...
Applied patch doc/examples/_unknown.scm cleanly.

index at:
100644 f0ebb56065222a8fa9616bc1ed7de748f30847ef	doc/examples/_unknown.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.