Clean up some duplication
[factor/jcg.git] / core / system / system.factor
blob2d8ed1b657fb085a9f92d362b6ba627cf55c5fac
1 ! Copyright (C) 2007 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 IN: system
4 USING: kernel kernel.private sequences math namespaces
5 init splitting assocs system.private layouts words ;
7 SINGLETON: x86.32
8 SINGLETON: x86.64
9 SINGLETON: arm
10 SINGLETON: ppc
12 UNION: x86 x86.32 x86.64 ;
14 : cpu ( -- class ) \ cpu get-global ; foldable
16 SINGLETON: winnt
17 SINGLETON: wince
19 UNION: windows winnt wince ;
21 SINGLETON: freebsd
22 SINGLETON: netbsd
23 SINGLETON: openbsd
24 SINGLETON: solaris
25 SINGLETON: macosx
26 SINGLETON: linux
28 UNION: bsd freebsd netbsd openbsd macosx ;
30 UNION: unix bsd solaris linux ;
32 : os ( -- class ) \ os get-global ; foldable
34 <PRIVATE
36 : string>cpu ( str -- class )
37     H{
38         { "x86.32" x86.32 }
39         { "x86.64" x86.64 }
40         { "arm" arm }
41         { "ppc" ppc }
42     } at ;
44 : string>os ( str -- class )
45     H{
46         { "winnt" winnt }
47         { "wince" wince }
48         { "freebsd" freebsd }
49         { "netbsd" netbsd }
50         { "openbsd" openbsd }
51         { "solaris" solaris }
52         { "macosx" macosx }
53         { "linux" linux }
54     } at ;
56 PRIVATE>
58 : image ( -- path ) \ image get-global ;
60 : vm ( -- path ) \ vm get-global ;
63     8 getenv string>cpu \ cpu set-global
64     9 getenv string>os \ os set-global
65 ] "system" add-init-hook
67 : embedded? ( -- ? ) 15 getenv ;
69 : millis ( -- ms ) micros 1000 /i ;