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.

srfi-29

  1. Outdated egg!
  2. srfi-29
  3. Documentation
    1. Conditions
      1. undefined-condition?
      2. unbound-variable-condition?
    2. Parameters
      1. current-language
      2. current-country
      3. current-locale-details
      4. current-locale-format-function
      5. reset-locale-parameters
    3. Bundle Operations
      1. declare-bundle!
      2. undeclare-bundle!
    4. Bundle Database Operations
      1. system-bundle-directory
      2. store-bundle!
      3. load-bundle!
      4. load-best-available-bundle!
      5. remove-bundle!
      6. remove-bundle-directory!
      7. declared-bundle-specifiers
      8. declared-bundle-templates
      9. most-specific-bundle-specifier
    5. Bundle Template Operations
      1. required-localized-template
      2. localized-template
      3. localized-template/default
      4. make-localized-template
      5. make-localized-template/default
      6. make-required-localized-template
      7. localized-format
      8. localized-template-set!
      9. localized-templates
      10. load-localized-compiled-code
    6. Exceptions
    7. Thread Local Storage
  4. Usage
  5. Notes
  6. Requirements
  7. Bugs and Limitations
  8. Author
  9. Version history
  10. License

Documentation

A Chicken implementation of SRFI 29.

The addition of the escape code ~[n]@* to the SRFI 28 format is not part of this extension.

Conditions

undefined-condition?

[procedure] (undefined-condition? OBJECT) -> boolean

Is the OBJECT an instance of the SRFI 29 undefined-condition.

A composite-property-condition of (exn srfi-29 undefined).

unbound-variable-condition?

[procedure] (unbound-variable-condition? OBJECT) -> boolean

Is the OBJECT an instance of the SRFI 29 unbound-variable-condition.

A composite-property-condition of (exn srfi-29 unbound).

Parameters

current-language

[parameter] (current-language [LANGUAGE]) -> symbol

Gets or sets the LANGUAGE symbol.

current-country

[parameter] (current-country [COUNTRY]) -> symbol

Gets or sets the COUNTRY symbol.

current-locale-details

[parameter] (current-locale-details [LOCALE-DETAILS]) -> list

Gets or sets the LOCALE-DETAILS list.

current-locale-format-function

[parameter] (current-locale-format-function [FORMAT-PROCEDURE]) -> procedure

Gets or sets the FORMAT-PROCEDURE.

This procedure must at least have the signature of a SRFI 28 format procedure. The default is the Chicken extras#format procedure.

reset-locale-parameters

[procedure] (reset-locale-parameters)

When the current-locale is changed (see the locale egg) the current-* parameters need not be set individually. This will update those parameters to the values in the new locale.

Reset as in set anew.

Bundle Operations

So (cons 'template-example 'value-example) is legal, whereas (list 'template-example 'value-example) is not. The form (list 'template-example 'value-example) will have the value (list 'value-example), and not 'value-example, as expected.

declare-bundle!

[procedure] (declare-bundle! BUNDLE-SPECIFIER BUNDLE-ALIST)

Creates a bundle.

undeclare-bundle!

[procedure] (undeclare-bundle! BUNDLE-SPECIFIER)

Removes the bundle specified by BUNDLE-SPECIFIER from the active bundles.

Bundle Database Operations

SRFI 29 does not specify how bundles are stored. This extension uses the filesystem for the bundle database.

Bundles are stored in the system-bundle-directory, unless an ALTERNATE directory is specified.

Within a bundle directory the structure is (directory [LANGUAGE] [COUNTRY] [SCRIPT] [CODESET] [MODIFIER] PACKAGE-NAME).

system-bundle-directory

[parameter] (system-bundle-directory [DIRECTORY-PATHNAME])

Initially DIRECTORY-PATHNAME is (make-pathname (repository-path) "srfi-29-bundles").

store-bundle!

[procedure] (store-bundle! BUNDLE-SPECIFIER [ALTERNATE])

Stores the bundle using the write procedure.

load-bundle!

[procedure] (load-bundle! BUNDLE-SPECIFIER [ALTERNATE])

Loads the bundle using the read procedure.

load-best-available-bundle!

[procedure] (load-best-available-bundle! BUNDLE-SPECIFIER [ALTERNATE])

Attempts (load-bundle! BUNDLE-SPECIFIER [ALTERNATE]), from most to least specific.

See most-specific-bundle-specifier.

remove-bundle!

[procedure] (remove-bundle! BUNDLE-SPECIFIER [ALTERNATE])

Removes the bundle specified by BUNDLE-SPECIFIER from the active bundles, and from the filesystem.

Will not remove the locale directory hierarchy created by (store-bundle!...).

remove-bundle-directory!

[procedure] (remove-bundle-directory! BUNDLE-SPECIFIER [ALTERNATE])

Removes the bundle directory hierarchy created by (store-bundle!...). Will only remove empty directories. Returns #t if operation succeeded, #f when a non-empty directory encountered.

Does not remove the bundle, if any, from the active bundles. A filesystem only operation.

This procedure should be used with caution.

declared-bundle-specifiers

[procedure] (declared-bundle-specifiers) -> list

Returns a list of all the declared BUNDLE-SPECIFIERs.

declared-bundle-templates

[procedure] (declared-bundle-templates BUNDLE-SPECIFIER) -> list

Returns an alist of all the templates for the BUNDLE-SPECIFIER.

most-specific-bundle-specifier

[procedure] (most-specific-bundle-specifier PACKAGE-NAME) -> bundle-specifier

Returns the most specific bundle specifier for the current locale.

The current locale is composed of the (current-language), (current-country), and (current-locale-details).

Note that the most-specific-bundle-specifier may not be a declared bundle.

Bundle Template Operations

These routines will use the most specific declared bundle for the package PACKAGE-NAME in the current locale.

required-localized-template

[procedure] (required-localized-template PACKAGE-NAME TEMPLATE-NAME) -> *

Returns the object for the TEMPLATE-NAME in PACKAGE-NAME. Otherwise a undefined-condition exception is raised.

localized-template

[procedure] (localized-template PACKAGE-NAME TEMPLATE-NAME [PACKAGE-NOT-FOUND [TEMPLATE-NOT-FOUND]]) -> *

Returns the object for the TEMPLATE-NAME in PACKAGE-NAME. Otherwise the appropriate ...-NOT-FOUND value.

PACKAGE-NOT-FOUND and TEMPLATE-NOT-FOUND have default #t,

localized-template/default

[procedure] (localized-template/default PACKAGE-NAME TEMPLATE-NAME [PACKAGE-NOT-FOUND [TEMPLATE-NOT-FOUND]]) -> *

Returns (localized-template PACKAGE-NAME TEMPLATE-NAME PACKAGE-NOT-FOUND TEMPLATE-NOT-FOUND).

PACKAGE-NOT-FOUND and TEMPLATE-NOT-FOUND have default TEMPLATE-NAME.

Somewhat like the Posix 'gettext' routine.

make-localized-template

[procedure] (make-localized-template PACKAGE-NAME) -> (procedure (symbol #!optional * *) *)

Returns a localized-template-like procedure curried upon the PACKAGE-NAME.

make-localized-template/default

[procedure] (make-localized-template/default PACKAGE-NAME) -> (procedure (symbol #!optional * *) *)

Returns a localized-template/default-like procedure curried upon the PACKAGE-NAME.

make-required-localized-template

[procedure] (make-required-localized-template PACKAGE-NAME) -> (procedure (symbol) *)

Like make-localized-template but raises an undefined-condition exception should the package or template be missing.

localized-format

[procedure] (localized-format PACKAGE-NAME TEMPLATE-NAME ARG0...) -> string

Returns the formatted string using the (current-locale-format-function) and the format string (localized-template PACKAGE-NAME TEMPLATE-NAME) on the arguments ARG0....

When a localized-template is not found and the TEMPLATE-NAME is a string then it is used a the format-string.

A representation is always displayed, even when no template is found. Just not a localized one.

localized-template-set!

[procedure] (localized-template-set! PACKAGE-NAME TEMPLATE-NAME VALUE) -> boolean

Creates or updates the VALUE for the TEMPLATE-NAME in PACKAGE-NAME and returns #t, when the package exists. Otherwise returns #f.

This can be used to extend the meaning of a package template at runtime. For example: caching the actual closure for a named procedure.

localized-templates

[procedure] (localized-templates PACKAGE-NAME) -> list

Returns an alist of all the templates for the PACKAGE-NAME.

load-localized-compiled-code

[procedure] (load-localized-compiled-code LIBRARY PACKAGE-NAME TEMPLATE-NAMES)

Loads a Scheme code library and replaces the toplevel variable references from the templates with the actual value. Each item package-name template-name has a variable reference upon entry. Upon exit this is replaced with the variable value after load.

Every item package-name template-name referenced must be defined. Otherwise a (exn srfi-29 undefined) exception if raised.

LIBRARY
absolute-pathname, relative-pathname, or (unitname pathname)
TEMPLATE-NAMES
(list-of template-name).
template-name
(or TEMPLATE-NAME variable-reference).
variable-reference
(or symbol (symbol symbol)).

The corresponding load call for a LIBRARY form is load-relative, load-relative, and load-library. (See Unit eval.)

Notes

Exceptions

Thread Local Storage

Just as the locale extension supports per thread locale information so does this extension support per thread bundles. However, localized information is probably accessed more frequently than locale information. So the support for per thread bundles is delayed until runtime. Setting the environment variable SRFI29_TLS to [Yy1] before loading the runtime will activate the feature.

When active each thread may have a different bundle for a package; i.e. a user of srfi-19 can have a different language in each thread.

Usage

(require-extension srfi-29)

Notes

locale-details
(list SCRIPT CODESET MODIFIER)
SCRIPT
(or symbol #f)
CODESET
(or symbol #f)
MODIFIER
(or symbol #f)

Requirements

miscmacros moremacros lookup-table posix-utils locale check-errors condition-utils

test

setup-helper

Bugs and Limitations

Author

Kon Lovett

Version history

2.5.0
Added dependency on moremacros.
2.4.0
Changed current-locale-format-function to parameter. Documented system-bundle-directory.
2.3.3
2.3.2
Ensures filemode of 'a+rx' for bundles directory.
2.3.1
2.2.0
Added runtime support for package per thread. Removed deprecated identifiers.
2.1.3
Added unbound-variable-condition?. Deprecated !localized-template & make-!localized-template in favor of required-localized-template & make-required-localized-template.
2.1.2
2.1.1
2.1.0
Added undefined-condition?, !localized-template, make-localized-template, make-localized-template/default, load-localized-compiled-code. localized-template & localized-template/default now distinguish an undefined template from an undefined package.
2.0.1
Fixs for bundle-specifier? and load-best-available-bundle!
2.0.0
Intitial Chicken 4 release. Added introspection routines. Removed PORT parameter for localized-format.

License

Copyright (C) 2010-2018 Kon Lovett. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.