Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
2480e1c1
Commit
2480e1c1
authored
27 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1997-08-25 22:37:54 by sof]
Changed to use PackBase
parent
0abdb891
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ghc/lib/required/IO.lhs
+13
-9
13 additions, 9 deletions
ghc/lib/required/IO.lhs
with
13 additions
and
9 deletions
ghc/lib/required/IO.lhs
+
13
−
9
View file @
2480e1c1
...
...
@@ -38,7 +38,7 @@ import UnsafeST ( unsafePerformPrimIO, unsafeInterleavePrimIO )
import IOBase
import ArrBase ( MutableByteArray(..), newCharArray )
import IOHandle -- much of the real stuff is in here
import Pack
edString ( nilPS,
pack
C
BytesST
, unpackPS
)
import Pack
Base ( un
pack
N
BytesST )
import PrelBase
import GHC
import Foreign ( ForeignObj, Addr, makeForeignObj, writeForeignObj )
...
...
@@ -118,6 +118,10 @@ instance Eq Handle where
instance Show Handle where {showsPrec p h = showString "<<Handle>>"}
--Type declared in IOHandle, instance here because it depends on Eq.Handle
instance Eq HandlePosn where
(HandlePosn h1 p1) == (HandlePosn h2 p2) = p1==p2 && h1==h2
\end{code}
%*********************************************************
...
...
@@ -334,8 +338,8 @@ lazyReadBlock handle =
SemiClosedHandle fp (buf, size) ->
_ccall_ readBlock buf fp size >>= \ bytes ->
(if bytes <= 0
then return
nilPS
else pack
C
BytesST b
ytes buf)
>>= \ some ->
then return
""
else
un
pack
N
BytesST b
uf bytes)
>>= \ some ->
if bytes < 0 then
_ccall_ free buf >>= \ () ->
_ccall_ closeFile fp >>
...
...
@@ -345,12 +349,12 @@ lazyReadBlock handle =
#else
ioToST (writeHandle handle (SemiClosedHandle ``NULL'' (``NULL'', 0))) >>
#endif
returnPrimIO
(unpackPS
some
)
returnPrimIO some
else
ioToST (writeHandle handle htype) >>
unsafeInterleavePrimIO (lazyReadBlock handle)
>>= \ more ->
returnPrimIO (
unpackPS
some ++ more)
returnPrimIO (some ++ more)
lazyReadLine handle =
ioToST (readHandle handle) >>= \ htype ->
...
...
@@ -362,8 +366,8 @@ lazyReadLine handle =
SemiClosedHandle fp (buf, size) ->
_ccall_ readLine buf fp size >>= \ bytes ->
(if bytes <= 0
then return
nilPS
else pack
C
BytesST b
ytes buf)
>>= \ some ->
then return
""
else
un
pack
N
BytesST b
uf bytes)
>>= \ some ->
if bytes < 0 then
_ccall_ free buf >>= \ () ->
_ccall_ closeFile fp >>
...
...
@@ -373,12 +377,12 @@ lazyReadLine handle =
#else
ioToST (writeHandle handle (SemiClosedHandle ``NULL'' (``NULL'', 0))) >>
#endif
return
PrimIO (unpackPS
some
)
return some
else
ioToST (writeHandle handle htype) >>
unsafeInterleavePrimIO (lazyReadLine handle)
>>= \ more ->
return
PrimIO (unpackPS
some ++ more)
return
(
some ++ more)
lazyReadChar handle =
ioToST (readHandle handle) >>= \ htype ->
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment