Outdated egg!

This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for the CHICKEN 5 version of this egg, if it exists.

If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.

  1. Outdated egg!
  2. contracts
    1. Design by Contract
    2. Command-query-separation
    3. Implementation and use
      1. The case of procedures
      2. The case of macros
    4. Programming interface of module contract-helpers
      1. contract-helpers
      2. er-macro-rules
      3. ir-macro-rules
      4. bind
      5. bind-case
      6. doclist
      7. doclist->dispatcher
      8. print-doclist
    5. Programming interface of module contracts
      1. contracts
      2. contract
      3. define-with-contract
      4. define-syntax-with-contract
      5. define-macro-with-contract
  3. Usage
  4. Examples
  5. Author
  6. Initial version
  7. Updated
  8. License
  9. Version History

contracts

This egg is now obsolete. Use dbc instead

Design by Contract

"Design by contract" is a metaphor coined by Bertrand Meyer for his purely object oriented language Eiffel. The idea behind it is to separate the concerns of suppliers and clients of software modules: The client of a routine is responsible for calling it with correct arguments. The supplier can rely on it, she/he mustn't check it again. The supplier in turn is responsible for delivering correct results, provided the routine's arguments are valid. If not, the supplier needn't do any work at all.

In this metaphor a module is something like a contract between the supplier and the client of that module. But like a contract in social life, it's useless if not properly documented. Hence the "small print" of our module should be documented automatically, so that each party knows about each others duties ....

Command-query-separation

Another metaphor of Meyer's is "command-query-separation", where in Eiffel a command is working by side effect (it changes the object's state) and a query is a pure function (it reports the object's state without changing it). His advice is, never to do both in one routine, write two instead.

Implementation and use

This module is an attempt to bring Design by Contract to Chicken Scheme. In effect, it replaces define and define-syntax by new macros define-with-contract and define-syntax-with-contract respectively, where - in the long form - the lambda or syntax-rules expression is preceeded by a contract expression. A short form is available as well, where the call pattern of the procedure is followed by the contract clauses and the procedure's body.

To achieve automatic documentation, these two macros have to be wrapped by a call of the parameter

(doclist '())

initializing documentation and the definition

(define module-name (doclist->dispatcher (doclist)))

saving it in a dispatcher routine.

The case of procedures

For procedures a contract expression starts with the symbol contract and contains a list of clauses, where each clause is either

Note, that command-query-separation demands, that only one of a range: and an effect: clause are allowed.

The case of macros

For syntax-rules macros as well as ir-macro-rules and er-macro-rules macros the contract expression is simply a docstring. After all, those macro-transformers have domain checks already built-in in form of the pattern matching process, it needs only be automatically documented.

For raw low-level macros based on (er-|ir-)macro-transformer, it's a list starting with the macro code (name . rest) which will be matched against the macro's use and an optional documentation string.

Programming interface of module contract-helpers

contract-helpers

[procedure] (contract-helpers [sym])

prints the contract of the exported symbol sym of the contract-helpers module or the list of exported symbols when called as a thunk.

er-macro-rules

[syntax] (er-macro-rules (%sym ...) (code0 xpr0) (code1 xpr1) ...)

references a renamed version of sym ... under the name %sym ... and pairs the differnt macro-codes code0 code1 ... with expressions xpr0 xpr1 ..., which usually evalute to backquoted templates.

This macro is unhygienic by design, it introduces the symbol compare? into its scope.

ir-macro-rules

[syntax] (ir-macro-rules (sym ...) (code0 xpr0) (code1 xpr1) ...)

pairs the differnt macro-codes code0 code1 ... with expressions xpr0 xpr1 ..., which usually evalute to backquoted templates in the scope of injected symbols sym ....

This macro is unhygienic by design, it introduces the two symbols inject and compare? into its scope.

bind

[syntax] (bind pat xpr . body)

binds the pattern variables of the nested lambda-list pat to corresponding subexpressions of the nested pseudolist xpr and executes body in this context.

bind-case

[syntax] (bind-case xpr (pat0 . body0) (pat1 . body1) ...)

matches nested pseudolist-expression xpr against patterns pat0 pat1 ... in sequence, binding the variables of the first matching pattern to corresponding subexpressions of xpr and executes body of the first matching pattern in this context.

doclist

[parameter] (doclist '())

should be called before the first define[-syntax]-with-contract expression to initialize automatic documentation.

doclist->dispatcher

[procedure] (doclist->dispatcher (doclist))

saves (doclist) in a dispatcher. A typical use is

(define module-name (doclist->dispatcher (doclist)))

which should be called after the last define[-syntax]-with-contract expression to save the automatic documentation in module-name. This procedure can than be called by the module's client with or without a symbol argument.

(module-name [sym])

Without argument the call returns the list of exported symbols, with argument the call returns the textual representaion of the contract of the module's exported symbol sym.

[procedure] (print-doclist)

prints the documentation of the whole module in readable form.

Programming interface of module contracts

All exported symbols of contract-helpers are passed through, so that it's only necessary to import contracts.

contracts

[procedure] (contracts [sym])

prints the contract of the exported symbol sym of the contracts module or the list of exported symbols when called as a thunk.

contract

[syntax] (contract (name . args) clause ...)

where each clause is one of

define-with-contract

One of

[syntax] (define-with-contract name (contract (name . args) clause ...) (lambda args . body))
[syntax] (define-with-contract name (let ((var val) ...) (contract (name . args) clause ...) (lambda args . body)))
[syntax] (define-with-contract (name . args) clause ... . body)

where the admissible clauses are described above and instead of let another binding construct can be used as well.

define-syntax-with-contract

One of

[syntax] (define-syntax-with-contract name docstring rules)

where rules is one of

and docstring is optional,

[syntax] (define-syntax-with-contract name (syntax-contract (name . rest) docstring) transformer)

where docstring is optional and transformer is a raw low-level macro-transformer,

[syntax] (define-syntax-with-contract (name . rest) docstring with-expression)

where docstring is optional and with-expression is one of

which will be translated to syntax-rules, er-macro-rules or ir-macro-rules respectively.

define-macro-with-contract

[syntax] (define-macro-with-contract code docstring body))

where docstring is optional, code is the complete macro-code (name . args), i.e. the pattern of a macro call, and body is one of

 (with-renamed (%sym ...) xpr . xprs)
 (with-injected (sym ...) xpr . xprs)
 xpr . xprs

In the first case each %sym is a renamed version of sym, in the second sym is injected as is, i.e. not renamed, and in the last case no symbol is injected, i.e. the macro is hygienic.

Usage

(use contracts)
(import-for-syntax
  (only contacts er-macro-rules ir-macro-rules))

Examples


(use contracts)

(import-for-syntax
 (only contracts ir-macro-rules er-macro-rules))

;;; initialize documentation
(doclist '())

;;; a single datatype as an alternative to boxes

;; predicate
(define-with-contract (single? xpr)
   "check, if xpr evaluates to a single"
   (and (procedure? xpr)
        (condition-case (eq? 'single (xpr (lambda (a b c) a)))
          ((exn) #f))))

;; constructor
(define-with-contract (single xpr)
  "package the value of xpr into a single object"
  (domain: (true? xpr))
  (range: (single? result))
  (lambda (sel)
    (sel 'single xpr (lambda (new) (set! xpr new)))))

;; query
(define-with-contract (single-state sg)
  "returns the state of the single object sg"
  (domain: (single? sg))
  (range: (true? result))
  (sg (lambda (a b c) b)))

;; command
(define-with-contract (single-state! sg arg)
  "replaces state of sg with arg"
  (domain: (single? sg) (true? arg))
  (effect: (state (single-state sg) arg))
  ((sg (lambda (a b c) c)) arg))

;;; Euclid's integer division as an example for a
;;; function with two results

(define-with-contract (quotient+remainder m n)
  "integer division"
  (domain:
    (integer? m)
    (not (negative? m))
    (integer? n)
    (positive? n)
    (<= n m))
  (range:
    (with-results (q r)
      (integer? q)
      (integer? r)
      (= (+ (* q n) r) m)))
  (let loop ((q 0) (r m))
    (if (< r n)
      (values  q r)
      (loop (add1 q) (- r n)))))
 
;;; the same trivial freeze macro implemented in different styles

(define-syntax-with-contract (sefreeze xpr)
  "sefreeze"
  (with-renamed (%lambda) `(,%lambda () ,xpr)))

(define-syntax-with-contract (sifreeze xpr)
  "sifreeze"
  (with-injected () `(lambda () ,xpr)))

(define-syntax-with-contract (ssfreeze xpr)
  "ssfreeze"
  (literal () (lambda () xpr)))

(define-syntax-with-contract sfreeze
  "sfreeze"
  (syntax-rules ()
    ((_ xpr) (lambda () xpr))))

(define-syntax-with-contract ifreeze
  "ifreeze"
  (ir-macro-rules ()
    ((_ xpr) `(lambda () ,xpr))))

(define-syntax-with-contract efreeze
  "efreeze"
  (er-macro-rules (%lambda)
    ((_ xpr) `(,%lambda () ,xpr))))

(define-syntax-with-contract lifreeze
  (syntax-contract (lifreeze xpr) "lifreeze")
  (ir-macro-transformer
    (lambda (f i c) `(lambda () ,(cadr f)))))

(define-syntax-with-contract lefreeze
  (syntax-contract (lefreeze xpr) "lefreeze")
  (er-macro-transformer
    (lambda (f r c) `(,(r 'lambda) () ,(cadr f)))))

(define-syntax-with-contract lfreeze
  (syntax-contract (lfreeze xpr) "lfreeze")
  (lambda (f r c) `(,(r 'lambda) () ,(cadr f))))

;;; explicit- and implicit-renaming versions of or

(define-syntax-with-contract er-or
  "er-version of or"
  (er-macro-rules (%if %er-or)
    ((_) #f)
    ((_ arg . args)
     `(,%if ,arg ,arg (,%er-or ,@args)))))
  
(define-syntax-with-contract ir-or
  "ir-version of or"
  (ir-macro-rules ()
    ((_) #f)
    ((_ arg . args)
     `(if ,arg ,arg (ir-or ,@args)))))
  
(define-macro-with-contract (our-or . args)
  "a private version of or"
  (if (null? args)
    #f
    (let ((tmp (car args)))
      `(if ,tmp ,tmp (our-or ,@(cdr args))))))

(define-macro-with-contract (my-or . args)
  "a variant of or"
  (with-renamed (%if %my-or)
    (if (null? args)
      #f
      (let ((tmp (car args)))
        `(,%if ,tmp ,tmp (,%my-or ,@(cdr args)))))))

;; save documantation in dispatcher
(define docs (doclist->dispatcher (doclist)))

;; some binding-examples with results

(bind x 1 x)  ; -> 1

(bind (x (y (z . u) v) . w) '(1 (2 (3) 4) 5 6)
	(list x y z u v w)) ; -> (1 2 3 () 4 (5 6))

(bind (x (y (z . u) v) . w) '(1 (2 (3 . 3) 4) 5 6)
	(list x y z u v w)) ; -> (1 2 3 3 4 (5 6))

(bind-case '(1 (2 3))
	((x (y z)) (list x y z))
	((x (y . z)) (list x y z))
	((x y) (list x y))) ; -> (1 2 3)

(bind-case '(1 (2 3))
	((x (y . z)) (list x y z))
	((x y) (list x y))
	((x (y z)) (list x y z))) ; -> (1 2 (3))

(bind-case '(1 (2 3))
	((x y) (list x y))
	((x (y . z)) (list x y z))
	((x (y z)) (list x y z))) ; -> (1 (2 3))

(bind-case '(1 (2 . 3))
	((x (y . z)) (list x y z))
	((x (y z)) (list x y z))) ; -> (1 2 3)

(bind-case '(1 (2 . 3))
	((x y) (list x y))
	((x (y . z)) (list x y z))
	((x (y z)) (list x y z))) ; -> (1 (2 . 3))

Author

Juergen Lorenz

Initial version

Jun, 2011

Updated

May 18, 2012

License

Copyright (c) 2011, Juergen Lorenz
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Version History

2.0.5
egg now obsolete, use dbc instead
2.0.4
internal macro check-em corrected, message arguments in assert now strings
2.0
(er|ir)-macro-define-with-contract unified to define-macro-with-contract
1.9
with-aliases and matches? removed from interface, bind and bind-case rewritten
1.8
Code split into two modules, added matches? with-aliases er-macro-define-with-contract ir-macro-define-with-contract
1.7
Code fixed to work with new transformer syntax in Chicken-4.7.3, syntax-contract removed as separate macro but retained as literal symbol in define-syntax-with-contract, define-syntax-with-contract rewritten
1.6
bind and bind-case exported again: needed by ir-macros and er-macros
1.5
removed bind, bind-case rewritten but removed from interface
1.4
various chenges: removed unnecessary dependencies, removed bind-let* and matches? from interface, define-syntax-with-contract and bind rewritten, comments updated, ...
1.3
changed with-literal to literal
1.2
added bind bind-let* bind-case matches syntax-contract ir-macro-rules er-macro-rules, changed define-syntax-with-contract
1.1
(results: ...) made obsolete, use (with-results (name ...) . body) within (range: ...) instead
1.0
changed (effect: ...), removed (state: ...) (invariant: ...)
0.4
some enhancements
0.3
added print-doclist, fixed typo in setup script reported by mario
0.2
bugfixes
0.1
initial import