summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@mailme.dk>2012-12-09 03:27:02 +0100
committerEmil Renner Berthing <esmil@mailme.dk>2012-12-17 10:11:06 +0100
commit9e69d37f9e7a00b9902ebe5618904871397c7999 (patch)
treeb76203d2288f18947d62441cd16c70ec4b2a0783 /test
parentbf8c9594b6492af209b7d62c67d7f165d85b46e8 (diff)
downloadlem-9e69d37f9e7a00b9902ebe5618904871397c7999.tar.gz
lem-9e69d37f9e7a00b9902ebe5618904871397c7999.tar.xz
lem-9e69d37f9e7a00b9902ebe5618904871397c7999.zip
streams: add File type
Diffstat (limited to 'test')
-rwxr-xr-xtest/fread.lua72
1 files changed, 72 insertions, 0 deletions
diff --git a/test/fread.lua b/test/fread.lua
new file mode 100755
index 0000000..56309d8
--- /dev/null
+++ b/test/fread.lua
@@ -0,0 +1,72 @@
+#!bin/lem
+--
+-- This file is part of LEM, a Lua Event Machine.
+-- Copyright 2011-2012 Emil Renner Berthing
+--
+-- LEM is free software: you can redistribute it and/or
+-- modify it under the terms of the GNU General Public License as
+-- published by the Free Software Foundation, either version 3 of
+-- the License, or (at your option) any later version.
+--
+-- LEM is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+-- GNU General Public License for more details.
+--
+-- You should have received a copy of the GNU General Public License
+-- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+--
+
+local utils = require 'lem.utils'
+local stream = require 'lem.streams'
+
+local write
+do
+ local stdout = stream.stdout
+ function write(str)
+ return stdout:write(str)
+ end
+end
+
+print("Press enter to read '" .. (arg[1] or arg[0]) .. "'")
+stream.stdin:read()
+
+local threads = 2
+for i = 1, threads do
+ utils.spawn(function()
+ local file = assert(stream.open(arg[1] or arg[0]))
+ assert(getmetatable(file) == stream.File, "Hmm...")
+
+ ---[[
+ local chunk, err
+ while true do
+ chunk, err = file:read()
+ if not chunk then break end
+ write('|')
+ --print(chunk)
+ end
+ assert(err == 'eof', "Hmm..")
+ --[=[
+ --]]
+ local line, err
+ while true do
+ line, err = file:read('*l')
+ if not line then break end
+ print(line)
+ end
+ --]=]
+
+ threads = threads - 1
+ end)
+end
+
+local yield = utils.yield
+while threads > 0 do
+ write('.')
+ yield()
+end
+
+print "\nDone. Press enter to continue."
+stream.stdin:read()
+
+-- vim: set ts=2 sw=2 noet: