You are looking at historical revision 15714 of this page. It may differ significantly from its current revision.

srfi-29

A Chicken implementation of SRFI 29.

Documentation

Bundles are assumed stored in the system bundle directory, (repository-path) "srfi-29-bundles".

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

Any object which can be returned by (read) and tested for equality with equal? is acceptable as a TEMPLATE-NAME. So strings are a valid TEMPLATE-NAME. Further, (localized-template...) will return any object which can be returned by (read), not just a string.

Parameters

current-language

[parameter] (current-language [LANGUAGE])

Gets or sets the LANGUAGE symbol.

current-country

[parameter] (current-country [COUNTRY])

Gets or sets the COUNTRY symbol.

current-locale-details

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

Gets or sets the LOCALE-DETAILS list.

current-locale-format-function

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

Gets or sets the FORMAT-PROCEDURE. This procedure must have the signature (port | string | boolean string [object]...).

reset-locale-parameter

[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.)

Procedures

most-specific-bundle-specifier

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

Returns the most specific bundle specifier for the current language, country, and locale details.

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.

store-bundle!

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

Writes the bundle.

Uses the ALTERNATE-DIRECTORY if specified.

load-bundle!

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

Reads the bundle.

Uses the ALTERNATE-DIRECTORY if specified.

load-best-available-bundle!

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

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

remove-bundle!

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

Removes the bundle specified by BUNDLE-SPECIFIER from the active bundles, and from the filesystem. The bundle directory is ALTERNATE-DIRECTORY, unless missing. Then the system bundle directory is used.

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

remove-bundle-directory!

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

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.

localized-template

[procedure] (localized-template PACKAGE-NAME TEMPLATE-NAME [NOT-FOUND #f])

Returns the object for the TEMPLATE-NAME in PACKAGE-NAME, when found, otherwise the NOT-FOUND value.

localized-template-set!

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

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-template/default

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

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

Somewhat like the Posix 'gettext' routine.

localized-format

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

Formats the arguments ARG0... to the PORT using the (current-locale-format-function) and the format string (localized-template PACKAGE-NAME TEMPLATE-NAME).

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.

Exceptions

Extension error conditions are signaled with a composite condition of (exn srfi-29).

The property-condition exn has properties location, message, and, optionally, arguments.

An invalid bundle-specification raises the composite-condition (exn srfi-29 insufficient).

An unknown bundle-specification raises the composite-condition (exn srfi-29 undefined).

Usage

(require-extension srfi-29)

Examples

Notes

Requirements

lookup-table miscmacros locale check-errors

Bugs and Limitations

Author

kon lovett

Version history

2.0.0
Intitial Chicken 4 release

License

Copyright (C) 2009 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.