]> gitweb.factorcode.org Git - factor.git/blob - library/vocabularies.factor
880869981170bba3c3c7732b37c78ce9dbd4d8f8
[factor.git] / library / vocabularies.factor
1 !:folding=indent:collapseFolds=1:
2
3 ! $Id$
4 !
5 ! Copyright (C) 2003, 2004 Slava Pestov.
6
7 ! Redistribution and use in source and binary forms, with or without
8 ! modification, are permitted provided that the following conditions are met:
9
10 ! 1. Redistributions of source code must retain the above copyright notice,
11 !    this list of conditions and the following disclaimer.
12
13 ! 2. Redistributions in binary form must reproduce the above copyright notice,
14 !    this list of conditions and the following disclaimer in the documentation
15 !    and/or other materials provided with the distribution.
16
17 ! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 ! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19 ! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 ! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 ! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 ! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 ! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 IN: vocabularies
29 USE: combinators
30 USE: kernel
31 USE: lists
32 USE: namespaces
33 USE: stack
34 USE: strings
35
36 : vocabs ( -- list )
37     #! Push a list of vocabularies.
38     global [ "vocabularies" get [ vars ] bind ] bind ;
39
40 : vocab ( name -- vocab )
41     #! Get a vocabulary.
42     global [ "vocabularies" get get* ] bind ;
43
44 : <vocab> ( name -- vocab )
45     #! Create a vocabulary.
46     <namespace> dup >r "vocabularies" get put* r> ;
47
48 : vocab* ( name -- vocab )
49     #! Get a vocabulary, creating it if it doesn't exist.
50     global [
51         dup "vocabularies" get get* dup [
52             nip
53         ] [
54             drop <vocab>
55         ] ifte
56     ] bind ;
57
58 : words ( vocab -- list )
59     #! Push a list of all words in a vocabulary.
60     vocab [ values ] bind ;
61
62 : intern ( "word" -- word )
63     #! Returns the top of the stack if it already been interned.
64     dup string? [ "use" get search ] when ;