aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/files.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-03 04:23:42 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-03 04:23:42 +0000
commit001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532 (patch)
treeda9e2fe5d81ff4cd7709d12e44b8c3e348b8a8e3 /src/algebra/files.spad.pamphlet
parenta7bab9a6c2070d05e2dbd256ce455079c8ced385 (diff)
downloadopen-axiom-001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532.tar.gz
Replace `^=' with `~='.
Diffstat (limited to 'src/algebra/files.spad.pamphlet')
-rw-r--r--src/algebra/files.spad.pamphlet34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/algebra/files.spad.pamphlet b/src/algebra/files.spad.pamphlet
index 591bb1a0..f331e958 100644
--- a/src/algebra/files.spad.pamphlet
+++ b/src/algebra/files.spad.pamphlet
@@ -130,20 +130,20 @@ File(S:SetCategory): FileCategory(FileName, S) with
iomode f ==
f.fileIOmode
read_! f ==
- f.fileIOmode ^= "input" =>
+ f.fileIOmode ~= "input" =>
error "File not in read state"
x := VMREAD(f.fileState)$Lisp
PLACEP(x)$Lisp =>
error "End of file"
x
readIfCan_! f ==
- f.fileIOmode ^= "input" =>
+ f.fileIOmode ~= "input" =>
error "File not in read state"
x: S := VMREAD(f.fileState)$Lisp
PLACEP(x)$Lisp => "failed"
x
write_!(f, x) ==
- f.fileIOmode ^= "output" =>
+ f.fileIOmode ~= "output" =>
error "File not in write state"
z := PRINT_-FULL(x, f.fileState)$Lisp
TERPRI(f.fileState)$Lisp
@@ -210,25 +210,25 @@ TextFile: Cat == Def where
readIfCan_! f == readLineIfCan_! f
readLine_! f ==
- f.fileIOmode ^= "input" => error "File not in read state"
+ f.fileIOmode ~= "input" => error "File not in read state"
s: String := read_-line(f.fileState)$Lisp
PLACEP(s)$Lisp => error "End of file"
s
readLineIfCan_! f ==
- f.fileIOmode ^= "input" => error "File not in read state"
+ f.fileIOmode ~= "input" => error "File not in read state"
s: String := read_-line(f.fileState)$Lisp
PLACEP(s)$Lisp => "failed"
s
write_!(f, x) ==
- f.fileIOmode ^= "output" => error "File not in write state"
+ f.fileIOmode ~= "output" => error "File not in write state"
PRINTEXP(x, f.fileState)$Lisp
x
writeLine_! f ==
- f.fileIOmode ^= "output" => error "File not in write state"
+ f.fileIOmode ~= "output" => error "File not in write state"
TERPRI(f.fileState)$Lisp
""
writeLine_!(f, x) ==
- f.fileIOmode ^= "output" => error "File not in write state"
+ f.fileIOmode ~= "output" => error "File not in write state"
PRINTEXP(x, f.fileState)$Lisp
TERPRI(f.fileState)$Lisp
x
@@ -316,12 +316,12 @@ BinaryFile: Cat == Def where
error "file must be in read or write state"
read! f ==
- f.fileIOmode ^= "input" => error "File not in read state"
+ f.fileIOmode ~= "input" => error "File not in read state"
BINARY__SELECT__INPUT(f.fileState)$Lisp
BINARY__READBYTE()$Lisp
-- READ_-BYTE(f.fileState)$Lisp
readIfCan_! f ==
- f.fileIOmode ^= "input" => error "File not in read state"
+ f.fileIOmode ~= "input" => error "File not in read state"
BINARY__SELECT__INPUT(f.fileState)$Lisp
n:SingleInteger:=BINARY__READBYTE()$Lisp
n = -1 => "failed"
@@ -329,7 +329,7 @@ BinaryFile: Cat == Def where
-- READ_-BYTE(f.fileState,NIL$Lisp,
-- "failed"::Union(SingleInteger,"failed"))$Lisp
write_!(f, x) ==
- f.fileIOmode ^= "output" => error "File not in write state"
+ f.fileIOmode ~= "output" => error "File not in write state"
x < 0 or x>255 => error "integer cannot be represented as a byte"
BINARY__PRINBYTE(x)$Lisp
-- WRITE_-BYTE(x, f.fileState)$Lisp
@@ -337,10 +337,10 @@ BinaryFile: Cat == Def where
-- # f == FILE_-LENGTH(f.fileState)$Lisp
position f ==
- f.fileIOmode ^= "input" => error "file must be in read state"
+ f.fileIOmode ~= "input" => error "file must be in read state"
FILE_-POSITION(f.fileState)$Lisp
position_!(f,i) ==
- f.fileIOmode ^= "input" => error "file must be in read state"
+ f.fileIOmode ~= "input" => error "file must be in read state"
(FILE_-POSITION(f.fileState,i)$Lisp ; i)
@
@@ -415,24 +415,24 @@ KeyedAccessFile(Entry): KAFcategory == KAFcapsule where
[fname, defstream(fname, mode), mode]
reopen_!(f, mode) ==
close_! f
- if mode ^= "closed" then
+ if mode ~= "closed" then
f.fileState := defstream(f.fileName, mode)
f.fileIOmode := mode
f
close_! f ==
- if f.fileIOmode ^= "closed" then
+ if f.fileIOmode ~= "closed" then
RSHUT(f.fileState)$Lisp
f.fileIOmode := "closed"
f
read_! f ==
- f.fileIOmode ^= "input" => error ["File not in read state",f]
+ f.fileIOmode ~= "input" => error ["File not in read state",f]
ks: List Symbol := RKEYIDS(f.fileName)$Lisp
null ks => error ["Attempt to read empty file", f]
ix := random()$Integer rem #ks
k: String := PNAME(ks.ix)$Lisp
[k, SPADRREAD(k, f.fileState)$Lisp]
write_!(f, pr) ==
- f.fileIOmode ^= "output" => error ["File not in write state",f]
+ f.fileIOmode ~= "output" => error ["File not in write state",f]
SPADRWRITE(pr.key, pr.entry, f.fileState)$Lisp
pr
name f ==