From 688cbfaafacf383374b162d6163ca957f7b84032 Mon Sep 17 00:00:00 2001
From: Chris Double
Date: Fri, 11 Apr 2008 14:46:11 +1200
Subject: [PATCH 01/23] Delocalise grow-lr
---
extra/peg/peg.factor | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/extra/peg/peg.factor b/extra/peg/peg.factor
index 7390c15684..164f7c9ee9 100755
--- a/extra/peg/peg.factor
+++ b/extra/peg/peg.factor
@@ -100,21 +100,21 @@ C: peg-head
: setup-growth ( h p -- )
pos set dup involved-set>> clone >>eval-set drop ;
-:: (grow-lr) ( h p r m -- )
- h p setup-growth
- r eval-rule
- dup m stop-growth? [
- drop
+: (grow-lr) ( h p r m -- )
+ >r >r [ setup-growth ] 2keep r> r>
+ >r dup eval-rule r> swap
+ dup pick stop-growth? [
+ 4drop drop
] [
- m update-m
- h p r m (grow-lr)
+ over update-m
+ (grow-lr)
] if ; inline
-:: grow-lr ( h p r m -- ast )
- h p heads get set-at
- h p r m (grow-lr)
- p heads get delete-at
- m pos>> pos set m ans>>
+: grow-lr ( h p r m -- ast )
+ >r >r [ heads get set-at ] 2keep r> r>
+ pick over >r >r (grow-lr) r> r>
+ swap heads get delete-at
+ dup pos>> pos set ans>>
; inline
:: (setup-lr) ( r l s -- )
From 9a734b74cee2e2e99f65930b37ca18ad9efb2a7e Mon Sep 17 00:00:00 2001
From: Slava Pestov
Date: Sun, 13 Apr 2008 14:48:42 -0500
Subject: [PATCH 02/23] Update readme
---
README.txt | 109 ++++++++++++++++++-----------------------------------
1 file changed, 36 insertions(+), 73 deletions(-)
diff --git a/README.txt b/README.txt
index 12dade5ba1..dd7c3e7ad3 100755
--- a/README.txt
+++ b/README.txt
@@ -6,7 +6,6 @@ implementation. It is not an introduction to the language itself.
* Contents
-- Platform support
- Compiling the Factor VM
- Libraries needed for compilation
- Bootstrapping the Factor image
@@ -19,80 +18,50 @@ implementation. It is not an introduction to the language itself.
- Source organization
- Community
-* Platform support
-
-Factor supports the following platforms:
-
- Linux/x86
- Linux/AMD64
- Linux/PowerPC
- Linux/ARM
- Mac OS X/x86
- Mac OS X/PowerPC
- FreeBSD/x86
- FreeBSD/AMD64
- OpenBSD/x86
- OpenBSD/AMD64
- Solaris/x86
- Solaris/AMD64
- MS Windows/x86 (XP and above)
- MS Windows CE/ARM
-
-Please donate time or hardware if you wish to see Factor running on
-other platforms. In particular, we are interested in:
-
- Windows/AMD64
- Mac OS X/AMD64
- Solaris/UltraSPARC
- Linux/MIPS
-
* Compiling the Factor VM
The Factor runtime is written in GNU C99, and is built with GNU make and
gcc.
-Factor requires gcc 3.4 or later. On x86, it /will not/ build using gcc
-3.3 or earlier. If you are using gcc 4.3, you might get an unusable
-Factor binary unless you add 'SITE_CFLAGS=-fno-forward-propagate' to the
-command-line arguments for make.
+Factor supports various platforms. For an up-to-date list, see
+.
-Run 'make' (or 'gmake' on *BSD) with no parameters to see a list of
-targets and build options. Then run 'make' with the appropriate target
-for your platform.
+Factor requires gcc 3.4 or later.
+
+On x86, Factor /will not/ build using gcc 3.3 or earlier.
+
+If you are using gcc 4.3, you might get an unusable Factor binary unless
+you add 'SITE_CFLAGS=-fno-forward-propagate' to the command-line
+arguments for make.
+
+Run 'make' ('gmake' on *BSD) with no parameters to build the Factor VM.
Compilation will yield an executable named 'factor' on Unix,
-'factor-nt.exe' on Windows XP/Vista, and 'factor-ce.exe' on Windows CE.
+'factor.exe' on Windows XP/Vista, and 'factor-ce.exe' on Windows CE.
* Libraries needed for compilation
-For X11 support, you need recent development libraries for libc, Freetype,
-X11, OpenGL and GLUT. On a Debian-derived Linux distribution (like Ubuntu),
-you can use the line
+For X11 support, you need recent development libraries for libc,
+Freetype, X11, OpenGL and GLUT. On a Debian-derived Linux distribution
+(like Ubuntu), you can use the line
-sudo apt-get install libc6-dev libfreetype6-dev libx11-dev glutg3-dev
+ sudo apt-get install libc6-dev libfreetype6-dev libx11-dev glutg3-dev
-to grab everything (if you're on a non-debian-derived distro please tell us
-what the equivalent command is on there and it can be added :)
+to grab everything (if you're on a non-debian-derived distro please tell
+us what the equivalent command is on there and it can be added).
* Bootstrapping the Factor image
-The boot images are no longer included with the Factor distribution
-due to size concerns. Instead, download a boot image from:
-
- http://factorcode.org/images/
-
Once you have compiled the Factor runtime, you must bootstrap the Factor
system using the image that corresponds to your CPU architecture.
-Once you download the right image, bootstrap the system with the
+Boot images can be obtained from .
+
+Once you download the right image, bootstrap Factor with the
following command line:
./factor -i=boot..image
-Or this command for Mac OS X systems:
-
-./Factor.app/Contents/MacOS/factor -i=boot..image
-
Bootstrap can take a while, depending on your system. When the process
completes, a 'factor.image' file will be generated. Note that this image
is both CPU and OS-specific, so in general cannot be shared between
@@ -122,9 +91,8 @@ The latter keeps the terminal listener running.
* Running Factor on Mac OS X - Cocoa UI
-On Mac OS X 10.4 and later, a Cocoa UI is available in addition to the
-terminal listener. If you are using Mac OS X 10.3, you can only run the
-X11 UI, as documented in the next section.
+On Mac OS X, a Cocoa UI is available in addition to the terminal
+listener.
The 'factor' executable runs the terminal listener:
@@ -136,17 +104,16 @@ contains factor.image and the library sources.
* Running Factor on Mac OS X - X11 UI
-The X11 UI is available on Mac OS X, however its use is not recommended
-since it does not integrate with the host OS. However, if you are
-running Mac OS X 10.3, it is your only choice.
+The X11 UI is also available on Mac OS X, however its use is not
+recommended since it does not integrate with the host OS.
When compiling Factor, pass the X11=1 parameter:
- make macosx-ppc X11=1
+ make X11=1
Then bootstrap with the following switches:
- ./factor -i=boot.ppc.image -ui-backend=x11
+ ./factor -i=boot..image -ui-backend=x11
Now if $DISPLAY is set, running ./factor will start the UI.
@@ -155,40 +122,36 @@ Now if $DISPLAY is set, running ./factor will start the UI.
If you did not download the binary package, you can bootstrap Factor in
the command prompt:
- factor-nt.exe -i=boot.x86.32.image
+ factor.exe -i=boot..image
Once bootstrapped, double-clicking factor.exe starts the Factor UI.
To run the listener in the command prompt:
- factor-nt.exe -run=listener
+ factor.exe -run=listener
* The Factor FAQ
-The Factor FAQ lives online at http://factorcode.org/faq.fhtml
+The Factor FAQ is available at .
* Command line usage
-The Factor VM supports a number of command line switches. To read
-command line usage documentation, either enter the following in the UI
-listener:
+Factor supports a number of command line switches. To read command line
+usage documentation, enter the following in the UI listener:
"command-line" about
* Source organization
-The following two directories are managed by the module system; consult
-the documentation for details:
+The Factor source tree is organized as follows:
+ build-support/ - scripts used for compiling Factor
core/ - Factor core library and compiler
extra/ - more libraries
-
-The following directories contain additional files:
-
- misc/ - editor modes, icons, etc
- vm/ - sources for the Factor runtime, written in C
fonts/ - TrueType fonts used by UI
+ misc/ - editor modes, icons, etc
unmaintained/ - unmaintained contributions, please help!
+ vm/ - sources for the Factor VM, written in C
* Community
From 5fda0ed040cdf193efeae89915e0c87a8110ae66 Mon Sep 17 00:00:00 2001
From: Slava Pestov
Date: Mon, 14 Apr 2008 03:54:02 -0500
Subject: [PATCH 03/23] Throw error if superclass is not a tuple class
---
core/classes/tuple/tuple-tests.factor | 3 +++
core/classes/tuple/tuple.factor | 11 ++++++++++-
core/debugger/debugger.factor | 5 ++++-
3 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/core/classes/tuple/tuple-tests.factor b/core/classes/tuple/tuple-tests.factor
index 2575570d2f..94172a01ef 100755
--- a/core/classes/tuple/tuple-tests.factor
+++ b/core/classes/tuple/tuple-tests.factor
@@ -538,3 +538,6 @@ TUPLE: another-forget-accessors-test ;
] with-string-writer empty?
] with-variable
] unit-test
+
+! Missing error check
+[ "IN: tuples.test USE: words TUPLE: wrong-superclass < word ;" eval ] must-fail
diff --git a/core/classes/tuple/tuple.factor b/core/classes/tuple/tuple.factor
index aa8ef6cdb7..8c7b5437bd 100755
--- a/core/classes/tuple/tuple.factor
+++ b/core/classes/tuple/tuple.factor
@@ -58,6 +58,8 @@ PRIVATE>
: all-slot-names ( class -- slots )
superclasses [ slot-names ] map concat \ class prefix ;
+ERROR: bad-superclass class ;
+
GENERIC# define-tuple-class 2 ( class superclass slots -- )
M: word define-tuple-class
+ over check-superclass
define-new-tuple-class ;
M: tuple-class define-tuple-class
3dup tuple-class-unchanged?
- [ 3dup redefine-tuple-class ] unless
+ [ over check-superclass 3dup redefine-tuple-class ] unless
3drop ;
: define-error-class ( class superclass slots -- )
diff --git a/core/debugger/debugger.factor b/core/debugger/debugger.factor
index dea1904e92..827a5c4e8d 100755
--- a/core/debugger/debugger.factor
+++ b/core/debugger/debugger.factor
@@ -215,7 +215,10 @@ M: check-method summary
drop "Invalid parameters for create-method" ;
M: no-tuple-class summary
- drop "Invalid class for define-constructor" ;
+ drop "BOA constructors can only be defined for tuple classes" ;
+
+M: bad-superclass summary
+ drop "Tuple classes can only inherit from other tuple classes" ;
M: no-cond summary
drop "Fall-through in cond" ;
From 5c94bd00b0b7f0614100c412658f0555989f830c Mon Sep 17 00:00:00 2001
From: Slava Pestov
Date: Mon, 14 Apr 2008 03:54:17 -0500
Subject: [PATCH 04/23] Change unit test
---
core/strings/strings-tests.factor | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/strings/strings-tests.factor b/core/strings/strings-tests.factor
index 3ae7b92a5f..961c8cdf6e 100755
--- a/core/strings/strings-tests.factor
+++ b/core/strings/strings-tests.factor
@@ -96,7 +96,7 @@ unit-test
[ ] [
[
4 [
- 100 [ drop "obdurak" ] map
+ 100 [ drop "obdurak" clone ] map
gc
dup [
1234 0 rot set-string-nth
From 31e6604a68e4d3a0e7d4eb8930a2d9ebd4995384 Mon Sep 17 00:00:00 2001
From: Slava Pestov
Date: Mon, 14 Apr 2008 03:54:34 -0500
Subject: [PATCH 05/23] Inheritance-friendly lexer type
---
core/parser/parser.factor | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/core/parser/parser.factor b/core/parser/parser.factor
index 13f768a810..0f7c1410ab 100755
--- a/core/parser/parser.factor
+++ b/core/parser/parser.factor
@@ -17,9 +17,14 @@ TUPLE: lexer text line line-text line-length column ;
0 >>column
drop ;
+: construct-lexer ( text class -- lexer )
+ construct-empty
+ 0 >>line
+ swap >>text
+ dup next-line ; inline
+
: ( text -- lexer )
- 0 { set-lexer-text set-lexer-line } lexer construct
- dup next-line ;
+ lexer construct-lexer ;
: location ( -- loc )
file get lexer get lexer-line 2dup and
From 421085c516c04ea5a9e656bf318581ec503996dc Mon Sep 17 00:00:00 2001
From: Slava Pestov
Date: Mon, 14 Apr 2008 03:54:43 -0500
Subject: [PATCH 06/23] Fix inference error
---
extra/db/mysql/mysql.factor | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extra/db/mysql/mysql.factor b/extra/db/mysql/mysql.factor
index dc7225514e..f8700debaa 100755
--- a/extra/db/mysql/mysql.factor
+++ b/extra/db/mysql/mysql.factor
@@ -9,7 +9,7 @@ TUPLE: mysql-statement ;
TUPLE: mysql-result-set ;
M: mysql-db db-open ( mysql-db -- )
- drop ;
+ ;
M: mysql-db dispose ( mysql-db -- )
mysql-db-handle mysql_close ;
From e31f03db4a5168d6b0986ff8803f002829e16376 Mon Sep 17 00:00:00 2001
From: Slava Pestov
Date: Mon, 14 Apr 2008 03:54:51 -0500
Subject: [PATCH 07/23] Put farkup words in private
---
extra/farkup/farkup.factor | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/extra/farkup/farkup.factor b/extra/farkup/farkup.factor
index 142fc5de6c..f876c9569b 100755
--- a/extra/farkup/farkup.factor
+++ b/extra/farkup/farkup.factor
@@ -6,6 +6,8 @@ io.streams.string html peg.parsers html.elements sequences.deep
unicode.categories ;
IN: farkup
+" swap "
" 3array ] unless
] action ;
+PRIVATE>
+
PEG: parse-farkup ( -- parser )
[
list , table , h1 , h2 , h3 , h4 , code , paragraph , 2nl , nl ,
From 4cdf0771cace849560db0f6aab17d18a3e3d858a Mon Sep 17 00:00:00 2001
From: Slava Pestov
Date: Mon, 14 Apr 2008 04:34:26 -0500
Subject: [PATCH 08/23] Some minor improvements to http.server
---
extra/http/http-tests.factor | 25 +-
extra/http/server/auth/login/Untitled-13 | 7 +
extra/http/server/auth/login/login.factor | 43 ++-
.../auth/providers/assoc/assoc-tests.factor | 2 +-
.../server/auth/providers/db/db-tests.factor | 2 +-
.../server/auth/providers/providers.factor | 2 -
.../server/components/components-tests.factor | 33 +-
.../http/server/components/components.factor | 309 +++++++++---------
.../server/components/farkup/farkup.factor | 17 +-
extra/http/server/db/db.factor | 4 +-
extra/http/server/forms/forms.factor | 48 +++
extra/http/server/server.factor | 10 +-
extra/http/server/sessions/sessions.factor | 19 +-
.../http/server/templating/fhtml/fhtml.factor | 21 +-
14 files changed, 314 insertions(+), 228 deletions(-)
create mode 100644 extra/http/server/auth/login/Untitled-13
create mode 100644 extra/http/server/forms/forms.factor
diff --git a/extra/http/http-tests.factor b/extra/http/http-tests.factor
index 2e7370bc39..d1ffce721d 100755
--- a/extra/http/http-tests.factor
+++ b/extra/http/http-tests.factor
@@ -1,5 +1,6 @@
USING: http tools.test multiline tuple-syntax
-io.streams.string kernel arrays splitting sequences ;
+io.streams.string kernel arrays splitting sequences
+assocs io.sockets ;
IN: http.tests
[ "hello%20world" ] [ "hello world" url-encode ] unit-test
@@ -136,10 +137,12 @@ io.encodings.ascii ;
[ ] [
[
-
- [ stop-server "text/html" [ "Goodbye" write ] >>body ] >>display
- "quit" add-responder
- "extra/http/test" resource-path >>default
+
+ [ stop-server "text/html" [ "Goodbye" write ] >>body ] >>display
+ "quit" add-responder
+
+ "extra/http/test" resource-path >>default
+ "nested" add-responder
main-responder set
[ 1237 httpd ] "HTTPD test" spawn drop
@@ -148,7 +151,17 @@ io.encodings.ascii ;
[ t ] [
"extra/http/test/foo.html" resource-path ascii file-contents
- "http://localhost:1237/foo.html" http-get =
+ "http://localhost:1237/nested/foo.html" http-get =
+] unit-test
+
+! Try with a slightly malformed request
+[ t ] [
+ "localhost" 1237 ascii [
+ "GET nested HTTP/1.0\r\n" write flush
+ "\r\n" write flush
+ readln drop
+ read-header USE: prettyprint
+ ] with-stream dup . "location" swap at "/" head?
] unit-test
[ "Goodbye" ] [
diff --git a/extra/http/server/auth/login/Untitled-13 b/extra/http/server/auth/login/Untitled-13
new file mode 100644
index 0000000000..ddf16405a6
--- /dev/null
+++ b/extra/http/server/auth/login/Untitled-13
@@ -0,0 +1,7 @@
+hidden, how do we handle this?
+
+dan's delegation is the obvious solution.
+
+but... we have that ugly hack for integers there...
+
+i have hidden string, hidden username... hmmm....
diff --git a/extra/http/server/auth/login/login.factor b/extra/http/server/auth/login/login.factor
index 89984b0e84..4f04a1ff9b 100755
--- a/extra/http/server/auth/login/login.factor
+++ b/extra/http/server/auth/login/login.factor
@@ -1,20 +1,29 @@
! Copyright (c) 2008 Slava Pestov
! See http://factorcode.org/license.txt for BSD license.
USING: accessors quotations assocs kernel splitting
-base64 html.elements io combinators http.server
-http.server.auth.providers http.server.auth.providers.null
-http.server.actions http.server.components http.server.sessions
-http.server.templating.fhtml http.server.validators
-http.server.auth http sequences io.files namespaces hashtables
+base64 io combinators sequences io.files namespaces hashtables
fry io.sockets arrays threads locals qualified continuations
-destructors ;
+destructors
+
+html.elements
+http
+http.server
+http.server.auth
+http.server.auth.providers
+http.server.auth.providers.null
+http.server.actions
+http.server.components
+http.server.forms
+http.server.sessions
+http.server.templating.fhtml
+http.server.validators ;
IN: http.server.auth.login
QUALIFIED: smtp
SYMBOL: post-login-url
SYMBOL: login-failed?
-TUPLE: login users ;
+TUPLE: login < dispatcher users ;
: users login get users>> ;
@@ -130,7 +139,7 @@ SYMBOL: user-exists?
successful-login
- login get responder>> init-user-profile
+ login get default>> responder>> init-user-profile
] >>submit
] ;
@@ -178,7 +187,7 @@ SYMBOL: previous-page
"password" value uid users check-login
[ login-failed? on validation-failed ] unless
- "new-password" value set-password
+ "new-password" value >>password
] unless
"realname" value >>realname
@@ -269,7 +278,8 @@ SYMBOL: lost-password-from
:
"new-password"