ExternalStream.st
author Claus Gittinger <cg@exept.de>
Fri, 27 Feb 2004 18:05:02 +0100
changeset 8008 e80739d6c312
parent 8007 adfabcb563e0
child 8066 0dbcbe8989b8
permissions -rw-r--r--
openError backWard compatibility.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    13
"{ Package: 'stx:libbasic' }"
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    14
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    15
ReadWriteStream subclass:#ExternalStream
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    16
	instanceVariableNames:'filePointer mode buffered binary eolMode hitEOF didWrite
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    17
		lastErrorNumber readAhead'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    18
	classVariableNames:'Lobby LastErrorNumber InvalidReadSignal InvalidWriteSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    19
		InvalidModeSignal OpenErrorSignal StreamNotOpenSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    20
		InvalidOperationSignal DefaultEOLMode ReadMode ReadWriteMode
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    21
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    22
		FileOpenTrace'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    23
	poolDictionaries:''
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    24
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    25
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    26
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    27
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    28
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
    29
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
#include <stdio.h>
437
claus
parents: 436
diff changeset
    31
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    32
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
    33
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    34
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    35
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    36
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    37
#endif
437
claus
parents: 436
diff changeset
    38
10
claus
parents: 5
diff changeset
    39
#include <errno.h>
437
claus
parents: 436
diff changeset
    40
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    41
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    42
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    43
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    44
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    45
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    46
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    47
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    48
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    49
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    50
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    51
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    52
#ifndef SEEK_SET
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    53
# define SEEK_SET 0
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    54
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    55
#ifndef SEEK_CUR
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    56
# define SEEK_CUR 1
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    57
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    58
#ifndef SEEK_END
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    59
# define SEEK_END 2
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    60
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    61
4093
1821420b41d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    62
#if defined(__VMS__) || defined(sparc)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    63
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    64
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    65
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    66
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    67
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    68
#ifdef LATER
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    69
#define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    70
#define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    71
#define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    72
#else
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    73
#define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    74
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    75
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    76
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    77
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    78
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    79
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    80
#ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    81
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    82
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    83
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    84
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    85
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    87
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    88
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    89
# define __END_INTERRUPTABLE__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    90
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    91
# ifdef i386
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    92
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    93
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    94
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    95
# undef INT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    96
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    98
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   102
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# undef Date
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   104
# undef Delay
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   105
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   106
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   107
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   108
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   109
# define NOMINMAX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   110
//#d efine NOOPENFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   111
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   112
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   113
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   114
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   115
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   118
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   119
# include <windows.h>
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   120
# include <winsock.h> /* */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   121
# if !defined(__BORLANDC__)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
#  define stat _stat
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   123
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   124
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
#  define Array __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   127
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
# ifdef __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
#  define Number __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
# ifdef __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
#  define Method __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
# ifdef __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   145
# endif
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   146
# ifdef __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   147
#  define Delay __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   148
# endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   150
# define INT int
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   151
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   152
#else /* use STDIO */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   153
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   154
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   155
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   156
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   157
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   158
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   159
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   160
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   161
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   162
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   163
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   164
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   165
     && ((char *)(buf) < __survEndPtr)) { \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   166
	__fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   167
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   168
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   169
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   170
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   171
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   172
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   173
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   174
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   175
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   176
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   177
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   178
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   179
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   180
# define OPT_FSEEK(f, pos, whence)      fseek(f, pos, whence)
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   181
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   182
# define OPT_FSEEK(f, pos, whence)      /* nothing */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   183
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   184
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   185
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   186
//# define __HANDLEVal(o)         (HFILE)(__externalAddressVal(o))
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   187
int _rtl_read();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   188
int _rtl_write();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   189
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   190
# ifdef __BORLANDC__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   191
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   192
      { int __res;\
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   193
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   194
	  (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   195
	else \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   196
	  (ret) = __STX_C_CALL3((void*)_rtl_read,(void *)fileno(f), (void *)(cp), (void *)(n));\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   197
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   198
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   199
      { int __res;\
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   200
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   201
	  (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   202
	else \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   203
	  (ret) = __STX_C_CALL3((void*)_rtl_write,(void *)fileno(f), (void *)(cp), (void *)(n));\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   204
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   205
# else /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   206
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   207
      { int __res;\
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   208
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   209
	  (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   210
	else { \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   211
	  (ret) = __STX_API_CALL5((void*)ReadFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void *)0);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   212
	  if (ret) \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   213
	    ret = __res; \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   214
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   215
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   216
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   217
      { int __res;\
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   218
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   219
	  (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   220
	else {\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   221
	  (ret) = __STX_API_CALL5((void*)WriteFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void*)0);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   222
	  if (ret) \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   223
	    ret = __res; \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   224
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   225
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   226
# endif /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   227
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   228
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   229
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   230
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   231
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   232
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   233
//#define __READING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   234
//#define __WRITING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   235
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   236
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   237
     && (__INST(mode) == @symbol(readwrite))) {  \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   238
	__INST(didWrite) = false;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   239
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   240
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   241
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   242
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   243
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   244
     && (__INST(mode) == @symbol(readwrite))) {  \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   245
	__INST(didWrite) = true;                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   246
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   247
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   248
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   249
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   250
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   251
	ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   252
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   253
      __INST(readAhead) = __MKSMALLINT((c));            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   254
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   255
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   256
# define __READBYTE__(ret, f, buf, isBuffered)          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   257
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   258
	for (;;) {                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   259
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   260
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   261
	    if ((ret) >= 0) {                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   262
		*(buf) = (ret);                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   263
		(ret) = 1;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   264
	    } else if (ferror(f)) {                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   265
		if (__threadErrno == EINTR) {                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   266
		    clearerr(f);                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   267
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   268
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   269
	    } else                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   270
		(ret) = 0;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   271
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   272
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   273
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   274
	OBJ rA = __INST(readAhead);                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   275
	if (rA != nil) {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   276
	    *(buf) = (char)__intVal(rA);                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   277
	    __INST(readAhead) = nil;                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   278
	    (ret) = 1;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   279
	} else {                                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   280
	    for (;;) {                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   281
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   282
		READ(ret,f, buf, 1);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   283
		if ((ret) >= 0 || __threadErrno != EINTR)       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   284
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   285
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   286
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   287
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   288
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   289
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   290
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   291
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   292
   */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   293
# define __READBYTES__(ret, f, buf, cnt, isBuffered)    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   294
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   295
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   296
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   297
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   298
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   299
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   300
	    if ((ret) < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   301
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   302
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   303
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   304
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   305
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   306
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   307
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   308
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   309
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   310
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   311
	    (buf)[__offs++] = (ret);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   312
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   313
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   314
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   315
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   316
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   317
							\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   318
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   319
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   320
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   321
		(buf)[__offs] = __intVal(rA);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   322
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   323
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   324
	    } else {                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   325
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   326
		READ(ret, f, (buf)+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   327
		if ((ret) <= 0) {                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   328
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   329
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   330
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   331
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   332
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   333
		__offs += (ret);                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   334
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   335
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   336
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   337
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   338
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   339
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   340
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   341
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   342
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   343
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   344
#define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   345
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   346
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   347
    int oldFlags;                                       \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   348
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   349
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   350
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   351
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   352
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   353
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   354
	    if ((ret) < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   355
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   356
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   357
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   358
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   359
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   360
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   361
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   362
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   363
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   364
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   365
	    (buf)[__offs++] = (ret);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   366
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   367
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   368
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   369
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   370
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   371
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   372
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   373
		(buf)[__offs] = __intVal(rA);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   374
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   375
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   376
		continue;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   377
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   378
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   379
	    {                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   380
	      int res, __cnt;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   381
	      if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   382
		  if (res > 0) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   383
		      if (res > ((cnt)-__offs))         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   384
			res = (cnt)-__offs;             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   385
		      READ(__cnt, f, (buf)+__offs, res);   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   386
		  } else {                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   387
		      __cnt = 0;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   388
		  }                                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   389
	      } else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   390
		  if (res > 0) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   391
		      if (res > ((cnt)-__offs))         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   392
			res = (cnt)-__offs;             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   393
		      READ(__cnt ,f, (buf)+__offs, res);   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   394
		  } else                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   395
		      __cnt = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   396
	      } else {                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   397
		  READ(__cnt, f, (buf)+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   398
	      }                                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   399
	      if (__cnt < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   400
		  if (__threadErrno == EINTR) {                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   401
		      continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   402
		  }                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   403
		  break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   404
	      }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   405
	      __offs += __cnt;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   406
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   407
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   408
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   409
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   410
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   411
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   412
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   413
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   414
# define __READBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   415
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   416
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   417
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   418
    int __cnt;                                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   419
    char *buf = (char *)(obj);                          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   420
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   421
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   422
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   423
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   424
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   425
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   426
	    if ((ret) < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   427
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   428
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   429
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   430
			/* refetch */                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   431
			buf = (char *)(obj);            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   432
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   433
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   434
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   435
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   436
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   437
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   438
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   439
	    (buf)[__ooffs+__offs] = (ret);              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   440
	    __offs++;                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   441
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   442
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   443
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   444
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   445
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   446
	    char __buf[1024];                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   447
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   448
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   449
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   450
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   451
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   452
	    } else {                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   453
		int l;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   454
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   455
		l = (cnt)-__offs;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   456
		if ( l > 1024)                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   457
		  l = 1024;                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   458
		READ(__cnt, f, __buf, l);               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   459
		if (__cnt <= 0) {                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   460
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   461
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   462
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   463
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   464
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   465
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   466
	    /* refetch */                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   467
	    buf = (volatile char *)(obj);               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   468
	    memcpy((buf)+__ooffs+__offs,__buf, __cnt);  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   469
	    __offs += __cnt;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   470
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   471
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   472
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   473
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   474
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   475
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   476
# define __READAVAILBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered)\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   477
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   478
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   479
    int __offs = 0;                                  \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   480
    int __cnt;                                       \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   481
    char *buf = (char *)(obj);                       \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   482
						     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   483
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   484
    if (isBuffered) {                                \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   485
	while (__offs < (cnt)) {                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   486
	    CLEAR_ERRNO;                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   487
	    (ret) = getc(f);                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   488
	    if ((ret) < 0) {                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   489
		if (ferror(f)) {                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   490
		    if (__threadErrno == EINTR) {            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   491
			clearerr(f);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   492
			/* refetch */                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   493
			buf = (char *)(obj);         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   494
			continue;                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   495
		    }                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   496
		} else {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   497
		    (ret) = 0;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   498
		}                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   499
		break;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   500
	    }                                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   501
	    (buf)[__ooffs+__offs] = (ret);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   502
	    __offs++;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   503
	}                                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   504
	if (__offs > 0)                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   505
	    (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   506
    } else {                                         \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   507
	while (__offs < (cnt)) {                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   508
	    char __buf[1024];                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   509
	    OBJ rA = __INST(readAhead);              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   510
	    if (rA != nil) {                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   511
		(buf)[__ooffs+__offs] = __intVal(rA);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   512
		__INST(readAhead) = nil;             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   513
		__offs++;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   514
		continue;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   515
	    }                                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   516
	    {                                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   517
		int l;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   518
		int res;                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   519
		CLEAR_ERRNO;                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   520
		l = (cnt)-__offs;                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   521
		if ( l > 1024)                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   522
		    l = 1024;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   523
		if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   524
		if (res > 0) {                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   525
			if (res > l)                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   526
			    res = l;                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   527
			READ(__cnt ,f, __buf, res);     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   528
		    } else {                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   529
			__cnt = 0;                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   530
		    }                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   531
		} else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   532
		    if (res > 0) {                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   533
			if (res > l)                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   534
			    res = l;                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   535
			READ(__cnt ,f, __buf, res);  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   536
		    } else                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   537
			__cnt = 0;                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   538
		} else {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   539
		    READ(__cnt, f, __buf, l);        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   540
		}                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   541
		if (__cnt < 0 && __threadErrno == EINTR) {   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   542
		    continue;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   543
		}                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   544
	    }                                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   545
	    /* refetch */                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   546
	    buf = (volatile char *)(obj);               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   547
	    memcpy((buf)+__ooffs+__offs,__buf, __cnt);  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   548
	    __offs += __cnt;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   549
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   550
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   551
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   552
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   553
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   554
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   555
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   556
# define __WRITEBYTE__(ret, f, buf, isBuffered)         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   557
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   558
	for (;;) {                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   559
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   560
	    ret = putc(*(buf), f);                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   561
	    if ((ret) >= 0) {                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   562
		(ret) = 1;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   563
	    } else if (ferror(f)) {                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   564
		if (__threadErrno == EINTR) {                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   565
		    clearerr(f);                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   566
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   567
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   568
	    } else                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   569
		(ret) = 0;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   570
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   571
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   572
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   573
	for (;;) {                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   574
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   575
	    WRITE(ret,f, buf, 1);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   576
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   577
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   578
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   579
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   580
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   581
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   582
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   583
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   584
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   585
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   586
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   587
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   588
	    if ((ret) <= 0) {                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   589
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   590
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   591
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   592
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   593
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   594
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   595
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   596
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   597
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   598
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   599
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   600
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   601
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   602
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   603
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   604
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   605
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   606
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   607
	    WRITE(ret,f, (buf)+__offs, (cnt)-__offs);   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   608
	    if (ret <= 0) {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   609
		if (ret < 0 && __threadErrno == EINTR) {        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   610
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   611
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   612
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   613
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   614
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   615
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   616
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   617
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   618
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   619
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   620
# define __WRITEBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   621
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   622
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   623
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   624
    char *buf = (char *)(obj);                          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   625
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   626
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   627
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   628
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   629
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   630
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   631
	    if ((ret) <= 0) {                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   632
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   633
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   634
			/* refetch */                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   635
			buf = (char *)(obj);            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   636
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   637
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   638
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   639
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   640
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   641
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   642
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   643
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   644
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   645
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   646
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   647
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   648
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   649
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   650
	    char __buf[1024];                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   651
	    int l;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   652
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   653
	    l = (cnt)-__offs;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   654
	    if ( l > 1024)                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   655
	      l = 1024;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   656
	    /* refetch */                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   657
	    buf = (volatile char *)(obj);               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   658
	    memcpy(__buf,(buf)+__ooffs+__offs,l);       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   659
	    WRITE(ret,f, __buf, l);                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   660
	    if (ret <= 0) {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   661
		if (ret < 0 && __threadErrno == EINTR) {        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   662
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   663
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   664
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   665
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   666
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   667
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   668
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   669
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   670
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   671
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   672
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   673
#else /* no WIN32 */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   674
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   675
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   676
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   677
     && (__INST(mode) == @symbol(readwrite))) {  \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   678
	__INST(didWrite) = false;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   679
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   680
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   681
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   682
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   683
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   684
     && (__INST(mode) == @symbol(readwrite))) {  \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   685
	__INST(didWrite) = true;                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   686
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   687
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   688
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   689
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   690
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   691
#  define __UNGETC__(c, f, isBuffered)                  \
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   692
    __INST(readAhead) = __MKSMALLINT((c));
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   693
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   694
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   695
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   696
	ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   697
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   698
	__INST(readAhead) = __MKSMALLINT((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   699
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   700
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   701
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   702
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   703
#  define __READBYTE__(ret, f, buf, isBuffered)         \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   704
    {                                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   705
	OBJ rA = __INST(readAhead);                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   706
	if (rA != nil) {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   707
	    *(buf) = __intVal(rA);                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   708
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   709
	    __INST(readAhead) = nil;                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   710
	    (ret) = 1;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   711
	} else {                                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   712
	    for (;;) {                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   713
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   714
		(ret) = READ(f, buf, 1);                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   715
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   716
		if ((ret) >= 0 || __threadErrno != EINTR)       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   717
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   718
		__HANDLE_INTERRUPTS__;                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   719
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   720
	}                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   721
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   722
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   723
#  define __READBYTE__(ret, f, buf, isBuffered)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   724
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   725
	for (;;) {                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   726
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   727
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   728
	    if ((ret) >= 0) {                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   729
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   730
		*(buf) = (ret);                         \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   731
		(ret) = 1;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   732
	    } else if (ferror(f)) {                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   733
		if (__threadErrno == EINTR) {                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   734
		    __HANDLE_INTERRUPTS__;              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   735
		    clearerr(f);                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   736
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   737
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   738
	    } else                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   739
		(ret) = 0;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   740
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   741
	}                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   742
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   743
	OBJ rA = __INST(readAhead);                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   744
	if (rA != nil) {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   745
	    *(buf) = __intVal(rA);                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   746
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   747
	    __INST(readAhead) = nil;                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   748
	    (ret) = 1;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   749
	} else {                                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   750
	    for (;;) {                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   751
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   752
		(ret) = read(fileno(f), buf, 1);        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   753
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   754
		if ((ret) >= 0 || __threadErrno != EINTR)       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   755
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   756
		__HANDLE_INTERRUPTS__;                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   757
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   758
	}                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   759
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   760
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   761
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   762
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   763
 * read_bytes into a c-buffer
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   764
 * (which may NOT move)
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   765
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   766
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   767
#  define __READBYTES__(ret, f, buf, cnt, isBuffered)   \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   768
    {                                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   769
	int __offs = 0, __cnt;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   770
							\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   771
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   772
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   773
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   774
		(buf)[__offs] = __intVal(rA);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   775
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   776
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   777
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   778
	    } else {                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   779
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   780
		__cnt = READ(f, (buf)+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   781
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   782
		if (__cnt <= 0) {                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   783
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   784
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   785
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   786
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   787
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   788
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   789
		__offs += __cnt;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   790
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   791
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   792
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   793
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   794
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   795
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   796
#  define __READBYTES__(ret, f, buf, cnt, isBuffered)     \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   797
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   798
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   799
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   800
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   801
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   802
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   803
	    if ((ret) < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   804
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   805
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   806
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   807
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   808
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   809
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   810
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   811
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   812
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   813
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   814
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   815
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   816
	    (buf)[__offs++] = (ret);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   817
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   818
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   819
	    (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   820
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   821
	int __offs = 0, __cnt;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   822
	int fd = fileno(f);                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   823
							\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   824
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   825
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   826
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   827
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   828
		(buf)[__offs] = __intVal(rA);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   829
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   830
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   831
	    } else {                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   832
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   833
		__cnt = read(fd, (buf)+__offs, (cnt)-__offs);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   834
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   835
		if (__cnt <= 0) {                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   836
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   837
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   838
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   839
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   840
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   841
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   842
		__offs += __cnt;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   843
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   844
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   845
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   846
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   847
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   848
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   849
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   850
/*
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   851
 * FNDELAY and O_NDELAY is deprecated, O_NONBLOCK is used in POSIX, XPG, etc...
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   852
 */
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   853
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   854
# if defined(F_GETFL) && defined(F_SETFL) && (defined(O_NONBLOCK) || defined(O_NDELAY) || defined(FNDELAY))
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   855
#  define GETFLAGS(fd) \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   856
	fcntl(fd, F_GETFL, 0);
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   857
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   858
#  define SETFLAGS(fd, flags) \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   859
	fcntl(fd, F_SETFL, flags)
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   860
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   861
# if defined(O_NONBLOCK)
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   862
#  define __STX_NONBLOCK_FLAG O_NONBLOCK
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   863
# else
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   864
#  if defined(O_NDELAY)
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   865
#   define __STX_NONBLOCK_FLAG O_NDELAY
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   866
#  else
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   867
#   define __STX_NONBLOCK_FLAG FNDELAY
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   868
#  endif
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   869
# endif
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   870
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   871
#  define SETNONBLOCKING(fd) \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   872
	{ \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   873
	    int flags; \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   874
	    flags = fcntl(fd, F_GETFL, 0); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   875
	    if (flags >= 0) { \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   876
		fcntl(fd, F_SETFL, flags | __STX_NONBLOCK_FLAG); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   877
	    } \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   878
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   879
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   880
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   881
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   882
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   883
# endif                                                        
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   884
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   885
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   886
  {                                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   887
    int __offs = 0, __cnt;                                     \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   888
    int oldFlags;                                       \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   889
							\
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   890
    (ret) = 0;                                          \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   891
    oldFlags = GETFLAGS(fileno(f));                     \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   892
    SETNONBLOCKING(fileno(f));                          \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   893
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   894
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   895
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   896
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   897
	    if ((ret) < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   898
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   899
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   900
			(ret) = 0;                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   901
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   902
			break;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   903
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   904
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   905
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   906
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   907
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   908
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   909
	    (buf)[__offs++] = (ret);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   910
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   911
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   912
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   913
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   914
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   915
	int fd = fileno(f);                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   916
							\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   917
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   918
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   919
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   920
		(buf)[__offs] = __intVal(rA);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   921
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   922
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   923
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   924
		continue;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   925
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   926
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   927
	    __cnt = read(fd, (buf)+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   928
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   929
	    if (__cnt > 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   930
		__offs += __cnt;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   931
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   932
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   933
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   934
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   935
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   936
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   937
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   938
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   939
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   940
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   941
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   942
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   943
 * read_bytes into an object
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   944
 * (which may be moved by GC)
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   945
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   946
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   947
#  define __READBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered)     \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   948
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   949
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   950
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   951
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   952
    char *buf = (char *)(obj);                          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   953
							\
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   954
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   955
    {                                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   956
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   957
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   958
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   959
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   960
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   961
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   962
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   963
	    } else {                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   964
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   965
		__cnt = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   966
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   967
		if (__cnt <= 0) {                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   968
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   969
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   970
			/* refetch */                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   971
			buf = (char *)(obj);            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   972
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   973
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   974
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   975
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   976
		__offs += __cnt;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   977
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   978
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   979
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   980
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   981
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   982
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   983
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   984
#  define __READBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered)     \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   985
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   986
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   987
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   988
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   989
    char *buf = (char *)(obj);                          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   990
							\
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   991
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   992
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   993
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   994
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   995
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   996
	    if ((ret) < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   997
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   998
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   999
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1000
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1001
			/* refetch */                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1002
			buf = (char *)(obj);            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1003
			DEBUGBUFFER(buf);               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1004
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1005
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1006
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1007
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1008
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1009
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1010
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1011
	    (buf)[__ooffs+__offs] = (ret);              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1012
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1013
	    __offs++;                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1014
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1015
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1016
	    (ret) = __offs;                             \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1017
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1018
	int fd = fileno(f);                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1019
							\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1020
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1021
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1022
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1023
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1024
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1025
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1026
		__offs++;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1027
	    } else {                                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1028
		CLEAR_ERRNO;                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1029
		__cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1030
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1031
		if (__cnt <= 0) {                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1032
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1033
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1034
			/* refetch */                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1035
			buf = (char *)(obj);            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1036
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1037
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1038
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1039
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1040
		__offs += __cnt;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1041
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1042
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1043
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1044
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1045
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1046
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1047
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1048
# define __READAVAILBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered)     \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1049
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1050
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1051
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1052
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1053
    char *buf = (char *)(obj);                          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1054
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1055
    (ret) = 0;                                          \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1056
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1057
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1058
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1059
	    (ret) = getc(f);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1060
	    if ((ret) < 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1061
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1062
		    if (__threadErrno == EINTR) {       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1063
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1064
			/* refetch */                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1065
			buf = (char *)(obj);            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1066
			(ret) = 0;                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1067
			break;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1068
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1069
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1070
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1071
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1072
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1073
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1074
	    (buf)[__ooffs+__offs] = (ret);              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1075
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1076
	    __offs++;                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1077
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1078
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1079
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1080
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1081
	int fd = fileno(f);                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1082
							\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1083
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1084
	    OBJ rA = __INST(readAhead);                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1085
	    if (rA != nil) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1086
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1087
		DEBUGBUFFER(buf);                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1088
		__INST(readAhead) = nil;                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1089
		__offs++;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1090
		continue;                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1091
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1092
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1093
	    __cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1094
	    DEBUGBUFFER(buf);                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1095
	    if (__cnt > 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1096
		__offs += __cnt;                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1097
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1098
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1099
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1100
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1101
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1102
    }                                                   \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1103
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1104
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1105
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1106
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1107
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1108
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1109
#  define __WRITEBYTE__(ret, f, buf, isBuffered)          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1110
	for (;;) {                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1111
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1112
	    (ret) = WRITE(f, buf, 1);                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1113
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1114
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1115
	    __HANDLE_INTERRUPTS__;                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1116
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1117
# else
4968
ff01ac91efa3 Fix buffered nexPut: for Solaris/Sparc
Stefan Vogel <sv@exept.de>
parents: 4914
diff changeset
  1118
#  define __WRITEBYTE__(ret, f, buf, isBuffered)        \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1119
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1120
	for (;;) {                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1121
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1122
	    ret = putc(*(buf), f);                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1123
	    if ((ret) >= 0) {                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1124
		(ret) = 1;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1125
	    } else if (ferror(f)) {                     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1126
		/* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1127
		if (__threadErrno == EINTR || __threadErrno == 0) {     \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1128
		    __HANDLE_INTERRUPTS__;              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1129
		    clearerr(f);                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1130
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1131
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1132
	    } else                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1133
		(ret) = 0;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1134
	    break;                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1135
	}                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1136
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1137
	for (;;) {                                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1138
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1139
	    (ret) = write(fileno(f), buf, 1);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1140
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1141
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1142
	    __HANDLE_INTERRUPTS__;                      \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1143
	}                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1144
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1145
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1146
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1147
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1148
 * write_bytes from a c-buffer
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1149
 * (which may NOT move)
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1150
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1151
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1152
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1153
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1154
    {                                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1155
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1156
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1157
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1158
	    ret = WRITE(f, (buf)+__offs, (cnt)-__offs); \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1159
	    if (ret <= 0) {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1160
		if (ret < 0 && __threadErrno == EINTR) {        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1161
		    __HANDLE_INTERRUPTS__;              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1162
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1163
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1164
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1165
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1166
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1167
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1168
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1169
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1170
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1171
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1172
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1173
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1174
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1175
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1176
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1177
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1178
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1179
	    if ((ret) <= 0) {                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1180
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1181
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1182
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1183
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1184
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1185
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1186
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1187
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1188
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1189
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1190
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1191
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1192
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1193
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1194
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1195
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1196
	int __offs = 0;                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1197
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1198
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1199
	    ret = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1200
	    if (ret <= 0) {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1201
		if (ret < 0 && __threadErrno == EINTR) {        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1202
		    __HANDLE_INTERRUPTS__;              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1203
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1204
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1205
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1206
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1207
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1208
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1209
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1210
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1211
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1212
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1213
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1214
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1215
 * write_bytes from an object
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1216
 * (which may be moved around by GC)
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1217
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1218
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1219
#  define __WRITEBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered)            \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1220
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1221
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1222
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1223
    char *buf = (char *)(obj);                          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1224
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1225
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1226
    {                                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1227
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1228
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1229
	    ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs);               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1230
	    if (ret <= 0) {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1231
		if (ret < 0 && __threadErrno == EINTR) {        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1232
		    __HANDLE_INTERRUPTS__;              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1233
		    /* refetch */                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1234
		    buf = (char *)(obj);                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1235
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1236
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1237
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1238
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1239
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1240
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1241
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1242
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1243
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1244
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1245
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1246
#  define __WRITEBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered)            \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1247
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1248
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1249
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1250
    char *buf = (char *)(obj);                          \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1251
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1252
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1253
    if (isBuffered) {                                   \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1254
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1255
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1256
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1257
	    if ((ret) <= 0) {                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1258
		if (ferror(f)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1259
		    if (__threadErrno == EINTR) {               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1260
			__HANDLE_INTERRUPTS__;          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1261
			/* refetch */                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1262
			buf = (char *)(obj);            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1263
			clearerr(f);                    \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1264
			continue;                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1265
		    }                                   \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1266
		    break;                              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1267
		} else {                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1268
		    (ret) = 0;                          \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1269
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1270
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1271
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1272
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1273
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1274
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1275
    } else {                                            \
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1276
	while (__offs < (cnt)) {                        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1277
	    CLEAR_ERRNO;                                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1278
	    ret = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs);       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1279
	    if (ret <= 0) {                             \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1280
		if (ret < 0 && __threadErrno == EINTR) {        \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1281
		    __HANDLE_INTERRUPTS__;              \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1282
		    /* refetch */                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1283
		    buf = (char *)(obj);                \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1284
		    continue;                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1285
		}                                       \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1286
		break;                                  \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1287
	    }                                           \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1288
	    __offs += (ret);                            \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1289
	}                                               \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1290
	if (__offs > 0)                                 \
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  1291
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1292
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1293
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1294
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1295
#endif /* unix */
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1296
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1297
/*
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1298
 * on some systems errno is a macro ... check for it here
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1299
 */
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1300
#ifndef errno
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1301
 extern errno;
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1302
#endif
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1303
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1304
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1305
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1306
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1307
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1308
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1309
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1310
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1311
 COPYRIGHT (c) 1988 by Claus Gittinger
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1312
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1313
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1314
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1315
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1316
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1317
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1318
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1319
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1320
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1321
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1322
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1323
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1324
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1325
    ExternalStream defines protocol common to Streams which have a file-descriptor and 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1326
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1327
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1328
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1329
    ExternalStreams can be in two modes: text- (the default) and binary-mode.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1330
    In text-mode, the elements read/written are characters; 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1331
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1332
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1333
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1334
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1335
    data is not written until either a cr is written (in text mode) or a synchronizeOutput
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1336
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1337
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1338
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1339
    or just forgotten - in this case, the garbage collector will eventually collect the
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1340
    object AND a close will be performed automatically (but you will NOT know when this 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1341
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1342
    Closing is also suggested, since if smalltalk is finished (be it by purpose, or due to
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1343
    some crash) the data will not be in the file, if unclosed. 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1344
    All streams understand the close message, so it never hurts to use it (it is defined as 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1345
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1346
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1347
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1348
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1349
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1350
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1351
      not all streams can be restored to the state they had before - see the implementation of
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1352
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1353
      For streams sitting on some communication channel (i.e. Pipes and Sockets) you should
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1354
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1355
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1356
      This may fail, if the file was removed or renamed - or lead to confusion
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1357
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1358
      Therefore, it is a good idea to reopen files and check for these things at restart time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1359
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1360
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1361
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1362
	filePointer     <Integer>       the unix FILE*; somehow mapped to an integer
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1363
					(notice: not the fd)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1364
					on Windows: the fileHandle
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1365
	mode            <Symbol>        #readwrite, #readonly or #writeonly
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1366
	buffered        <Boolean>       true, if buffered (i.e. collects characters - does
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1367
					not output immediately)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1368
	binary          <Boolean>       true if in binary mode (reads bytes instead of chars)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1369
	eolMode         <Symbol>        one of nil, #cr or #crlf.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1370
					determines how lines should be terminated.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1371
					nil -> newLine (as in Unix);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1372
					#crlf -> with cr-lf (as in MSDOS)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1373
					#cr -> with cr (as in VMS)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1374
	hitEOF          <Boolean>       true, if EOF was reached
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1375
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1376
	lastErrorNumber <Integer>       the value of errno (only valid right after the error -
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1377
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1378
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1379
    [Class variables:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1380
	Lobby           <Registry>      keeps track of used ext-streams (to free up FILE*'s)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1381
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1382
	StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1383
	InvalidReadSignal       <Signal> raised on read from writeonly stream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1384
	InvalidWriteSignal      <Signal> raised on write to readonly stream 
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1385
	InvalidModeSignal       <Signal> raised on text I/O with binary-stream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1386
					 or binary I/O with text-stream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1387
	OpenErrorSignal         <Signal> raised if open fails
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1388
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1389
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1390
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1391
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1392
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1393
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1394
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1395
      not prepared for data to arrive after EOF has been reached - time will show, if we need
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1396
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1397
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1398
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1399
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1400
      is handled transparently - on SYS5.3 (i.e. non unixes :-) the read operation returns
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1401
      an error and errno is set to EINTR. 
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1402
      Thats what the ugly code around all getc-calls is for ...
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1403
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1404
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1405
claus
parents: 308
diff changeset
  1406
      Notice that typical stdio's use a single errno global variable to return an error code,
claus
parents: 308
diff changeset
  1407
      this was bad design in the stdio lib (right from the very beginning), since its much
claus
parents: 308
diff changeset
  1408
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1409
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1410
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1411
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1412
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1413
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1414
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1415
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1416
      Finally, if an stdio-stream is open for both reading and writing, we have to call
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1417
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1418
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1419
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1420
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1421
    [author:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1422
	Claus Gittinger
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1423
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1424
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1425
    [see also:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1426
	FileStream Socket PipeStream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1427
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1428
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1429
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1430
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1431
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1432
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1433
    open a file, read the contents and display it in a textView:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1434
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1435
	|topView scrollPane textView fileStream text|
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1436
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1437
	topView := StandardSystemView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1438
	topView label:'contents of Makefile'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1439
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1440
	scrollPane := HVScrollableView in:topView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1441
	scrollPane origin:0.0@0.0 corner:1.0@1.0.
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1442
        
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1443
	textView := EditTextView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1444
	scrollPane scrolledView:textView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1445
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1446
	fileStream := 'Makefile' asFilename readStream.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1447
	text := fileStream upToEnd.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1448
	fileStream close.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1449
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1450
	textView contents:text.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1451
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1452
	topView open.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1453
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1454
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1455
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1456
    Notice, all of the above can also be done (simply) as:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1457
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1458
	EditTextView openOn:'Makefile'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1459
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1460
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1461
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1462
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1463
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1464
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1465
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1466
    OperatingSystem isUNIXlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1467
	"/ unix EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1468
	DefaultEOLMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1469
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1470
	OperatingSystem isVMSlike ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1471
	    "/ vms EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1472
	    DefaultEOLMode := #cr
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1473
	] ifFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1474
	    "/ msdos EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1475
	    DefaultEOLMode := #crlf
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1476
	]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1477
    ]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1478
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1479
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1480
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1481
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1482
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1483
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1484
    OperatingSystem isMSDOSlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1485
	ReadMode := 'rb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1486
	ReadWriteMode := 'rb+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1487
	WriteMode := 'wb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1488
	AppendMode := 'ab+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1489
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1490
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1491
	ReadMode := 'r'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1492
	ReadWriteMode := 'r+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1493
	WriteMode := 'w'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1494
	AppendMode := 'a+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1495
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1496
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1497
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1498
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1499
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1500
    OpenErrorSignal isNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1501
	OpenErrorSignal := StreamErrorSignal newSignalMayProceed:true.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1502
	OpenErrorSignal nameClass:self message:#openErrorSignal.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1503
	OpenErrorSignal notifierString:'open error'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1504
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1505
	InvalidReadSignal := ReadErrorSignal newSignalMayProceed:false.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1506
	InvalidReadSignal nameClass:self message:#invalidReadSignal.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1507
	InvalidReadSignal notifierString:'read error'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1508
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1509
	InvalidWriteSignal := WriteErrorSignal newSignalMayProceed:false.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1510
	InvalidWriteSignal nameClass:self message:#invalidWriteSignal.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1511
	InvalidWriteSignal notifierString:'write error'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1512
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1513
	InvalidModeSignal :=  StreamErrorSignal newSignalMayProceed:false.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1514
	InvalidModeSignal nameClass:self message:#invalidModeSignal.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1515
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1516
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1517
	InvalidOperationSignal :=  StreamErrorSignal newSignalMayProceed:false.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1518
	InvalidOperationSignal nameClass:self message:#invalidOperationSignal.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1519
	InvalidOperationSignal notifierString:'unsupported file operation'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1520
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1521
	StreamNotOpenSignal := StreamErrorSignal newSignalMayProceed:false.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1522
	StreamNotOpenSignal nameClass:self message:#streamNotOpenSignal.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1523
	StreamNotOpenSignal notifierString:'stream is not open'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1524
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1525
	StreamIOErrorSignal := StreamErrorSignal newSignalMayProceed:false.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1526
	StreamIOErrorSignal nameClass:self message:#streamIOErrorSignal.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1527
	StreamIOErrorSignal notifierString:'I/O error'.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1528
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1529
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1530
    Lobby isNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1531
	Lobby := Registry new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1532
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1533
	"want to get informed when returning from snapshot"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1534
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1535
    ].
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1536
    DefaultEOLMode isNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1537
	self initDefaultEOLMode.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1538
    ].
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1539
    ReadMode isNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1540
	self initModeStrings.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1541
    ].
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1542
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1543
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1544
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1545
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1546
    "reopen all files (if possible) after a snapShot load.
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1547
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1548
301
35e40a6fc72b *** empty log message ***
claus
parents: 269
diff changeset
  1549
    Lobby do:[:aFileStream |
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1550
	aFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1551
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1552
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1553
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1554
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1555
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1556
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1557
    something == #earlyRestart ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1558
	self reOpenFiles.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1559
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1560
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1561
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1562
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1563
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1564
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1565
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1566
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1567
forFileDescriptor:aFileDescriptor mode:modeString
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1568
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1569
     to operate on this fd. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1570
     The mode-argument is passed to the fdopen call.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1571
     This may be used to wrap fd's as returned by user 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1572
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1573
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1574
    ^ self forFileDescriptor:aFileDescriptor mode:modeString buffered:true
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1575
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1576
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1577
     the example below will probably fail (15 is a random FD):
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1578
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1579
     |s|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1580
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1581
     s := ExternalStream forFileDescriptor:15 mode:'r'.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1582
     s next.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1583
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1584
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1585
    "Created: 29.2.1996 / 18:05:00 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1586
    "Modified: 29.2.1996 / 18:17:07 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1587
!
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1588
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1589
forFileDescriptor:aFileDescriptor mode:modeString buffered:buffered
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1590
    "given a fileDescriptor, create an ExternalStream object
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1591
     to operate on this fd. 
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1592
     The mode-argument is passed to the fdopen call.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1593
     This may be used to wrap fd's as returned by user 
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1594
     primitive code, or to wrap pipe-fds into externalStreams."
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1595
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1596
    |newStream|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1597
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1598
    newStream := self basicNew.
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1599
    newStream text; buffered:buffered; eolMode:DefaultEOLMode; clearEOF.
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1600
    ^ newStream connectTo:aFileDescriptor withMode:modeString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1601
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1602
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1603
     the example below will probably fail (15 is a random FD):
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1604
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1605
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1606
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1607
     s := ExternalStream forFileDescriptor:15 mode:'r'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1608
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1609
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1610
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1611
    "Created: 29.2.1996 / 18:05:00 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1612
    "Modified: 29.2.1996 / 18:17:07 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1613
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1614
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1615
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1616
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1617
     to read/write from/to this fd. This may be used to wrap fd's
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1618
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1619
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1620
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1621
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadWriteMode) readwrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1622
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1623
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1624
     the example below will probably fail (15 is a random FD):
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1625
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1626
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1627
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1628
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1629
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1630
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1631
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1632
    "Created: 29.2.1996 / 18:15:08 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1633
    "Modified: 29.2.1996 / 18:16:25 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1634
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1635
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1636
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1637
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1638
     to read from this fd. This may be used to wrap fd's
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1639
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1640
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1641
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1642
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadMode) readonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1643
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1644
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1645
     the example below will probably fail (15 is a random FD):
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1646
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1647
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1648
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1649
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1650
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1651
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1652
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1653
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1654
     |pipe readFd writeFd rs ws|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1655
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1656
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1657
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1658
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1659
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1660
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1661
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1662
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1663
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1664
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1665
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1666
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1667
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1668
     [
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1669
	 1 to:10 do:[:i |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1670
	     Transcript showCR:rs nextLine
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1671
	 ].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1672
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1673
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1674
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1675
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1676
     [
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1677
	 1 to:10 do:[:i |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1678
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1679
	 ].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1680
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1681
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1682
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1683
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1684
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1685
    "Created: 29.2.1996 / 18:14:24 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1686
    "Modified: 29.2.1996 / 18:25:02 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1687
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1688
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1689
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1690
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1691
     to write to this fd. This may be used to wrap fd's
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1692
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1693
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1694
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1695
    ^ (self forFileDescriptor:aFileDescriptor mode:WriteMode) writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1696
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1697
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1698
     the example below will probably fail (15 is a random FD):
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1699
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1700
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1701
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1702
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1703
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1704
     s nextPut:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1705
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1706
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1707
    "Created: 29.2.1996 / 18:14:43 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1708
    "Modified: 29.2.1996 / 18:15:54 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1709
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1710
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1711
new
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1712
    |newStream|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1713
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1714
    newStream := self basicNew.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1715
    newStream text; buffered:true; eolMode:DefaultEOLMode; clearEOF.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1716
    ^ newStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1717
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1718
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1719
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1720
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1721
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1722
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1723
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1724
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1725
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1726
    "Created: 2.7.1996 / 12:27:16 / stefan"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1727
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1728
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1729
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1730
    "return the signal raised when doing text-I/O with a binary stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1731
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1732
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1733
    ^ InvalidModeSignal
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1734
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1735
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1736
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1737
    "return the signal raised when an unsupported or invalid
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1738
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1739
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1740
    ^ InvalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1741
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1742
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1743
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1744
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1745
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1746
    ^ InvalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1747
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1748
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1749
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1750
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1751
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1752
    ^ InvalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1753
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1754
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1755
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1756
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1757
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1758
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1759
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1760
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1761
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1762
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1763
     (for example, a device-IO-error, or reading an NFS-dir,
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1764
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1765
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1766
    ^ StreamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1767
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1768
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1769
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1770
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1771
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1772
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1773
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1774
    ^ StreamNotOpenSignal
2
claus
parents: 1
diff changeset
  1775
! !
claus
parents: 1
diff changeset
  1776
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1777
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1778
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1779
errorReporter
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1780
    "I know about error codes"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1781
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1782
    ^ self
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1783
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1784
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1785
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1786
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1787
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1788
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1789
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1790
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1791
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1792
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1793
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1794
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1795
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1796
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1797
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1798
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1799
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1800
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1801
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1802
    "
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1803
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1804
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1805
reportOn:anErrorSymbolOrNumber 
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1806
    "an error occured.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1807
     Report it via an Exception"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1808
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1809
    anErrorSymbolOrNumber isInteger ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1810
	StreamErrorSignal raiseRequestWith:anErrorSymbolOrNumber
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1811
	    errorString:' - os error:' 
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1812
		    , (OperatingSystem errorTextForNumber:anErrorSymbolOrNumber)
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1813
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1814
    (self respondsTo:anErrorSymbolOrNumber) ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1815
	self perform:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1816
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1817
	StreamErrorSignal raiseRequestWith:anErrorSymbolOrNumber
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1818
	    errorString:' - ' , anErrorSymbolOrNumber printString
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1819
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1820
    ^ false
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1821
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1822
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1823
!ExternalStream class methodsFor:'obsolete'!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1824
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1825
makePTYPair
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1826
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1827
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1828
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1829
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePTYPair'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1830
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1831
    ^ NonPositionableExternalStream makePTYPair.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1832
!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1833
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1834
makePipe
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1835
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1836
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1837
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1838
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePipe'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1839
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1840
    ^ NonPositionableExternalStream makePipe.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1841
! !
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1842
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1843
!ExternalStream methodsFor:'Compatibility-Dolphin'!
6474
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1844
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1845
beText
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1846
    self text
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1847
! !
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1848
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1849
!ExternalStream methodsFor:'Compatibility-Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1850
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1851
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1852
    "read elements into the argument, whose size determines the amount
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1853
     of bytes to read. If not enough elements could be read, return
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1854
     a copy of the argument; otherwise, return the filled argument."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1855
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1856
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1857
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1858
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1859
    n := self nextAvailableBytes:nWanted into:aByteArrayOrString startingAt:1.
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1860
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1861
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1862
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1863
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1864
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1865
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1866
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1867
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1868
     Squeak compatibility."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1869
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1870
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1871
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1872
    elementSize := aContainer class elementByteSize.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1873
    n := self nextBytes:nElements*elementSize into:aContainer startingAt:1.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1874
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1875
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1876
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1877
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1878
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1879
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1880
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1881
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1882
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1883
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1884
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1885
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1886
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1887
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1888
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1889
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1890
    ^ self class invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1891
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1892
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1893
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1894
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1895
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1896
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1897
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1898
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1899
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1900
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1901
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1902
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1903
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1904
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1905
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1906
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1907
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1908
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1909
buffered:aBoolean
10
claus
parents: 5
diff changeset
  1910
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1911
10
claus
parents: 5
diff changeset
  1912
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1913
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1914
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1915
contents
2
claus
parents: 1
diff changeset
  1916
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  1917
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  1918
     the byte values is returned.
claus
parents: 1
diff changeset
  1919
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  1920
     is returned."
claus
parents: 1
diff changeset
  1921
claus
parents: 1
diff changeset
  1922
    |text l chunks sizes chunk byteCount cnt bytes offset|
claus
parents: 1
diff changeset
  1923
claus
parents: 1
diff changeset
  1924
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1925
	"adding to a ByteArray produces quadratic time-space
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1926
	 behavior - therefore we allocate chunks, and concatenate them
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1927
	 at the end."
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1928
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1929
	chunks := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1930
	sizes := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1931
	byteCount := 0.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1932
	[self atEnd] whileFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1933
	    chunk := ByteArray uninitializedNew:4096.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1934
	    cnt := self nextBytes:(chunk size) into:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1935
	    cnt notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1936
		chunks add:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1937
		sizes add:cnt.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1938
		byteCount := byteCount + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1939
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1940
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1941
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1942
	"now, create one big ByteArray"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1943
	bytes := ByteArray uninitializedNew:byteCount.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1944
	offset := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1945
	1 to:chunks size do:[:index |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1946
	    chunk := chunks at:index.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1947
	    cnt := sizes at:index. 
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1948
	    bytes replaceFrom:offset to:(offset + cnt - 1) with:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1949
	    offset := offset + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1950
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1951
	^ bytes
2
claus
parents: 1
diff changeset
  1952
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1953
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  1954
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1955
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1956
	l := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1957
	l isNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1958
	    ^ text
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1959
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1960
	text add:l
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1961
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1962
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1963
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1964
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1965
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1966
    "ST-80 compatibility: return contents as a String (or byteArray, if in binary mode).
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  1967
     See also #contents, which returns the lines as stringCollection for text files."
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1968
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  1969
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1970
	^ self contents.
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1971
    ].
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  1972
    ^ self upToEnd
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1973
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  1974
    "Modified: / 3.7.1996 / 13:22:16 / stefan"
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1975
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  1976
!
claus
parents: 1
diff changeset
  1977
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1978
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1979
    "return the kind of object to be returned by sub-collection builders
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1980
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1981
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5431
diff changeset
  1982
    binary == true ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1983
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1984
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1985
    ^ String
2
claus
parents: 1
diff changeset
  1986
!
claus
parents: 1
diff changeset
  1987
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1988
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1989
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1990
     The argument may be one of:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1991
	#crlf         -> add a CR-NL, as in MSDOS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1992
	#cr           -> add a CR, as in VMS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1993
	#nl           -> add a NL, as in Unix
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1994
	anyOther      -> like #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1995
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1996
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1997
    eolMode := aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1998
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1999
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2000
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2001
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2002
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2003
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2004
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  2005
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2006
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2007
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2008
    if ((fp = __INST(filePointer)) != nil) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2009
	FILEPOINTER f;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2010
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2011
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2012
	RETURN ( __MKINT(fileno(f)) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2013
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2014
%}.
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2015
    filePointer isNil ifTrue:[^ self errorNotOpen].
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2016
    ^ self fileDescriptorOfFile:filePointer
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2017
!
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2018
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2019
fileDescriptorOfFile:filePointer
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2020
    "for migration to rel5 only:
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2021
     return the fileDescriptor of the argument filePointer -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2022
     notice: this one returns the underlying OSs fileDescriptor -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2023
     this may not be available on all platforms (i.e. non unix systems)."
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2024
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2025
    self primitiveFailed
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2026
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2027
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2028
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2029
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2030
     notice: for portability stdio is used; this means you will get
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2031
     a FILE * - not a fileDescriptor. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2032
     (what you really get is a corresponding integer).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2033
     You cannot do much with the returned value 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2034
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2035
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2036
    ^ filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2037
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2038
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2039
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2040
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2041
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2042
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2043
lineEndTransparent
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2044
    eolMode := #cr
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2045
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2046
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2047
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2048
    "set access mode to readonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2049
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2050
    mode := #readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2051
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2052
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2053
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2054
    "set access mode to readwrite"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2055
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2056
    mode := #readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2057
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2058
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2059
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2060
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2061
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2062
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2063
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2064
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2065
useCRLF:aBoolean
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2066
    "turn on or off CRLF sending (instead of LF only) - default is off.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2067
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2068
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2069
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2070
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2071
	eolMode := #crlf
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2072
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2073
	eolMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2074
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2075
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2076
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2077
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2078
    "set access mode to writeonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2079
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2080
    mode := #writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2081
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2082
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2083
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2084
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2085
argumentMustBeCharacter
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2086
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2087
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2088
    "report an error, that the argument must be a character"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2089
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2090
    ^ self error:'argument must be a character'
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2091
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2092
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2093
argumentMustBeInteger
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2094
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2095
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2096
    "report an error, that the argument must be an integer"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2097
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2098
    ^ self error:'argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2099
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2100
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2101
argumentMustBeString
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2102
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2103
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2104
    "report an error, that the argument must be a string"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2105
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2106
    ^ self error:'argument must be a string'
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2107
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2108
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2109
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2110
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2111
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2112
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2113
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2114
    ^ self class openErrorSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2115
	raiseRequestWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2116
	errorString:(self class name , ' is already open')
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2117
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2118
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2119
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2120
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2121
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2122
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2123
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2124
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2125
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2126
    ^ self invalidModeSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2127
	       raiseWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2128
	     errorString:(self class name , ' is in binary mode')
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2129
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2130
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2131
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2132
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2133
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2134
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2135
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2136
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2137
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2138
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2139
    ^ self invalidModeSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2140
	       raiseWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2141
	     errorString:(self class name , ' is not in binary mode')
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2142
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2143
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2144
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2145
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2146
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2147
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2148
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2149
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2150
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2151
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2152
    ^ StreamErrorSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2153
	raiseRequestWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2154
	     errorString:(self class name , ' is unbuffered - operation not allowed')
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2155
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2156
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2157
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2158
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2159
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2160
errorNotOpen
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2161
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2162
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2163
    "report an error, that the stream has not been opened"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2164
3467
54ccb6f7d886 oops - streamNotOpenSignal
Claus Gittinger <cg@exept.de>
parents: 3456
diff changeset
  2165
    ^ StreamNotOpenSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2166
	raiseWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2167
	errorString:(self class name , ' not open')
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2168
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2169
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2170
    "Modified: / 8.5.1999 / 20:12:33 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2171
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2172
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2173
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2174
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2175
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2176
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2177
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2178
    ^ self invalidWriteSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2179
	  raiseWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2180
	  errorString:(self class name , ' is readonly')
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2181
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2182
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2183
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2184
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2185
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2186
errorReporter
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2187
    "ST-80 mimicry."
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2188
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  2189
    ^ self class
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2190
!
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2191
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2192
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2193
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2194
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2195
    "report an error, that some unsupported operation was attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2196
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2197
    ^ self invalidOperationSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2198
	raiseWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2199
	errorString:'unsupported operation'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2200
		 "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2201
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2202
    "Modified: / 8.5.1999 / 20:12:24 / cg"
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2203
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2204
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2205
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2206
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2207
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2208
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2209
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2210
    ^ self invalidReadSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2211
	       raiseWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2212
	     errorString:(self class name , ' is writeonly')
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2213
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2214
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2215
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2216
!
claus
parents: 1
diff changeset
  2217
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2218
ioError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2219
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2220
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2221
    "report an error, that some I/O error occured.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2222
     (for example, a device-IO-error, or reading an NFS-dir,
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2223
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2224
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2225
    ^ StreamIOErrorSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2226
	       raiseWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2227
	     errorString:('I/O error: ' , self lastErrorString)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2228
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2229
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2230
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2231
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2232
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2233
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2234
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2235
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2236
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2237
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2238
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2239
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2240
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2241
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2242
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2243
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2244
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2245
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2246
!
claus
parents: 1
diff changeset
  2247
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2248
openError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2249
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2250
8007
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2251
    "/ for backward compatibility, use:
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2252
    "/ self class openErrorSignal isHandled ifFalse:[^ nil].
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2253
8008
e80739d6c312 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 8007
diff changeset
  2254
    "/ or even:
e80739d6c312 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 8007
diff changeset
  2255
    "/ ^ nil.
e80739d6c312 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 8007
diff changeset
  2256
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2257
    "report an error, that the open failed"
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2258
    ^ self class openErrorSignal
8007
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2259
        raiseRequestWith:self
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2260
             errorString:('error on open: ' , self lastErrorString)
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2261
                      "/ in:thisContext sender
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2262
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2263
    "Modified: / 28.1.1998 / 14:37:42 / stefan"
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2264
    "Modified: / 8.5.1999 / 20:12:12 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2265
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2266
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2267
readError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2268
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2269
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2270
    "report an error, that some read error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2271
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2272
    ^ ReadErrorSignal
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2273
	raiseRequestWith:self
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2274
	     errorString:('read error: ' , self lastErrorString)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2275
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2276
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2277
    "Modified: / 8.5.1999 / 20:12:00 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2278
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2279
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2280
writeError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2281
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2282
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2283
    "report an error, that some write error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2284
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2285
    ^ WriteErrorSignal
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2286
	raiseRequestWith:self
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2287
	     errorString:('write error: ' , self lastErrorString)
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2288
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2289
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2290
    "Modified: / 8.5.1999 / 20:12:09 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2291
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2292
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2293
!ExternalStream methodsFor:'finalization'!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2294
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2295
finalizationLobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2296
    "answer the registry used for finalization.
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2297
     ExternalStreams have their own Registry"
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2298
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2299
    ^ Lobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2300
!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2301
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2302
finalize
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2303
    "some Stream has been collected - close the file if not already done"
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2304
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2305
    self closeFile
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2306
! !
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2307
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2308
!ExternalStream methodsFor:'instance release'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2309
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2310
closeFile
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2311
    "low level close - may be redefined in subclasses"
2
claus
parents: 1
diff changeset
  2312
5494
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2313
    |fp|
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2314
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2315
%{
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2316
    if ((fp = __INST(filePointer)) != nil) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2317
	FILEPOINTER f;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2318
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2319
	__INST(filePointer) = nil;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2320
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2321
	if (@global(FileOpenTrace) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2322
	    fprintf(stderr, "fclose [ExternalStream] %x\n", f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2323
	}
5620
c50610309c38 separated close from free (i.e. avoid using fclose);
Claus Gittinger <cg@exept.de>
parents: 5618
diff changeset
  2324
#ifdef WIN32
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2325
	__BEGIN_INTERRUPTABLE__
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2326
	__STX_C_CALL1((void*)fclose, (void*)f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2327
	__END_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2328
#else
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2329
	__BEGIN_INTERRUPTABLE__
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2330
	fclose(f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2331
	__END_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2332
#endif
10
claus
parents: 5
diff changeset
  2333
    }
5494
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2334
    RETURN (self);
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2335
%}.
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2336
    "/ fallback for rel5
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2337
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2338
    fp := filePointer.
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2339
    fp notNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2340
	filePointer := nil.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2341
	self closeFile:fp
5494
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2342
    ]
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2343
!
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2344
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2345
closeFile:filePointer
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2346
    "for rel5 only"
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2347
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2348
    self primitiveFailed
10
claus
parents: 5
diff changeset
  2349
!
claus
parents: 5
diff changeset
  2350
6441
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2351
executor
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2352
    "return a copy for finalization-registration;
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2353
     since all we need at finalization time is the fileDescriptor,
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2354
     a cheaper copy is possible."
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2355
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2356
    ^ self class basicNew setFilePointer:filePointer
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2357
!
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2358
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2359
setFileDescriptor:anInteger mode:openMode
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2360
    "set the filePointer based upon a given fileDescriptor -
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2361
     notice: this one is based on the underlying OSs fileDescriptor -
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2362
     this may not be available on all platforms (i.e. non unix systems)."
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2363
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  2364
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2365
    FILEPOINTER f;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2366
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  2367
    FILE *fdopen();
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2368
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2369
    if (__isSmallInteger(anInteger) &&
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2370
	__isString(openMode) &&
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2371
	(f = fdopen(__intVal(anInteger), __stringVal(openMode))) != 0
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2372
    ) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2373
	if (@global(FileOpenTrace) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2374
	    fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", __intVal(anInteger), f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2375
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2376
	__PROTECT__(self);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2377
	fp = __MKFILEPOINTER(f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2378
	__UNPROTECT__(self);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2379
	__INST(filePointer) = fp; __STORE(self, fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2380
	RETURN (self);
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2381
    }
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2382
%}.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2383
    ^ self primitiveFailed
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2384
!
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2385
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2386
setFilePointer:something
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2387
    "set the filePointer to the given one;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2388
     low level private & friend interface; may also be used to connect to some
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2389
     externally provided file handle."
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2390
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2391
    filePointer := something
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2392
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2393
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2394
shutDown
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2395
    "close the stream - added for protocol compatibility with PipeStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2396
     see comment there"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2397
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2398
    self isOpen ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2399
	Lobby unregister:self.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2400
	self closeFile
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2401
    ]
1642
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2402
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2403
    "Modified: 30.8.1996 / 00:39:21 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2404
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2405
2
claus
parents: 1
diff changeset
  2406
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2407
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2408
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2409
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2410
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2411
     If the previous-to-last character is a cr, this is also removed,
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2412
     so its possible to read alien (i.e. ms-dos) text as well.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2413
     The line must be shorter than 16K characters - otherwise an error is signalled."
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2414
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2415
    |line|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2416
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2417
%{  /* STACK:34000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2418
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2419
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2420
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2421
    char buffer[32*1024];
521
70533ec40482 use new MKSTRING_L if length is known (avoids a useless strlen)
Claus Gittinger <cg@exept.de>
parents: 481
diff changeset
  2422
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2423
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2424
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2425
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2426
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2427
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2428
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2429
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2430
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2431
        && (__INST(mode) != @symbol(writeonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2432
        && (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2433
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2434
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2435
        buffer[0] = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2436
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2437
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2438
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2439
            __READING__(f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2440
        } 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2441
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2442
        rslt = nextPtr = buffer;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2443
        limit = buffer + sizeof(buffer) - 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2444
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2445
        for (;;) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2446
            __READBYTE__(ret, f, nextPtr, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2447
            if (ret <= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2448
                if (nextPtr == buffer)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2449
                    rslt = NULL;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2450
                if (ret == 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2451
                    __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2452
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2453
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2454
                    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2455
                    goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2456
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2457
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2458
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2459
            if (*nextPtr == '\n') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2460
                cutOff = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2461
                *nextPtr = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2462
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2463
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2464
            if (*nextPtr == '\r') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2465
                char peekChar;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2466
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2467
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2468
                 * peek ahead for a newLine ...
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2469
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2470
                __READBYTE__(ret, f, &peekChar, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2471
                if (ret <= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2472
                    cutOff = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2473
                    *nextPtr = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2474
                    if (ret == 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2475
                        __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2476
                        break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2477
                    }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2478
                    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2479
                    goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2480
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2481
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2482
                if (peekChar == '\n') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2483
                    cutOff = 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2484
                    *nextPtr = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2485
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2486
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2487
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2488
                __UNGETC__(peekChar, f, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2489
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2490
                cutOff = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2491
                *nextPtr = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2492
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2493
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2494
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2495
            nextPtr++;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2496
            if (nextPtr >= limit) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2497
                *nextPtr = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2498
                lineTooLong = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2499
                if (@global(InfoPrinting) == true) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2500
                    fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2501
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2502
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2503
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2504
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2505
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2506
        if (rslt != NULL) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2507
            len = nextPtr-buffer;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2508
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2509
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2510
                INT np = __intVal(__INST(position)) + len + cutOff;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2511
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2512
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2513
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2514
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2515
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2516
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2517
            /* remove any EOL character */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2518
            if (len != 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2519
                if (buffer[len-1] == '\n') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2520
                    buffer[--len] = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2521
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2522
                if ((len != 0) && (buffer[len-1] == '\r')) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2523
                    buffer[--len] = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2524
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2525
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2526
            line = __MKSTRING_L(buffer, len);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2527
            if (! lineTooLong) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2528
                RETURN ( line );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2529
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2530
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2531
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2532
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2533
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2534
    line notNil ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2535
        "/ the line as read is longer than 32k characters (boy - what a line)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2536
        "/ The exception could be handled by reading more and returning the
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2537
        "/ concatenation in your exception handler (the receiver and the partial
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2538
        "/ line are passed as parameter)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2539
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2540
        LineTooLongErrorSignal isHandled ifTrue:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2541
            ^ LineTooLongErrorSignal
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2542
                raiseRequestWith:(Array with:self with:line)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2543
                     errorString:('line too long read error')
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2544
        ].
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2545
        ^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2546
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2547
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2548
    (hitEOF == true) ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2549
    lastErrorNumber notNil ifTrue:[^ self readError].
2
claus
parents: 1
diff changeset
  2550
    filePointer isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2551
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2552
    (binary == true) ifTrue:[^ self errorBinary].
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2553
    ^ super nextLine
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2554
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2555
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2556
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2557
    "write the characters in aString and append an end-of-Line marker
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2558
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2559
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2560
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2561
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2562
    int len, cnt, len1, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2563
    OBJ fp;
537
dc4dad8a5ddd many ExtStream rewrites - has to be reevaluated in all platforms
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  2564
    char *cp;
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2565
    int o_offs;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2566
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2567
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2568
    if (((fp = __INST(filePointer)) != nil) 
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2569
        && (__INST(mode) != @symbol(readonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2570
        && (__INST(binary) != true)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2571
        && __isString(aString)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2572
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2573
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2574
        len = __stringSize(aString);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2575
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2576
        if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2577
            __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2578
        }
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2579
#ifdef BUGGY
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2580
        __WRITEBYTES__(cnt, f, __stringVal(aString), len, _buffered);
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2581
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2582
        o_offs = (char *)__stringVal(aString)-(char *)aString;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2583
        __WRITEBYTES_OBJ__(cnt, f, aString, o_offs, len, _buffered);
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2584
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2585
        if (cnt == len) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2586
            OBJ mode = __INST(eolMode);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2587
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2588
            len1 = len;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2589
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2590
            if (mode == @symbol(cr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2591
                cp = "\r"; len = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2592
            } else if (mode == @symbol(crlf)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2593
                cp = "\r\n"; len = 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2594
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2595
                cp = "\n"; len = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2596
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2597
            __WRITEBYTES__(cnt, f, cp, len, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2598
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2599
            if (cnt > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2600
                if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2601
                    INT np = __intVal(__INST(position)) + cnt;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2602
                    OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2603
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2604
                    __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2605
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2606
                    __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2607
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2608
                RETURN ( self );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2609
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2610
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2611
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2612
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2613
%}.
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2614
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2615
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2616
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2617
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2618
    "read from aStream up to and including a line starting with aStringOrNil
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2619
     and append all lines to self. 
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2620
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2621
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2622
     If aStringOrNil is nil or not matched, copy preceeds to the end.
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2623
     (this allows for example to read a Socket and transfer the data quickly
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2624
      into a file - without creating zillions of temporary strings)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2625
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2626
    |srcFilePointer readError line|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2627
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2628
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2629
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2630
    srcFilePointer := aStream filePointer.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2631
    srcFilePointer isNil ifTrue:[aStream errorNotOpen. ^ self].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2632
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2633
%{  /* STACK:2000 */
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2634
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2635
#ifndef NO_STDIO
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2636
    FILEPOINTER dst;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2637
    FILEPOINTER src;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2638
    char *matchString;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2639
    int matchLen = 0;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2640
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2641
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2642
    __INST(lastErrorNumber) = nil;
249
claus
parents: 244
diff changeset
  2643
    if (__isSmallInteger(srcFilePointer)) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2644
        if ((aStringOrNil == nil) || __isString(aStringOrNil)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2645
            if (aStringOrNil != nil) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2646
                matchString = (char *) __stringVal(aStringOrNil);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2647
                matchLen = __stringSize(aStringOrNil);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2648
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2649
            dst = __FILEVal(__INST(filePointer));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2650
            src = __FILEVal(srcFilePointer);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2651
            __BEGIN_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2652
            __threadErrno = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2653
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2654
            __WRITING__(dst)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2655
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2656
            for (;;) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2657
                if (fgets(buffer, sizeof(buffer)-1, src) == NULL) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2658
                    if (ferror(src)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2659
                        readError = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2660
                        __END_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2661
                        goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2662
                    }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2663
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2664
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2665
                if (fputs(buffer, dst) == EOF) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2666
                    if (ferror(dst)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2667
                        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2668
                        __END_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2669
                        goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2670
                    }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2671
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2672
                }
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2673
#ifndef OLD
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2674
                if (__INST(buffered) == false) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2675
                    FFLUSH(dst);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2676
                }
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2677
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2678
                if (matchLen) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2679
                    if (strncmp(matchString, buffer, matchLen) == 0) 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2680
                        break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2681
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2682
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2683
            __END_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2684
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2685
            RETURN (self);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2686
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2687
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2688
err: ;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2689
#endif /* ! NO_STDIO */
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2690
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2691
    readError ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2692
        aStream setLastErrorNumber:readError.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2693
        aStream readError.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2694
        ^ self
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2695
    ].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2696
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2697
    buffered ifFalse:[self errorNotBuffered. ^ self].
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2698
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2699
    "
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2700
     argument error or unimplemented; try it linewise
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2701
    "
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2702
    [aStream atEnd] whileFalse:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2703
        line := aStream nextLine.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2704
        line isNil ifTrue:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2705
            ^ self.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2706
        ].
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2707
        self nextPutLine:line.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2708
        (aStringOrNil notNil and:[line startsWith:aStringOrNil]) ifTrue:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2709
            ^ self
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2710
        ]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2711
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2712
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2713
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2714
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2715
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2716
     return the line-string if found, or nil if EOF is encountered.
7118
10b067555add *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7054
diff changeset
  2717
     If matched, do not advance position beyond that line
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2718
     i.e. nextLine will read the matched line.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2719
     If not matched, reposition to original position for further reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2720
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2721
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2722
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2723
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2724
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2725
    binary ifTrue:[^ self errorBinary].
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2726
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2727
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2728
%{  /* STACK: 2000 */
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2729
#ifndef NO_STDIO
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2730
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2731
    FILEPOINTER f;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2732
    int l;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2733
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2734
    char *cp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2735
    char *matchString;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2736
    int gotFirst = 0;
7883
1039acd0624b Large file support (off_t with 64 bits) for UNIX
Stefan Vogel <sv@exept.de>
parents: 7875
diff changeset
  2737
#if defined(__VMS__)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2738
    fpos_t firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2739
#   define FTELL(__f__, __pos__)        fgetpos(__f__, &(__pos__))
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2740
#   define FSEEK(__f__, __pos__)        fsetpos(__f__, &(__pos__))
7883
1039acd0624b Large file support (off_t with 64 bits) for UNIX
Stefan Vogel <sv@exept.de>
parents: 7875
diff changeset
  2741
#elif defined(_LFS_LARGEFILE)
1039acd0624b Large file support (off_t with 64 bits) for UNIX
Stefan Vogel <sv@exept.de>
parents: 7875
diff changeset
  2742
    off_t firstpos, lastpos;
1039acd0624b Large file support (off_t with 64 bits) for UNIX
Stefan Vogel <sv@exept.de>
parents: 7875
diff changeset
  2743
#   define FTELL(__f__, __pos__)        __pos__ = ftello(__f__)
1039acd0624b Large file support (off_t with 64 bits) for UNIX
Stefan Vogel <sv@exept.de>
parents: 7875
diff changeset
  2744
#   define FSEEK(__f__, __pos__)        fseeko(__f__, __pos__, SEEK_SET)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2745
#else
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2746
    long firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2747
#   define FTELL(__f__, __pos__)        __pos__ = ftell(__f__)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2748
#   define FSEEK(__f__, __pos__)        fseek(__f__, __pos__, SEEK_SET)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2749
#endif
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2750
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2751
    __INST(lastErrorNumber) = nil;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
  2752
    if (__isString(aString)) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2753
        matchString = (char *) __stringVal(aString);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2754
        l = __stringSize(aString);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2755
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2756
        f = __FILEVal(__INST(filePointer));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2757
        __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2758
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2759
        for (;;) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2760
            FTELL(f, lastpos);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2761
            if (!gotFirst) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2762
                firstpos = lastpos;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2763
                gotFirst = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2764
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2765
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2766
            __BEGIN_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2767
            do {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2768
                cp = fgets(buffer, sizeof(buffer)-1, f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2769
            } while ((cp == NULL) && ferror(f) && (__threadErrno == EINTR) && (clearerr(f), 1));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2770
            buffer[sizeof(buffer)-1] = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2771
            __END_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2772
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2773
            if (cp == NULL) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2774
                if (ferror(f)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2775
                    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2776
                    goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2777
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2778
                    FSEEK(f, firstpos);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2779
                    RETURN (nil);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2780
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2781
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2782
            if (strncmp(cp, matchString, l) == 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2783
                FSEEK(f, lastpos);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2784
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2785
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2786
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2787
        /* remove EOL character */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2788
        cp = buffer;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2789
        while (*cp && (*cp != '\n') && (*cp != '\r')) cp++;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2790
        *cp = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2791
        __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2792
        RETURN ( __MKSTRING(buffer) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2793
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2794
err: ;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2795
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2796
# undef FTELL
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2797
# undef FSEEK
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2798
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2799
#endif
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2800
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2801
    lastErrorNumber notNil ifTrue:[^ self readError].
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2802
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2803
    "/ try using generic code ...
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2804
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2805
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2806
    [self atEnd] whileFalse:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2807
        lastPos := self position.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2808
        line := self nextLine.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2809
        line isNil ifTrue:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2810
            self position:firstPos.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2811
            ^ nil
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2812
        ].
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2813
        (line startsWith:aString) ifTrue:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2814
            self position:lastPos.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2815
            ^ line
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2816
        ]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2817
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2818
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2819
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2820
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2821
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2822
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2823
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2824
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2825
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2826
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2827
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2828
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2829
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2830
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2831
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2832
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2833
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2834
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2835
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2836
	linePos := self position.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2837
	line := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2838
	line notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2839
	    index := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2840
	    aCollectionOfStrings do:[:prefix |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2841
		(line startsWith:prefix) ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2842
		    self position:linePos.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2843
		    ^ index
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2844
		].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2845
		index := index + 1
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2846
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2847
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2848
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2849
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2850
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2851
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2852
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2853
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2854
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2855
async:aBoolean
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2856
    "set/clear the async attribute - if set, the availability of data on 
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2857
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2858
     If cleared (which is the default) no special notification is made.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2859
     Notice: 
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2860
	not every OS supports this 
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2861
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2862
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2863
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2864
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2865
    filePointer isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2866
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2867
    OperatingSystem supportsIOInterrupts ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2868
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2869
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2870
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2871
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2872
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2873
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2874
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2875
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2876
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2877
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2878
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2879
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2880
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2881
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2882
     a read (using next) on the receiver will block until data is available.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2883
     If cleared, a read operation will immediately return with a value of
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2884
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2885
     Turning off blocking is useful when reading from PipeStreams
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2886
     or Sockets, and the amount of data to be read is not known
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2887
     in advance. However, the data must then be read using #nextBytes:
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2888
     methods, in order to avoid other (pastEnd) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2889
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2890
    filePointer isNil ifTrue:[^ self errorNotOpen].
7499
53b7a86e1f0b ExternalStream>>blocking: returns previous blocking status
Stefan Vogel <sv@exept.de>
parents: 7497
diff changeset
  2891
    ^ OperatingSystem setBlocking:aBoolean on:self fileDescriptor.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2892
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2893
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2894
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2895
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2896
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2897
close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2898
    "close the stream - tell operating system"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2899
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2900
    self isOpen ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2901
	Lobby unregister:self.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2902
	self closeFile.
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2903
    ]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2904
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2905
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2906
copyToEndInto:outStream
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2907
    "copy the data into another stream."
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2908
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2909
    |bufferSize pos n nWritten|
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2910
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2911
    self isFileStream ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2912
	outStream isExternalStream ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2913
	    pos := self position.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2914
	    n := self size - pos.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2915
	    nWritten := OperatingSystem 
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2916
		copyFromFd:(self fileDescriptor)
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2917
		toFd:(outStream fileDescriptor)
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2918
		startIndex:pos 
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2919
		count:n.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2920
	    nWritten = n ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2921
		^ self
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2922
	    ]
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2923
	]
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2924
    ].
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2925
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2926
    OperatingSystem isMSDOSlike ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2927
	"/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2928
	bufferSize := 1 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2929
    ] ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  2930
	bufferSize := 8 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2931
    ].
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2932
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2933
    ^ self copyToEndInto:outStream bufferSize:bufferSize
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2934
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2935
    "
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2936
     |in out|
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2937
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2938
     in := 'Makefile' asFilename readStream.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2939
     out := Stdout.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2940
     in copyToEndInto:out.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2941
     in close.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2942
    "
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2943
!
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2944
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2945
create
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2946
    "create the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2947
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2948
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2949
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2950
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2951
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2952
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2953
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2954
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2955
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2956
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2957
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2958
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2959
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2960
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2961
     on the underlying file; the argument is passed as argument.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2962
     This is not used by ST/X, but provided for special situations 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2963
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2964
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2965
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2966
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2967
     If the argument is nil, an ioctl without argument is performed.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2968
     If the argument is an integral number, its directly passed; 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2969
     if its a kind of ByteArray (ByteArray, String or Structure),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2970
     or external data (ExternalBytes or ExternalAddress),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2971
     a pointer to the data is passed. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2972
     This allows performing most ioctls 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2973
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2974
     Be careful in what you pass - ST/X cannot validate its correctness."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2975
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2976
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2977
#if !defined(MSDOS_LIKE)
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2978
# if !defined(__openVMS__)
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2979
    FILEPOINTER f;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2980
    int ret, ioNum;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2981
    OBJ fp;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2982
    INT ioArg;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2983
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2984
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2985
    if ((fp = __INST(filePointer)) != nil) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2986
        if (__isSmallInteger(ioctlNumber) 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2987
         && (__isSmallInteger(arg) 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2988
             || (arg == nil)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2989
             || __isBytes(arg)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2990
             || __isExternalBytesLike(arg)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2991
             || __isExternalAddress(arg))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2992
            f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2993
            ioNum = __intVal(ioctlNumber);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2994
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2995
            __BEGIN_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2996
            do {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2997
                __threadErrno = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2998
                if (arg == nil) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2999
                    ioArg = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3000
                } else if (__isSmallInteger(arg)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3001
                    ioArg = __intVal(arg);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3002
                } else if (__isExternalBytesLike(arg)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3003
                    ioArg = (INT)(__externalBytesAddress(arg));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3004
                } else if (__isExternalAddress(arg)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3005
                    ioArg = (INT)(__externalAddressVal(arg));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3006
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3007
                    ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3008
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3009
                ret = ioctl(fileno(f), ioNum, ioArg);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3010
            } while ((ret < 0) && (__threadErrno == EINTR));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3011
            __END_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3012
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3013
            if (ret >= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3014
                RETURN ( __MKSMALLINT(ret) );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3015
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3016
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3017
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3018
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3019
    }
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  3020
# endif
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  3021
#endif
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3022
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3023
    lastErrorNumber notNil ifTrue:[^ self ioError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3024
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3025
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3026
     argument is not an integer
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3027
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3028
    (ioctlNumber isMemberOf:SmallInteger) ifFalse:[^ self primitiveFailed].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3029
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3030
     the system does not support ioctl (MSDOS or VMS)
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3031
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3032
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3033
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3034
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3035
open
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3036
    "open the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3037
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3038
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3039
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3040
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3041
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3042
reset
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3043
    "set the read position to the beginning of the collection"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3044
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3045
    self position:ZeroPosition
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3046
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3047
1044
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3048
setToEnd
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3049
    "redefined since it must be implemented differently"
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3050
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3051
    ^ self subclassResponsibility
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3052
!
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3053
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3054
truncateTo:newSize
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3055
    "truncate the underlying OS file to newSize.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3056
     Warning: this may not be implemented on all platforms."
1066
cffbbdea7e01 care for GC while being interruptable
Claus Gittinger <cg@exept.de>
parents: 1048
diff changeset
  3057
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  3058
%{
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3059
#ifdef HAS_FTRUNCATE
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3060
    FILEPOINTER f;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3061
    OBJ fp;
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3062
    off_t truncateSize;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3063
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3064
    if (((fp = __INST(filePointer)) != nil)
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3065
        && (__INST(mode) != @symbol(readonly))) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3066
        if (__isSmallInteger(newSize)) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3067
            truncateSize = __intVal(newSize);
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3068
            if (truncateSize < 0) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3069
                goto getOutOfHere;
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3070
            }
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3071
        } else {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3072
            truncateSize = __signedLongIntVal(newSize);
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3073
            if (truncateSize < 0) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3074
                goto getOutOfHere;
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3075
            }
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3076
            if (truncateSize == 0) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3077
                if (sizeof(truncateSize) == 8) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3078
                    if (__signedLong64IntVal(newSize, &truncateSize) == 0 || truncateSize < 0) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3079
                        goto getOutOfHere;
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3080
                    }
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3081
                } else {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3082
                    goto getOutOfHere;
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3083
                }
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3084
            }
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3085
        }
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3086
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3087
        f = __FILEVal(fp);
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3088
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3089
        if (__INST(buffered) == true) {
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3090
            __READING__(f)
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3091
            FFLUSH(f);
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3092
            OPT_FSEEK(f, 0L, SEEK_END); /* needed in stdio */
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3093
        }
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3094
        ftruncate(fileno(f), truncateSize);
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3095
        RETURN (self);
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3096
    }
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3097
getOutOfHere:
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3098
#endif
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3099
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3100
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3101
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3102
    newSize < 0 ifTrue:[
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3103
        self error:'wrong arg'.
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3104
    ].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3105
    self errorUnsupportedOperation
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3106
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3107
    "
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3108
     |s|
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3109
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3110
     s := 'test' asFilename writeStream.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3111
     s next:1000 put:$a.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3112
     s truncateTo:100.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3113
     s close.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3114
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3115
     ('test' asFilename fileSize) printNL
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3116
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3117
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3118
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3119
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3120
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3121
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3122
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3123
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3124
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3125
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3126
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3127
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3128
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3129
    binary ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3130
	buffer := ByteArray uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3131
    ] ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3132
	buffer := String uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3133
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3134
    n := self nextAvailableBytes:count into:buffer startingAt:1.
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3135
    n == 0 ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3136
	binary ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3137
	    ^ #[] 
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3138
	].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3139
	^ ''
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3140
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3141
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3142
    n ~~ count ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3143
	^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3144
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3145
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3146
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3147
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3148
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:3 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3149
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3150
     (ReadStream on:'hello') nextAvailable:3
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3151
     (ReadStream on:'hello') nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3152
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3153
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3154
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3155
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3156
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3157
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3158
    "read the next count bytes into an object and return the number of
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3159
     bytes read or the number of bytes read, if EOF is encountered before,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3160
     or no more bytes are available for reading (from the pipe/socket).
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3161
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3162
     If the receiver is some socket/pipe-like stream, an exception
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3163
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3164
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3165
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3166
     this does NOT return nil on EOF, but the actual count.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3167
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3168
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3169
     The object must have non-pointer indexed instvars 
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3170
     (i.e. it must be a ByteArray, String, Float- or DoubleArray).
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3171
     If anObject is a string or byteArray and reused, this provides the
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3172
     fastest possible physical I/O (since no new objects are allocated).
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3173
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3174
     Use with care - non object oriented I/O.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3175
     Warning: in general, you cannot use this method to pass data from other 
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3176
     architectures since it does not care for byte order or float representation."
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3177
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3178
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3179
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3180
    int cnt, offs, ret, _buffered;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3181
    int objSize, nInstVars, nInstBytes;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3182
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3183
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3184
    OBJ fp;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3185
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3186
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3187
    __INST(lastErrorNumber) = nil;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3188
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3189
        && (__INST(mode) != @symbol(writeonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3190
        && __bothSmallInteger(count, start)
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3191
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3192
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3193
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3194
        cnt = __intVal(count);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3195
        offs = __intVal(start) - 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3196
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3197
        if (__isExternalBytesLike(anObject)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3198
            OBJ sz;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3199
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3200
            nInstBytes = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3201
            extPtr = (char *)(__externalBytesAddress(anObject));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3202
            sz = __externalBytesSize(anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3203
            if (__isSmallInteger(sz)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3204
                objSize = __intVal(sz);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3205
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3206
                objSize = 0; /* unknown */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3207
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3208
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3209
            OBJ oClass;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3210
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3211
            oClass = __Class(anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3212
            switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3213
                case BYTEARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3214
                case WORDARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3215
                case LONGARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3216
                case SWORDARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3217
                case SLONGARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3218
                case FLOATARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3219
                case DOUBLEARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3220
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3221
                default:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3222
                    goto bad;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3223
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3224
            extPtr = (char *)0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3225
            nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3226
            nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3227
            objSize = __Size(anObject) - nInstBytes;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3228
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3229
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3230
        if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3231
            _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3232
            if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3233
                __READING__(f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3234
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3235
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3236
            if (extPtr) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3237
                __READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3238
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3239
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3240
                 * on interrupt, anObject may be moved to another location.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3241
                 * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3242
                 * to get a new address.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3243
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3244
                offs += nInstBytes;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3245
                __READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3246
            }
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3247
#ifdef PRE_22_jan_2000
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3248
            if (ret > 0) 
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3249
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3250
            /* 0 is NOT an EOF condition here ... */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3251
            if (ret >= 0) 
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3252
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3253
            {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3254
                if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3255
                    INT np = __intVal(__INST(position)) + ret;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3256
                    OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3257
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3258
                    __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3259
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3260
                    __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3261
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3262
                RETURN (__MKSMALLINT(ret));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3263
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3264
            if (ret == 0) { 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3265
                __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3266
            } else /* ret < 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3267
                __INST(position) = nil;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3268
                __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3269
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3270
        }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3271
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3272
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3273
%}.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3274
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3275
    lastErrorNumber notNil ifTrue:[^ self readError].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3276
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3277
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3278
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3279
     count not integer or arg not bit-like (String, ByteArray etc)
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3280
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3281
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3282
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3283
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3284
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3285
    "read the next byte and return it as an Integer; return nil on error.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3286
     This is allowed in both text and binary modes, always returning the
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3287
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3288
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3289
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3290
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3291
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3292
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3293
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3294
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3295
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3296
    if (((fp = __INST(filePointer)) != nil)
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3297
     && (__INST(mode) != @symbol(writeonly))) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3298
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3299
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3300
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3301
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3302
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3303
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3304
        __READBYTE__(ret, f, &byte, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3305
        if (ret > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3306
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3307
                INT np = __intVal(__INST(position)) + 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3308
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3309
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3310
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3311
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3312
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3313
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3314
            RETURN (__MKSMALLINT(byte));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3315
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3316
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3317
        if (ret == 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3318
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3319
        } else /* ret < 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3320
            __INST(position) = nil;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3321
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3322
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3323
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3324
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3325
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3326
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3327
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3328
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3329
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3330
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3331
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3332
    "read the next count bytes into an object and return the number of
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3333
     bytes read or the number of bytes read, if EOF is encountered before.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3334
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3335
     is raised if the connection is broken.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3336
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3337
     Warning: if used with a pipe/socket, this blocks until the requested number
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3338
     of bytes have been read. See #nextAvailableBytes:into:startingAt:
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3339
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3340
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3341
     Notice, that in contrast to other methods,
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3342
     this does NOT return nil on EOF, but the actual count.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3343
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3344
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3345
     The object must have non-pointer indexed instvars 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3346
     (i.e. it must be a ByteArray, String, Float- or DoubleArray),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3347
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3348
     If anObject is a string or byteArray and reused, this provides the
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3349
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3350
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3351
     Use with care - non object oriented I/O.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3352
     Warning: in general, you cannot use this method to pass data from other 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3353
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3354
     since it does not care for byte order or float representation."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3355
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3356
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3357
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3358
    int cnt, offs, ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3359
    int objSize, nInstVars, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3360
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3361
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3362
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3363
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3364
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3365
        && (__INST(mode) != @symbol(writeonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3366
        && __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3367
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3368
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3369
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3370
        cnt = __intVal(count);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3371
        offs = __intVal(start) - 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3372
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3373
        if (__isExternalBytesLike(anObject)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3374
            OBJ sz;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3375
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3376
            nInstBytes = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3377
            extPtr = (char *)(__externalBytesAddress(anObject));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3378
            sz = __externalBytesSize(anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3379
            if (__isSmallInteger(sz)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3380
                objSize = __intVal(sz);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3381
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3382
                objSize = 0; /* unknown */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3383
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3384
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3385
            OBJ oClass;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3386
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3387
            oClass = __Class(anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3388
            switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3389
                case BYTEARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3390
                case WORDARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3391
                case LONGARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3392
                case SWORDARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3393
                case SLONGARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3394
                case FLOATARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3395
                case DOUBLEARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3396
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3397
                default:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3398
                    goto bad;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3399
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3400
            extPtr = (char *)0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3401
            nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3402
            nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3403
            objSize = __Size(anObject) - nInstBytes;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3404
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3405
        if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3406
            _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3407
            if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3408
                __READING__(f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3409
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3410
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3411
            if (extPtr) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3412
                __READBYTES__(ret, f, extPtr+offs, cnt, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3413
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3414
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3415
                 * on interrupt, anObject may be moved to another location.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3416
                 * So we pass anObject, and the offset to the __READBYTES_OBJ__ macro.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3417
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3418
                offs += nInstBytes;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3419
                __READBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3420
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3421
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3422
            if (ret > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3423
                if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3424
                    INT np = __intVal(__INST(position)) + ret;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3425
                    OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3426
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3427
                    __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3428
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3429
                    __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3430
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3431
                RETURN (__MKSMALLINT(ret));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3432
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3433
            if (ret == 0) { 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3434
                __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3435
            } else /* ret < 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3436
                __INST(position) = nil;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3437
                __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3438
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3439
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3440
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3441
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3442
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3443
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3444
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3445
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3446
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3447
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3448
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3449
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3450
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3451
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3452
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3453
nextLong
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3454
    "Read four bytes (msb-first) and return the value as a 32-bit signed Integer.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3455
     The returned value may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3456
     (msb-first for compatibility with other smalltalks)"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3457
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3458
    ^ self nextUnsignedLongMSB:true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3459
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3460
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3461
nextLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3462
    "Read four bytes and return the value as a 32-bit signed Integer, 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3463
     which may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3464
     If msbFlag is true, value is read with most-significant byte first, 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3465
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3466
     A nil is returned, if EOF is hit before all 4 bytes have been read.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3467
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3468
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3469
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3470
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3471
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3472
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3473
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3474
        && (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3475
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3476
        FILEPOINTER f;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3477
        int ret, _buffered;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3478
        int value;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3479
        union {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3480
            unsigned char buffer[4];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3481
            int intVal;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3482
        } u;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3483
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3484
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3485
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3486
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3487
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3488
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3489
        __READBYTES__(ret, f, u.buffer, 4, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3490
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3491
        if (ret == 4) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3492
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3493
                INT np = __intVal(__INST(position)) + 4;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3494
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3495
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3496
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3497
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3498
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3499
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3500
            if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3501
#if defined(__MSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3502
                value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3503
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3504
                value = (u.buffer[0] & 0xFF);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3505
                value = (value << 8) | (u.buffer[1] & 0xFF);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3506
                value = (value << 8) | (u.buffer[2] & 0xFF);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3507
                value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3508
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3509
            } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3510
#if defined(__LSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3511
                value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3512
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3513
                value = (u.buffer[3] & 0xFF);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3514
                value = (value << 8) | (u.buffer[2] & 0xFF);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3515
                value = (value << 8) | (u.buffer[1] & 0xFF);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3516
                value = (value << 8) | (u.buffer[0] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3517
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3518
            }
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3519
#ifdef alpha64
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3520
            RETURN ( __MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3521
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3522
            if ((value >= _MIN_INT) && (value <= _MAX_INT)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3523
                RETURN ( __MKSMALLINT(value));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3524
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3525
            RETURN ( __MKLARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3526
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3527
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3528
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3529
        if (ret < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3530
            __INST(position) = nil;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3531
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3532
        } else /* ret == 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3533
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3534
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3535
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3536
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3537
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3538
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3539
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3540
    ^ self readError.
362
claus
parents: 360
diff changeset
  3541
!
claus
parents: 360
diff changeset
  3542
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3543
nextShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3544
    "Read two bytes and return the value as a 16-bit signed Integer.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3545
     If msbFlag is true, value is read with most-significant byte first, 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3546
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3547
     A nil is returned if EOF is reached (also when EOF is hit after the first byte).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3548
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3549
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3550
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3551
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3552
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3553
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3554
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3555
        && (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3556
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3557
        FILEPOINTER f;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3558
        int ret, _buffered;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3559
        short value;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3560
        union {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3561
            unsigned char buffer[2];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3562
            short shortVal;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3563
        } u;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3564
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3565
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3566
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3567
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3568
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3569
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3570
        __READBYTES__(ret, f, u.buffer, 2, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3571
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3572
        if (ret == 2) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3573
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3574
                INT np = __intVal(__INST(position)) + 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3575
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3576
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3577
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3578
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3579
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3580
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3581
            if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3582
#if defined(__MSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3583
                value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3584
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3585
                value = ((u.buffer[0] & 0xFF) << 8) | (u.buffer[1] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3586
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3587
            } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3588
#if defined(__LSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3589
                value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3590
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3591
                value = ((u.buffer[1] & 0xFF) << 8) | (u.buffer[0] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3592
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3593
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3594
            RETURN (__MKSMALLINT(value));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3595
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3596
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3597
        if (ret < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3598
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3599
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3600
        } else /* ret == 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3601
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3602
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3603
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3604
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3605
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3606
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3607
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3608
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3609
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3610
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3611
nextUnsignedLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3612
    "Read four bytes and return the value as a 32-bit unsigned Integer, which may be
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3613
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3614
     If msbFlag is true, value is read with most-significant byte first, otherwise
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3615
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3616
     A nil is returned, if endOfFile occurs before all 4 bytes have been read.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3617
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3618
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3619
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3620
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3621
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3622
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3623
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3624
        && (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3625
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3626
        FILEPOINTER f;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3627
        int ret, _buffered;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3628
        unsigned INT value;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3629
        union {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3630
            unsigned char buffer[4];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3631
            unsigned int intVal;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3632
        } u;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3633
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3634
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3635
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3636
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3637
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3638
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3639
        __READBYTES__(ret, f, u.buffer, 4, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3640
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3641
        if (ret == 4) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3642
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3643
                INT np = __intVal(__INST(position)) + 4;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3644
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3645
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3646
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3647
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3648
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3649
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3650
            if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3651
#if defined(__MSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3652
                value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3653
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3654
                value = u.buffer[0];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3655
                value = (value << 8) | u.buffer[1];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3656
                value = (value << 8) | u.buffer[2];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3657
                value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3658
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3659
            } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3660
#if defined(__LSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3661
                value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3662
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3663
                value = u.buffer[3];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3664
                value = (value << 8) | u.buffer[2];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3665
                value = (value << 8) | u.buffer[1];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3666
                value = (value << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3667
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3668
            }
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3669
#ifdef alpha64
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3670
            value &= 0xFFFFFFFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3671
            RETURN (__MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3672
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3673
            if (value <= _MAX_INT) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3674
                RETURN (__MKSMALLINT(value));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3675
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3676
            RETURN (__MKULARGEINT(value) );
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3677
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3678
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3679
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3680
        if (ret < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3681
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3682
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3683
        } else /* ret == 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3684
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3685
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3686
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3687
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3688
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3689
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3690
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3691
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3692
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3693
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3694
nextUnsignedShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3695
    "Read two bytes and return the value as a 16-bit unsigned Integer.
1079
d47cd86b487b Make methods signal-proof.
Stefan Vogel <sv@exept.de>
parents: 1068
diff changeset
  3696
     If msbFlag is true, value is read with most-significant byte first, 
d47cd86b487b Make methods signal-proof.
Stefan Vogel <sv@exept.de>
parents: 1068
diff changeset
  3697
     otherwise least-significant byte comes first.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3698
     A nil is returned if EOF is reached (also when EOF is hit after the first byte).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3699
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3700
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3701
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3702
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3703
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3704
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3705
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3706
        && (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3707
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3708
        FILEPOINTER f;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3709
        int ret, _buffered;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3710
        unsigned int value;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3711
        union {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3712
            unsigned char buffer[2];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3713
            unsigned short shortVal;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3714
        } u;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3715
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3716
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3717
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3718
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3719
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3720
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3721
        __READBYTES__(ret, f, u.buffer, 2, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3722
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3723
        if (ret == 2) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3724
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3725
                INT np = __intVal(__INST(position)) + 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3726
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3727
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3728
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3729
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3730
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3731
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3732
            if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3733
#if defined(__MSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3734
                value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3735
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3736
                value = (u.buffer[0] << 8) | u.buffer[1];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3737
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3738
            } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3739
#if defined(__LSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3740
                value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3741
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3742
                value = (u.buffer[1] << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3743
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3744
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3745
            RETURN (__MKSMALLINT(value));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3746
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3747
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3748
        if (ret < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3749
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3750
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3751
        } else /* ret == 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3752
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3753
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3754
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3755
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3756
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3757
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3758
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3759
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3760
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3761
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3762
nextWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3763
    "in text-mode:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3764
	 read the alphaNumeric next word (i.e. up to non letter-or-digit).
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3765
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3766
     in binary-mode:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3767
	 read two bytes (msb-first) and return the value as a 16-bit 
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3768
	 unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3769
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3770
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3771
	^ self nextUnsignedShortMSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3772
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3773
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3774
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3775
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3776
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3777
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3778
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3779
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3780
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3781
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3782
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3783
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3784
    char c;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3785
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3786
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3787
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3788
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3789
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3790
        && (__INST(mode) != @symbol(readonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3791
        && __isSmallInteger(aByteValue)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3792
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3793
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3794
        c = __intVal(aByteValue);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3795
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3796
        if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3797
            __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3798
        } 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3799
        __WRITEBYTE__(cnt, f, &c, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3800
        if (cnt == 1) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3801
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3802
                INT np = __intVal(__INST(position)) + 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3803
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3804
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3805
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3806
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3807
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3808
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3809
            RETURN (self);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3810
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3811
        if (cnt < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3812
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3813
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3814
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3815
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3816
%}.
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  3817
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  3818
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3819
    self writeError.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3820
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3821
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3822
nextPutBytes:count from:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3823
    "write count bytes from an object starting at index start.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3824
     return the number of bytes written - which could be 0.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3825
     The object must have non-pointer indexed instvars 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3826
     (i.e. be a ByteArray, String, Float- or DoubleArray),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3827
     or an externalBytes object (with known size).
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3828
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3829
     Use with care - non object oriented i/o.
7685
535a69a7cd69 String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7678
diff changeset
  3830
     Warning: 
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3831
        in general, you cannot use this method to pass non-byte data to other 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3832
        architectures (unless you prepared the buffer with care),
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3833
        since it does not care for byte order or float representation."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3834
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3835
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3836
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3837
    int cnt, len, offs, ret;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3838
    int objSize, nInstVars, nInstBytes, _buffered;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3839
    char *extPtr;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3840
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3841
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3842
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3843
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3844
        && (__INST(mode) != @symbol(readonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3845
        && __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3846
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3847
        len = __intVal(count);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3848
        offs = __intVal(start) - 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3849
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3850
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3851
        if (__isExternalBytesLike(anObject)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3852
            OBJ sz;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3853
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3854
            nInstBytes = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3855
            extPtr = (char *)__externalBytesAddress(anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3856
            sz = __externalBytesSize(anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3857
            if (__isSmallInteger(sz)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3858
                objSize = __intVal(sz);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3859
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3860
                objSize = 0; /* unknown */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3861
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3862
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3863
            OBJ oClass;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3864
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3865
            oClass = __Class(anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3866
            switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3867
                case BYTEARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3868
                case WORDARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3869
                case LONGARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3870
                case SWORDARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3871
                case SLONGARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3872
                case FLOATARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3873
                case DOUBLEARRAY:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3874
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3875
                default:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3876
                    goto bad;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3877
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3878
            extPtr = (char *)0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3879
            nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3880
            nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3881
            objSize = __Size(anObject) - nInstBytes;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3882
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3883
        if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3884
            if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3885
                __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3886
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3887
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3888
            if (extPtr) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3889
                __WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered); 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3890
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3891
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3892
                 * on interrupt, anObject may be moved to another location.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3893
                 * So we pass anObject, and the offset to the __WRITEBYTES_OBJ__ macro.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3894
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3895
                offs += nInstBytes;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3896
                __WRITEBYTES_OBJ__(cnt, f, anObject, offs, len, _buffered); 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3897
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3898
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3899
            if (cnt >= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3900
                if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3901
                    INT np = __intVal(__INST(position)) + cnt;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3902
                    OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3903
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3904
                    __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3905
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3906
                    __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3907
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3908
                RETURN ( __MKSMALLINT(cnt) );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3909
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3910
            if ((__threadErrno == EWOULDBLOCK) || ((__threadErrno == EAGAIN))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3911
                RETURN ( __MKSMALLINT(0) );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3912
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3913
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3914
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3915
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3916
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3917
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3918
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3919
    lastErrorNumber notNil ifTrue:[^ self writeError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3920
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3921
    (mode == #readonly) ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3922
    ^ self primitiveFailed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3923
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3924
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3925
nextPutLong:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3926
    "Write the argument, aNumber as a long (four bytes). If msbFlag is
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3927
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3928
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3929
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3930
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3931
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3932
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3933
    union {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3934
        char bytes[4];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3935
        int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3936
    } u;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3937
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3938
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3939
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3940
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3941
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3942
    if (__isSmallInteger(aNumber)) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3943
        num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3944
    } else {
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3945
#ifdef alpha64
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3946
        goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3947
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3948
        num = __longIntVal(aNumber);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3949
        if (num == 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3950
            num = __signedLongIntVal(aNumber);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3951
            if (num == 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3952
                /* bad arg or out-of-range integer  
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3953
                 * (handled by the fallBack code)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3954
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3955
                goto badArg;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3956
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3957
        }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3958
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3959
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3960
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3961
    if (((fp = __INST(filePointer)) != nil)
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3962
     && (__INST(mode) != @symbol(readonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3963
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3964
        if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3965
#if defined(__MSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3966
            u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3967
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3968
            u.bytes[0] = (num >> 24) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3969
            u.bytes[1] = (num >> 16) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3970
            u.bytes[2] = (num >> 8) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3971
            u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3972
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3973
        } else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3974
#if defined(__LSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3975
            u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3976
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3977
            u.bytes[3] = (num >> 24) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3978
            u.bytes[2] = (num >> 16) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3979
            u.bytes[1] = (num >> 8) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3980
            u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3981
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3982
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3983
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3984
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3985
        if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3986
            __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3987
        } 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3988
        __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3989
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3990
        if (cnt == 4) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3991
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3992
                INT np = __intVal(__INST(position)) + 4;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3993
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3994
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3995
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3996
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3997
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3998
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3999
            RETURN ( self );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4000
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4001
        __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4002
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4003
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4004
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4005
%}.
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4006
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4007
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4008
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4009
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4010
    aNumber isInteger ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4011
        ^ super nextPutLong:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4012
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4013
    self argumentMustBeInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4014
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4015
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4016
nextPutShort:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4017
    "Write the argument, aNumber as a short (two bytes). If msbFlag is
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4018
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4019
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4020
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4021
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4022
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4023
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4024
    union {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4025
        char bytes[2];
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4026
        short shortVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4027
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4028
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4029
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4030
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4031
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4032
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4033
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4034
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4035
        && (__INST(mode) != @symbol(readonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4036
        && __isSmallInteger(aNumber)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4037
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4038
        num = __intVal(aNumber);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4039
        if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4040
#if defined(__MSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4041
            u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4042
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4043
            u.bytes[0] = (num >> 8) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4044
            u.bytes[1] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4045
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4046
        } else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4047
#if defined(__LSBFIRST)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4048
            u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4049
#else
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4050
            u.bytes[1] = (num >> 8) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4051
            u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4052
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4053
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4054
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4055
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4056
        if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4057
            __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4058
        } 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4059
        __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4060
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4061
        if (cnt == 2) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4062
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4063
                INT np = __intVal(__INST(position)) + 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4064
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4065
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4066
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4067
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4068
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4069
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4070
            RETURN ( self );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4071
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4072
        __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4073
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4074
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4075
%}.
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4076
    lastErrorNumber notNil ifTrue:[self writeError. ^ self.].
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4077
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4078
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4079
    self argumentMustBeInteger
10
claus
parents: 5
diff changeset
  4080
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4081
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4082
!ExternalStream methodsFor:'positioning'!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4083
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4084
position0Based
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4085
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4086
!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4087
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4088
position0Based:index0Based
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4089
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4090
! !
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4091
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4092
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4093
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4094
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4095
    hitEOF := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4096
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4097
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4098
connectTo:aFileDescriptor withMode:openmode
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4099
    "connect a fileDescriptor; openmode is the string defining the way to open.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4100
     This can be used to connect an extrnally provided fileDescriptor (from
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4101
     primitive code) or a pipeFileDescriptor (as returned by makePipe) to
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4102
     a Stream object. 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4103
     The openMode ('r', 'w' etc.) must match the mode in which
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4104
     the fileDescriptor was originally opened (otherwise i/o errors will be reported later)."
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4105
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4106
    |retVal|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4107
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  4108
    filePointer notNil ifTrue:[^ self errorAlreadyOpen].
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4109
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4110
    FILEPOINTER f;
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4111
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  4112
    FILE *fdopen();
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4113
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4114
    if (__isSmallInteger(aFileDescriptor) 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4115
     && (__qClass(openmode)== @global(String))) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4116
	f = (FILEPOINTER) fdopen(__intVal(aFileDescriptor), (char *)__stringVal(openmode));
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4117
	if (f == NULL) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4118
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4119
	    __INST(position) = nil;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4120
	} else {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4121
	    if (@global(FileOpenTrace) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4122
		fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", __intVal(aFileDescriptor), f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4123
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4124
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4125
	    __INST(filePointer) = fp = __MKFILEPOINTER(f); __STORE(self, fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4126
	    __INST(position) = @global(PositionableStream:ZeroPosition);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4127
	    retVal = self;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4128
	}
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4129
    }
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4130
%}.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4131
    retVal notNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4132
	buffered := true.       "default is buffered"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4133
	Lobby register:self
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4134
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4135
    lastErrorNumber notNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4136
	"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4137
	 the open failed for some reason ...
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4138
	"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4139
	^ self openError
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4140
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4141
    ^ retVal
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4142
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4143
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4144
open:aPath withMode:mode
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4145
    "low level open; opens the file/device and sets the filePointer instance
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4146
     variable. Careful: this does not care for any other state."
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4147
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4148
    |ok|
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4149
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4150
    ok := false.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4151
%{
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4152
    FILE *f; 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4153
    OBJ fp;
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4154
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4155
    if (__isString(aPath)) { 
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4156
#ifdef WIN32
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4157
	__BEGIN_INTERRUPTABLE__
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4158
	f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4159
	__END_INTERRUPTABLE__
5623
ce4c02168253 removed fopen workaround (now have a better malloc)
Claus Gittinger <cg@exept.de>
parents: 5620
diff changeset
  4160
#else /* UNIX */
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4161
	__BEGIN_INTERRUPTABLE__
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4162
	do {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4163
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4164
	} while ((f == NULL) && (__threadErrno == EINTR));
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4165
	__END_INTERRUPTABLE__
5623
ce4c02168253 removed fopen workaround (now have a better malloc)
Claus Gittinger <cg@exept.de>
parents: 5620
diff changeset
  4166
#endif /* UNIX */
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4167
	if (f == NULL) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4168
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4169
	} else {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4170
	    if (@global(FileOpenTrace) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4171
		fprintf(stderr, "fopen %s [ExternalStream] -> %x\n", __stringVal(aPath), f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4172
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4173
	    __INST(filePointer) = fp = __MKFILEPOINTER(f); __STORE(self, fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4174
	    ok = true;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4175
	}
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4176
    }
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4177
%}.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4178
    ok ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4179
	"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4180
	 the open failed for some reason ...
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4181
	"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4182
	^ self openError
4456
914ce6ac4052 initialize position
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
  4183
    ].
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4184
    position := ZeroPosition.
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4185
    Lobby register:self. 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4186
!
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4187
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4188
reOpen
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4189
    "sent after snapin to reopen streams.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4190
     cannot reopen here since I am abstract and have no device knowledge"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4191
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4192
    self class name errorPrint. ' [warning]: automatic reOpen not supported - stream closed' errorPrintCR.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4193
    filePointer := nil.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4194
    Lobby unregister:self.
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4195
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4196
    "Modified: 10.1.1997 / 17:50:44 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4197
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4198
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4199
setLastError:aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4200
    lastErrorNumber := aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4201
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4202
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4203
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4204
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4205
isBinary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4206
    "return true, if the stream is in binary (as opposed to text-) mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4207
     The default when created is false."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4208
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4209
    ^ binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4210
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4211
7804
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4212
isBlocking
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4213
    "return true, if O_NONBLOCK is NOT set in the fileDescriptor (propably UNIX specific)"
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4214
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4215
    filePointer isNil ifTrue:[^ self errorNotOpen].
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4216
    ^ OperatingSystem isBlockingOn:self fileDescriptor
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4217
!
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4218
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4219
isExternalStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4220
    "return true, if the receiver is some kind of externalStream;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4221
     true is returned here - the method redefined from Object."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4222
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4223
    ^ true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4224
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4225
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4226
isOpen 
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4227
    "return true, if this stream is open"
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4228
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4229
    ^ filePointer notNil
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4230
!
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4231
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4232
isReadable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4233
    "return true, if this stream can be read from"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4234
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4235
    ^ (mode ~~ #writeonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4236
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4237
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4238
isWritable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4239
    "return true, if this stream can be written to"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4240
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4241
    ^ (mode ~~ #readonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4242
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4243
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4244
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4245
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4246
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4247
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4248
     In binary mode, an integer is returned, otherwise a character.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4249
     If there are no more elements, nil is returned."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4250
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4251
    |c|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4252
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4253
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4254
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4255
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4256
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4257
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4258
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4259
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4260
        && (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4261
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4262
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4263
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4264
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4265
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4266
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4267
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4268
        __READBYTE__(ret, f, &ch, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4269
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4270
        if (ret > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4271
            pos = __INST(position);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4272
            if (__isSmallInteger(pos)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4273
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4274
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4275
                __INST(position) = t = __MKINT(__intVal(pos) + 1); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4276
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4277
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4278
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4279
            if (__INST(binary) == true) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4280
                RETURN ( __MKSMALLINT(ch) );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4281
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4282
            RETURN ( __MKCHARACTER(ch) );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4283
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4284
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4285
        __INST(position) = nil;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4286
        if (ret < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4287
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4288
        } else /* ret == 0 */ {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4289
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4290
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4291
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4292
%}.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4293
    hitEOF == true ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4294
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4295
    filePointer isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4296
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4297
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4298
    readAhead notNil ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4299
        c := readAhead.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4300
        readAhead := nil.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4301
        ^ c.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4302
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4303
    c := self nextByteFromFile:filePointer.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4304
    c isNil ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4305
        ^ self pastEnd.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4306
    ].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4307
    binary == true ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4308
        ^ c
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4309
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4310
    ^ Character value:c
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4311
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4312
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4313
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4314
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4315
     Redefined to return a String or ByteArray instead of the default: Array."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4316
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4317
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4318
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4319
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4320
	coll := ByteArray uninitializedNew:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4321
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4322
	coll := String new:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4323
    ].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4324
    nRead := self nextBytes:count into:coll startingAt:1.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4325
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4326
    "/ for readStream protocol compatibility, 
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4327
    "/ we must raise an exception here.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4328
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4329
    nRead < count ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4330
	^ self pastEnd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4331
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4332
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4333
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4334
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4335
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4336
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4337
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4338
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4339
     In binary mode, an integer is returned, otherwise a character.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4340
     If there are no more elements, nil is returned."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4341
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4342
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4343
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4344
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4345
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4346
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4347
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4348
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4349
    if ((ra = __INST(readAhead)) != nil) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4350
	if (__INST(binary) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4351
	    RETURN ( ra );
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4352
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4353
	c = __intVal(ra);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4354
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4355
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4356
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4357
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4358
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4359
    if (((fp = __INST(filePointer)) != nil)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4360
	&& (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4361
    ) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4362
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4363
	_buffered = (__INST(buffered) == true);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4364
	if (_buffered) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4365
	    __READING__(f)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4366
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4367
	__READBYTE__(ret, f, &c, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4368
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4369
	if (ret > 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4370
	    __UNGETC__(c, f, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4371
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4372
	    if (__INST(binary) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4373
		RETURN ( __MKSMALLINT(c) );
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4374
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4375
	    RETURN ( __MKCHARACTER(c) );
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4376
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4377
	if (ret < 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4378
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4379
	} else /* ret == 0 */ {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4380
	    __INST(hitEOF) = true;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4381
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4382
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4383
%}.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4384
    hitEOF == true ifTrue:[^ self pastEnd]. 
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4385
    lastErrorNumber notNil ifTrue:[^ self readError].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4386
    filePointer isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4387
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4388
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4389
    readAhead notNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4390
	^ readAhead
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4391
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4392
    self atEnd ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4393
	^ self pastEnd
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4394
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4395
    readAhead := self next.
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4396
    ^ readAhead
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4397
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4398
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4399
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4400
    "return a collection of the elements up-to the end.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4401
     Return nil if the stream-end is reached before."
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4402
6569
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4403
    |answerStream buffer count|
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4404
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4405
    buffer := self contentsSpecies new:4096.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4406
    [self atEnd] whileFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4407
	count := self nextAvailableBytes:4096 into:buffer startingAt:1.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4408
	count ~~ 0 ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4409
	    answerStream isNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4410
		answerStream := WriteStream with:buffer.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4411
		answerStream position0Based:count.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4412
		buffer := self contentsSpecies new:4096.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4413
	    ] ifFalse:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4414
		answerStream nextPutAll:buffer startingAt:1 to:count.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4415
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4416
	].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4417
    ].
6758
bc933037a1dc oops - upToEnd failed if already at the end
Claus Gittinger <cg@exept.de>
parents: 6661
diff changeset
  4418
    answerStream isNil ifTrue:[^ self contentsSpecies new].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4419
    ^ answerStream contents
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4420
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4421
    "
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4422
     ('smalltalk.rc' asFilename readStream upToEnd)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4423
     =
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4424
     ('smalltalk.rc' asFilename readStream contentsOfEntireFile)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4425
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4426
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4427
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4428
!ExternalStream methodsFor:'reimplemented for speed'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4429
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4430
nextAlphaNumericWord
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4431
    "read the next word (i.e. up to non letter-or-digit) after first
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4432
     skipping any whiteSpace.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4433
     Return a string containing those characters.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4434
     There is a limit of 1023 characters in the word - if longer,
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4435
     it is truncated."
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4436
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4437
%{  /* STACK: 2000 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4438
    FILEPOINTER f;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4439
    int len;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4440
    char buffer[1024];
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4441
    unsigned char ch;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4442
    int cnt = 0;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4443
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4444
    OBJ fp;
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4445
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4446
    if (((fp = __INST(filePointer)) != nil)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4447
     && (__INST(mode) != @symbol(writeonly))
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4448
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4449
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4450
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4451
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4452
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4453
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4454
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4455
        /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4456
         * skip whiteSpace first ...
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4457
         */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4458
        do {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4459
            __READBYTE__(ret, f, &ch, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4460
            if (ret > 0)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4461
                cnt++;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4462
            else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4463
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4464
        } while (
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4465
#ifndef NON_ASCII
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4466
                 (ch < ' ') ||
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4467
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4468
                 (ch == ' ' ) || (ch == '\t') || (ch == '\r')
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4469
              || (ch == '\n') || (ch == 0x0b));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4470
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4471
        len = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4472
        while (ret > 0 && 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4473
               (((ch >= 'a') && (ch <= 'z')) ||
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4474
                ((ch >= 'A') && (ch <= 'Z')) ||
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4475
                ((ch >= '0') && (ch <= '9')))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4476
        ) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4477
            buffer[len++] = ch;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4478
            if (len >= (sizeof(buffer)-1)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4479
                /* emergency */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4480
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4481
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4482
            __READBYTE__(ret, f, &ch, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4483
            if (ret > 0)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4484
                cnt++;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4485
            else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4486
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4487
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4488
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4489
        if (ret <= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4490
            if (ret < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4491
                __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4492
                goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4493
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4494
            else if (ret == 0)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4495
                __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4496
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4497
            __UNGETC__(ch, f, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4498
            cnt--;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4499
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4500
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4501
        if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4502
            INT np = __intVal(__INST(position)) + cnt;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4503
            OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4504
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4505
            __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4506
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4507
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4508
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4509
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4510
        if (len != 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4511
            buffer[len] = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4512
            RETURN ( __MKSTRING_L(buffer, len) );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4513
        }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4514
    }
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4515
err: ;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4516
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4517
    hitEOF ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4518
    lastErrorNumber notNil ifTrue:[^ self readError].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4519
    filePointer isNil ifTrue:[^ self errorNotOpen].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  4520
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  4521
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  4522
    ^ super nextAlphaNumericWord
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4523
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4524
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4525
nextChunk
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4526
    "return the next chunk, i.e. all characters up to the next
668
73165201a9da nextChunk: %{ is only recognized if at begin-of-line
Claus Gittinger <cg@exept.de>
parents: 665
diff changeset
  4527
     exclamation mark. Within the chunk, exclamation marks have to be doubled -
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4528
     except within primitive code (this exception was added to make it easier
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4529
     to edit primitive code with external editors). This means, that other
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4530
     Smalltalks cannot always read chunks containing primitive code - but that
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4531
     doesnt really matter, since C-primitives are an ST/X feature anyway.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4532
     Reimplemented here for more speed."
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4533
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4534
    |retVal outOfMemory buffer|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4535
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4536
    filePointer isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4537
    binary == true ifTrue:[^ self errorBinary].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4538
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4539
2854
3c8bf66e4e7d give nextChunk a bit more stack
Claus Gittinger <cg@exept.de>
parents: 2766
diff changeset
  4540
%{  /* STACK: 12000 */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4541
    /*
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4542
     * the main trick (and a bit of complication) here
2874
020627074c9e oops - nextChunk could access invalid memory due
Claus Gittinger <cg@exept.de>
parents: 2861
diff changeset
  4543
     * is to read the first 8k into a stack-buffer.
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4544
     * Since most chunks fit into that, 
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4545
     * this avoids creating lots of garbage for thos small chunks.
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4546
     */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4547
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4548
    int nread = 0, done = 0;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4549
    unsigned char c, lastC, peekC;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4550
    int ret;
1823
51ffb7231437 type casts
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4551
    unsigned char *bufferPtr = (unsigned char *)0;
2874
020627074c9e oops - nextChunk could access invalid memory due
Claus Gittinger <cg@exept.de>
parents: 2861
diff changeset
  4552
    unsigned char fastBuffer[8000];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4553
    REGISTER int index;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4554
    int currSize, fastFlag, _buffered;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4555
    int atBeginOfLine = 1, inPrimitive = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4556
    int haveCR = 0, haveNL = 0;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4557
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4558
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4559
    f = __FILEVal(__INST(filePointer));
668
73165201a9da nextChunk: %{ is only recognized if at begin-of-line
Claus Gittinger <cg@exept.de>
parents: 665
diff changeset
  4560
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4561
    _buffered = (__INST(buffered) == true);
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4562
    if (_buffered) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4563
        __READING__(f)
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4564
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4565
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4566
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4567
     * skip spaces
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4568
     */
673
2c3a4a536cd1 oops - handling of exclas within primitives was wrong
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  4569
    c = '\n';
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4570
    while (! done) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4571
        lastC = c;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4572
        __READBYTE__(ret, f, &c, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4573
        if (ret <= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4574
            goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4575
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4576
        nread++;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4577
        atBeginOfLine = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4578
        switch (c) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4579
            case '\n':
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4580
            case ' ':
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4581
            case '\t':
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4582
            case '\r':
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4583
            case '\b':
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4584
            case '\014':
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4585
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4586
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4587
            default:
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4588
                atBeginOfLine = (lastC == '\n');
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4589
                done = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4590
                break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4591
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4592
    }
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4593
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4594
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4595
     * read chunk into a buffer
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4596
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4597
    bufferPtr = fastBuffer; fastFlag = 1;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4598
    currSize = sizeof(fastBuffer);
362
claus
parents: 360
diff changeset
  4599
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4600
    index = 0;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4601
    for (;;) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4602
        __READBYTE__(ret, f, &peekC, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4603
        if ((c == '%') && atBeginOfLine && ret > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4604
            if (peekC == '{') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4605
                inPrimitive = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4606
            } else if (peekC == '}') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4607
                inPrimitive = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4608
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4609
        } else if (c == '!' && !inPrimitive) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4610
            if (ret > 0 && peekC == '!') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4611
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4612
                 * convert double-! to a single !
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4613
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4614
                __READBYTE__(ret, f, &peekC, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4615
                if (ret > 0)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4616
                    nread++;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4617
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4618
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4619
                 * End of chunk, push back lookahead character
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4620
                 * and leave loop.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4621
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4622
                if (ret > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4623
                    __UNGETC__(peekC, f, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4624
                } else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4625
                    ret = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4626
                break; 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4627
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4628
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4629
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4630
        /* 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4631
         * do we have to resize the buffer ? 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4632
         */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4633
        if ((index+2) >= currSize) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4634
            OBJ newBuffer;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4635
            unsigned char *nbp;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4636
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4637
            newBuffer = __MKEMPTYSTRING(currSize * 2);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4638
            if (!fastFlag) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4639
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4640
                 * refetch - buffer could be moved by GC
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4641
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4642
                bufferPtr = __stringVal(buffer);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4643
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4644
            if (newBuffer == nil) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4645
                /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4646
                 * mhmh - chunk seems to be very big ....
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4647
                 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4648
                outOfMemory = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4649
                goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4650
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4651
            nbp = __stringVal(newBuffer);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4652
            bcopy(bufferPtr, nbp, index);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4653
            bufferPtr = nbp;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4654
            bufferPtr[index] = '\0';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4655
            buffer = newBuffer;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4656
            fastFlag = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4657
            currSize = currSize * 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4658
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4659
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4660
        if (!fastFlag) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4661
            /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4662
             * old buffer may have moved (interrupt while reading)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4663
             * - refetch pointer
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4664
             */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4665
            bufferPtr = __stringVal(buffer);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4666
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4667
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4668
        /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4669
         * filter out cr-nl; make it nl
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4670
         */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4671
        if (c == '\n') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4672
            haveNL = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4673
            if (index > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4674
                if (bufferPtr[index-1] == '\r') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4675
                    index--;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4676
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4677
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4678
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4679
            if (c == '\r') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4680
                haveCR = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4681
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4682
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4683
        bufferPtr[index++] = c;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4684
        if (ret <= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4685
            if (ret == 0)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4686
                break;          /* End of chunk reached */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4687
            goto err;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4688
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4689
        nread++;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4690
        atBeginOfLine = (c == '\n');
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4691
        c = peekC;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4692
    }
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4693
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4694
    /*
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4695
     * care for CR-limited files.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4696
     * Replace CR's by NL's
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4697
     */
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4698
    if (!haveNL && haveCR) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4699
        int i;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4700
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4701
        for (i=index-1; i>=0; i--) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4702
            if (bufferPtr[i] == '\r') {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4703
                bufferPtr[i] = '\n';
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4704
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4705
        }
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4706
    }
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4707
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4708
    /*
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4709
     * make it a string
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4710
     * be careful here - allocating a new string may make the
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4711
     * existing buffer move around. Need to check if copying from
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4712
     * fast (C) buffer or from real (ST) buffer.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4713
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4714
    if (fastFlag) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4715
        retVal = __MKSTRING_L(bufferPtr, index);
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4716
    } else {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4717
        retVal = __MKSTRING_ST_L(buffer, index);
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4718
    }
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4719
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  4720
err: ;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4721
    if (ret <= 0) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4722
        if (ret == 0)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4723
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4724
        else /* ret < 0 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4725
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4726
    }
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4727
    if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4728
        INT np = __intVal(__INST(position)) + nread;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4729
        OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4730
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4731
        __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4732
    } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4733
        __INST(position) = nil; /* i.e. do not know */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4734
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4735
%}.
370
claus
parents: 369
diff changeset
  4736
    retVal isNil ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4737
        "/
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4738
        "/ arrive here with retVal==nil either on error or premature EOF
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4739
        "/ or if running out of malloc-memory
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4740
        "/
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4741
        hitEOF == true ifTrue:[^ self pastEnd].
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4742
        lastErrorNumber notNil ifTrue:[^ self readError].
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4743
        outOfMemory == true ifTrue:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4744
            "
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4745
             buffer memory allocation failed.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4746
             When we arrive here, there was no memory available for the
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4747
             chunk. (seems to be too big of a chunk ...)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4748
             Bad luck - you should increase the ulimit and/or swap space on your machine.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4749
            "
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4750
            ^ ObjectMemory allocationFailureSignal raise.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4751
        ].
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4752
        ^ super nextChunk
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4753
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4754
    ^ retVal
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4755
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4756
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4757
nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4758
    "skip all objects up-to and including anObject, return anObject on success,
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4759
     nil if end-of-file is reached before. The next read operation will return
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4760
     the element after anObject.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4761
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4762
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4763
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4764
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4765
    int ret, peekValue;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4766
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4767
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4768
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4769
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4770
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4771
        && (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4772
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4773
        if ((__INST(binary) == true) && __isSmallInteger(anObject)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4774
            peekValue = __intVal(anObject) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4775
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4776
            if ((__INST(binary) != true) && __isCharacter(anObject)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4777
                peekValue = __intVal(_characterVal(anObject)) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4778
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4779
                peekValue = -1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4780
            }   
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4781
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4782
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4783
        if (peekValue >= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4784
            int _buffered;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4785
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4786
            __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4787
            f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4788
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4789
            if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4790
                __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4791
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4792
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4793
            for (;;) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4794
                __READBYTE__(ret, f, &c, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4795
                if (ret <= 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4796
                    if (ret < 0)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4797
                        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4798
                    else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4799
                        __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4800
                    break;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4801
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4802
                if (c == peekValue) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4803
                    RETURN (anObject);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4804
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4805
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4806
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4807
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4808
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4809
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4810
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4811
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4812
    ^ super nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4813
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4814
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4815
peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4816
    "return true and move past next element, if next == something.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4817
     Otherwise, stay and return false. False is also returned
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4818
     when EOF is encountered.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4819
     The argument must be an integer if in binary, a character if in
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4820
     text mode; only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4821
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4822
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4823
    FILEPOINTER f;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4824
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4825
    int ret, peekValue, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4826
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4827
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4828
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4829
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4830
        && (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4831
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4832
        if (__INST(binary) == true) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4833
            if (__isSmallInteger(anObject)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4834
                peekValue = __intVal(anObject) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4835
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4836
                goto bad;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4837
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4838
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4839
            if (__isCharacter(anObject)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4840
                peekValue = __intVal(_characterVal(anObject)) & 0xFF;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4841
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4842
                goto bad;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4843
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4844
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4845
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4846
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4847
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4848
        _buffered = (__INST(buffered) == true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4849
        if (_buffered) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4850
            __READING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4851
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4852
        __READBYTE__(ret, f, &c, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4853
        if (ret > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4854
            if (c == peekValue) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4855
                if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4856
                    INT np = __intVal(__INST(position)) + 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4857
                    OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4858
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4859
                    __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4860
                } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4861
                    __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4862
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4863
                RETURN (true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4864
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4865
            __UNGETC__(c, f, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4866
            RETURN (false);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4867
        } 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4868
        if (ret < 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4869
            __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4870
        } else /* ret == 0 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4871
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4872
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4873
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4874
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4875
    ^ super peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4876
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4877
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4878
skipLine
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4879
    "read the next line (characters up to newline) skip only;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4880
     return nil if EOF reached, self otherwise. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4881
     Not allowed in binary mode."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4882
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4883
%{  /* STACK:2000 */
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4884
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4885
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4886
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4887
    int ret, _buffered;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4888
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4889
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4890
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4891
    if (((fp = __INST(filePointer)) != nil)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4892
	&& (__INST(mode) != @symbol(writeonly))
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4893
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4894
    ) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4895
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4896
	if (_buffered = (__INST(buffered) == true)) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4897
	    __READING__(f)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4898
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4899
	for (;;) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4900
	    __READBYTE__(ret, f, &c, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4901
	    if (ret > 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4902
		if (c == '\n')
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4903
		    RETURN(self) 
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4904
	    } else
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4905
		break;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4906
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4907
	if (ret < 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4908
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4909
	} else /* ret == 0 */ {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4910
	    __INST(hitEOF) = true;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4911
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4912
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4913
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4914
    hitEOF ifTrue:[^ self pastEnd].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4915
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4916
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4917
    binary ifTrue:[self errorBinary. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4918
    self errorWriteOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4919
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4920
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4921
skipSeparators
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4922
    "skip all whitespace; next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4923
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4924
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4925
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4926
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4927
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4928
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4929
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4930
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4931
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4932
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4933
    if (((fp = __INST(filePointer)) != nil)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4934
	&& (__INST(mode) != @symbol(writeonly))
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4935
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4936
    ) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4937
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4938
	_buffered = (__INST(buffered) == true);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4939
	if (_buffered) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4940
	    __READING__(f)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4941
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4942
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4943
	while (1) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4944
	    __READBYTE__(ret, f, &c, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4945
	    if (ret <= 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4946
		if (ret < 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4947
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4948
		} else /* ret == 0 */ {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4949
		    __INST(hitEOF) = true;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4950
		}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4951
		break;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4952
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4953
	    switch (c) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4954
		case ' ':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4955
		case '\t':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4956
		case '\n':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4957
		case '\r':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4958
		case '\b':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4959
		case '\f':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4960
		    break;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4961
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4962
		default:
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4963
		    __UNGETC__(c, f, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4964
		    RETURN ( __MKCHARACTER(c & 0xFF) );
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4965
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4966
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4967
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4968
%}.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4969
    hitEOF == true ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4970
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4971
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4972
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4973
    (binary == true) ifTrue:[^ self errorBinary].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4974
    ^ super skipSeparators.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4975
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4976
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4977
skipSeparatorsExceptCR
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4978
    "skip all whitespace but no newlines;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4979
     next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4980
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4981
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4982
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4983
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4984
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4985
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4986
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4987
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4988
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4989
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4990
    if (((fp = __INST(filePointer)) != nil)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4991
	&& (__INST(mode) != @symbol(writeonly))
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4992
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4993
    ) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4994
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4995
	_buffered = (__INST(buffered) == true);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4996
	if (_buffered) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4997
	    __READING__(f)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4998
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4999
	while (1) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5000
	    __READBYTE__(ret, f, &c, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5001
	    if (ret <= 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5002
		if (ret < 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5003
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5004
		} else /* ret == 0 */ {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5005
		    __INST(hitEOF) = true;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5006
		}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5007
		break;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5008
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5009
	    switch (c) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5010
		case ' ':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5011
		case '\t':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5012
		case '\b':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5013
		case '\f':
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5014
		    break;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5015
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5016
		default:
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5017
		    __UNGETC__(c, f, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5018
		    RETURN ( __MKCHARACTER(c & 0xFF) );
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5019
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5020
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5021
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5022
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  5023
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5024
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5025
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5026
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5027
    ^ self errorBinary.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5028
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5029
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5030
skipThrough:aCharacter
6012
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5031
    "skip all characters up-to and including aCharacter. 
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5032
     Return the receiver if skip was successful, 
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5033
     otherwise (i.e. if not found) return nil and leave the stream positioned at the end.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5034
     The next read operation will return the character after aCharacter.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5035
     The argument, aCharacter must be character, or integer when in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5036
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5037
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5038
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5039
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5040
    REGISTER int cSearch;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5041
    unsigned char c;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5042
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5043
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5044
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5045
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5046
    if (((fp = __INST(filePointer)) != nil)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5047
	&& (__INST(mode) != @symbol(writeonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5048
    ) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5049
	if (__INST(binary) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5050
	    /* searched for object must be a smallInteger */
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5051
	    if (! __isSmallInteger(aCharacter)) goto badArgument;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5052
	    cSearch = __intVal(aCharacter);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5053
	} else {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5054
	    /* searched for object must be a character */
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5055
	    if (! __isCharacter(aCharacter)) goto badArgument;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5056
	    cSearch = __intVal(_characterVal(aCharacter));
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5057
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5058
	/* Q: should we just say: "not found" ? */
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5059
	if ((cSearch < 0) || (cSearch > 255)) goto badArgument;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5060
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5061
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5062
	if (_buffered = (__INST(buffered) == true)) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5063
	    __READING__(f)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5064
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5065
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5066
	while (1) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5067
	    __READBYTE__(ret, f, &c, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5068
	    if (ret <= 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5069
		if (ret < 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5070
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5071
		} else /* ret == 0 */ {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5072
		    __INST(hitEOF) = true;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5073
		}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5074
		break;
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5075
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5076
	    if (c == cSearch) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5077
		RETURN (self);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5078
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5079
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5080
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5081
badArgument: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5082
%}.
6012
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5083
    hitEOF ifTrue:[^ nil].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5084
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5085
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5086
    (mode == #writeonly) ifTrue:[self errorWriteOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5087
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5088
     argument must be integer/character in binary mode, 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5089
     character in text mode
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5090
    "
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5091
    self error:'invalid argument'.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5092
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5093
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5094
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5095
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5096
     s skipThrough:$=.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5097
     s next:10
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5098
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5099
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5100
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5101
skipToAll:aString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5102
    "skip for the sequence given by the argument, aCollection;
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5103
     return nil if not found, self otherwise. 
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5104
     On a successful match, the next read will return characters of aString."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5105
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5106
    |oldPos|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5107
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5108
    oldPos := self position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5109
    (self skipThroughAll:aString) isNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5110
	"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5111
	 restore position
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5112
	"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5113
	self position:oldPos.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5114
	^ nil
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5115
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5116
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5117
     position before match-string
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5118
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5119
    self position:(self position - aString size).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5120
    ^ self
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5121
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5122
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5123
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5124
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5125
     s skipToAll:'are'.
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5126
     s next:10 
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5127
    "
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5128
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5129
    "Modified: 26.6.1996 / 09:22:05 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5130
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5131
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5132
!ExternalStream methodsFor:'rel5 protocol'!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5133
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5134
atEndFile:filePointer
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5135
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5136
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5137
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5138
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5139
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5140
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5141
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5142
nextByteFromFile:filePointer
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5143
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5144
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5145
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5146
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5147
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5148
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5149
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5150
nextPutByte:aByte toFile:filePointer
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5151
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5152
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5153
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5154
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5155
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5156
! !
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5157
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5158
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5159
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5160
atEnd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5161
    "return true, if position is at end"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5162
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5163
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5164
    FILEPOINTER f;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5165
    OBJ fp, pos, lim;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5166
    char c;
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  5167
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5168
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5169
    if (__INST(hitEOF) == true) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5170
        RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5171
    }
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5172
    pos = __INST(position);
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5173
    lim = __INST(readLimit);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5174
    if (lim != nil) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5175
        off_t _pos, _readLimit;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5176
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5177
        _pos = __signedLongIntVal(pos);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5178
        _pos = _pos - __intVal( @global(PositionableStream:ZeroPosition)) + 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5179
        _readLimit = __signedLongIntVal(lim);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5180
        if (_pos > _readLimit) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5181
            RETURN (true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5182
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5183
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5184
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5185
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5186
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5187
    if ((fp = __INST(filePointer)) != nil) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5188
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5189
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5190
        if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5191
            __READING__(f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5192
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5193
            if (__INST(readAhead) != nil) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5194
                RETURN (false);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5195
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5196
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5197
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5198
        /*
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5199
         * read ahead ...
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5200
         */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5201
        do {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5202
            __BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5203
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5204
#ifdef WIN32
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5205
            __threadErrno = 0;
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  5206
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5207
            __READBYTE__(ret, f, &c, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5208
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5209
            __END_INTERRUPTABLE__
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5210
        } while ((ret < 0) && (__threadErrno == EINTR));
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5211
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5212
#if defined(WIN32) && defined(EPIPE)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5213
        if ((ret < 0) && (__threadErrno == EPIPE)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5214
            ret = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5215
            __threadErrno = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5216
        }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5217
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5218
        if (ret > 0) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5219
            __UNGETC__(c&0xff, f, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5220
            RETURN (false);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5221
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5222
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5223
        if (ret == 0) { 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5224
            __INST(hitEOF) = true;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5225
            RETURN (true);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5226
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5227
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5228
        /* ret < 0 */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5229
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5230
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5231
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5232
    lastErrorNumber notNil ifTrue:[^ self readError].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5233
    filePointer isNil ifTrue:[^ self errorNotOpen].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5234
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5235
    readAhead notNil ifTrue:[^ false].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5236
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5237
    "/ migration support
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5238
    ^ self 
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5239
        atEndFile:filePointer
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5240
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5241
    "Modified: / 30.10.1998 / 20:16:06 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5242
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5243
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5244
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5245
    "return true, if any data is available for reading (i.e.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5246
     a read operation will not block the smalltalk process), false otherwise."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5247
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5248
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5249
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5250
    readAhead notNil ifTrue:[^ true].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5251
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5252
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5253
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5254
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5255
    ^ OperatingSystem readCheck:fd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5256
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5257
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5258
     |pipe|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5259
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5260
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5261
     pipe canReadWithoutBlocking ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5262
	 Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5263
     ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5264
	 Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5265
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5266
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5267
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5268
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5269
    "Modified: 25.9.1997 / 13:08:45 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5270
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5271
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5272
canWriteWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5273
    "return true, if data can be written into the stream 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5274
     (i.e. a write operation will not block the smalltalk process)."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5275
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5276
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5277
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5278
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5279
    mode == #readonly ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5280
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5281
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5282
    ^ OperatingSystem writeCheck:fd
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5283
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5284
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5285
nextError
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5286
    "return the error by trying to read something.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5287
     Should only be used, when we know, that a read operation
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5288
     will return an error (otherwise a character may be lost).
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5289
     Return an integer (error number), 0 (EOF) or nil (no error)"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5290
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5291
%{ /*NOCONTEXT*/                                  
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5292
    FILEPOINTER f;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5293
    int ret, _buffered;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5294
    OBJ fp;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5295
    unsigned char ch;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5296
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5297
    if (((fp = __INST(filePointer)) != nil)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5298
	&& (__INST(mode) != @symbol(writeonly))
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5299
    ) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5300
	f = __FILEVal(fp);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5301
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5302
	_buffered = (__INST(buffered) == true);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5303
	if (_buffered) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5304
	    __READING__(f)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5305
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5306
	__READBYTE__(ret, f, &ch, _buffered);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5307
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5308
	if (ret > 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5309
	    RETURN(nil)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5310
	}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5311
	if (ret < 0) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5312
	    RETURN(__MKSMALLINT(__threadErrno));
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5313
	} else /* ret == 0 */ {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5314
	    RETURN(__MKSMALLINT(0)); /* EOF */
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5315
	}
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5316
    }
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5317
%}.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5318
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5319
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5320
numAvailable
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5321
    "return the number of bytes available for reading"
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5322
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5323
    |fd|
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5324
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5325
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5326
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5327
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5328
    fd := self fileDescriptor.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5329
    ^ OperatingSystem numAvailableForReadOn:fd.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5330
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5331
"/    self atEnd ifTrue:[^ 0].
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5332
"/    self canReadWithoutBlocking ifTrue:[
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5333
"/        ^ 1
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5334
"/    ].
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5335
"/    ^ 0
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5336
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5337
    "Created: / 4.2.1998 / 16:56:01 / cg"
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5338
    "Modified: / 4.2.1998 / 17:31:11 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5339
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5340
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5341
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5342
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5343
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5344
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5345
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5346
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5347
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5348
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5349
readWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5350
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5351
     becomes ready for reading. If data is already available,
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5352
     return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5353
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5354
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5355
    self readWaitWithTimeoutMs:nil
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5356
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5357
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5358
readWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5359
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5360
    ^ self readWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5361
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5362
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5363
readWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5364
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5365
     becomes ready for reading or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5366
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5367
     Return true if a timeout occured (i.e. false, if data is available).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5368
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5369
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5370
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5371
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5372
    timeout notNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5373
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5374
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5375
    ^ self readWaitWithTimeoutMs:ms
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5376
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5377
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5378
readWaitWithTimeoutMs:timeout 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5379
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5380
     becomes ready for reading or a timeout (in milliseconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5381
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5382
     Return true if a timeout occured (i.e. false, if data is available).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5383
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5384
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5385
    |fd inputSema hasData wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5386
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5387
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5388
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5389
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5390
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5391
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5392
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5393
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5394
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5395
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5396
    hasData := OperatingSystem readCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5397
    hasData ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5398
	inputSema := Semaphore new name:'readWait'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5399
	[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5400
	    timeout notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5401
		Processor signal:inputSema afterMilliseconds:timeout 
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5402
	    ].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5403
	    Processor signal:inputSema onInput:fd.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5404
	    Processor activeProcess state:#ioWait.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5405
	    inputSema wait.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5406
	    Processor disableSemaphore:inputSema.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5407
	    hasData := OperatingSystem readCheck:fd
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5408
	] ifCurtailed:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5409
	    Processor disableSemaphore:inputSema.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5410
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5411
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5412
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5413
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5414
    ^ hasData not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5415
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5416
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5417
readWriteWait
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5418
    "suspend the current process, until the receiver
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5419
     becomes ready for writing or reading.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5420
     Return immediate if the receiver is already ready. 
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5421
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5422
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5423
    self readWriteWaitWithTimeoutMs:nil
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5424
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5425
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5426
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5427
    "suspend the current process, until the receiver
7678
f570456a1e28 comments
Claus Gittinger <cg@exept.de>
parents: 7543
diff changeset
  5428
     becomes ready for reading or writing or a timeout (in milliseconds) expired. 
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5429
     Return true if a timeout occured (i.e. false, if data is available).
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5430
     Return immediate if the receiver is already ready. 
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5431
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5432
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5433
    |fd sema canReadWrite wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5434
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5435
    filePointer isNil ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5436
	^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5437
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5438
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5439
    fd := self fileDescriptor.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5440
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5441
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5442
    wasBlocked := OperatingSystem blockInterrupts.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5443
    canReadWrite := OperatingSystem readWriteCheck:fd.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5444
    canReadWrite ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5445
	sema := Semaphore new name:'readWriteWait'.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5446
	[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5447
	    timeout notNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5448
		Processor signal:sema afterMilliseconds:timeout
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5449
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5450
	    Processor signal:sema onOutput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5451
	    Processor signal:sema onInput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5452
	    Processor activeProcess state:#ioWait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5453
	    sema wait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5454
	    Processor disableSemaphore:sema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5455
	    canReadWrite := OperatingSystem readWriteCheck:fd
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5456
	] ifCurtailed:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5457
	    Processor disableSemaphore:sema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5458
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5459
	]
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5460
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5461
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5462
    ^ canReadWrite not
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5463
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5464
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5465
writeWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5466
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5467
     becomes ready for writing.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5468
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5469
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5470
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5471
    self writeWaitWithTimeoutMs:nil
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5472
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5473
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5474
writeWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5475
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5476
    ^ self writeWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5477
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5478
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5479
writeWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5480
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5481
     becomes ready for writing or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5482
     Return true if a timeout occured (i.e. false, if data is available).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5483
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5484
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5485
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5486
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5487
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5488
    timeout notNil ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5489
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5490
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5491
    ^ self writeWaitWithTimeoutMs:ms
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5492
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5493
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5494
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5495
    "suspend the current process, until the receiver
7678
f570456a1e28 comments
Claus Gittinger <cg@exept.de>
parents: 7543
diff changeset
  5496
     becomes ready for writing or a timeout (in milliseconds) expired. 
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5497
     Return true if a timeout occured (i.e. false, if data is available).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5498
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5499
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5500
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5501
    |fd outputSema canWrite wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5502
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5503
    filePointer isNil ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5504
	^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5505
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5506
    mode == #readonly ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5507
	^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5508
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5509
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5510
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5511
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5512
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5513
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5514
    canWrite := OperatingSystem writeCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5515
    canWrite ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5516
	outputSema := Semaphore new name:'writeWait'.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5517
	[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5518
	    timeout notNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5519
		Processor signal:outputSema afterMilliseconds:timeout
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5520
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5521
	    Processor signal:outputSema onOutput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5522
	    Processor activeProcess state:#ioWait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5523
	    outputSema wait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5524
	    Processor disableSemaphore:outputSema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5525
	    canWrite := OperatingSystem writeCheck:fd
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5526
	] ifCurtailed:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5527
	    Processor disableSemaphore:outputSema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5528
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5529
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5530
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5531
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5532
    ^ canWrite not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5533
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5534
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5535
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5536
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5537
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5538
    "append an end-of-line character (or CRLF if in crlf mode).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5539
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5540
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5541
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5542
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5543
    int len, cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5544
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5545
    char *cp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5546
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5547
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5548
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5549
        && (__INST(mode) != @symbol(readonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5550
        && (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5551
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5552
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5553
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5554
        if (_buffered = (__INST(buffered) == true)) { 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5555
            __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5556
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5557
        {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5558
            OBJ mode = __INST(eolMode);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5559
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5560
            if (mode == @symbol(cr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5561
                cp = "\r"; len = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5562
            } else if (mode == @symbol(crlf)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5563
                cp = "\r\n"; len = 2;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5564
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5565
                cp = "\n"; len = 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5566
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5567
        }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5568
#ifdef WIN32
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5569
        if ((f == stdout) || (f == stderr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5570
            cnt = fwrite(cp, 1, len, f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5571
        } else 
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5572
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5573
        {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5574
            __WRITEBYTES__(cnt, f, cp, len, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5575
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5576
        if (cnt == len) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5577
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5578
                INT np = __intVal(__INST(position)) + len;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5579
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5580
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5581
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5582
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5583
                __INST(position) = nil; /* i.e: dont know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5584
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5585
            RETURN ( self );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5586
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5587
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5588
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5589
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5590
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5591
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5592
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5593
    (binary==true) ifTrue:[self errorBinary. ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5594
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5595
    (eolMode == #cr) ifTrue:[self nextPut:(Character return). ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5596
    (eolMode ~~ #crlf) ifTrue:[self nextPut:(Character nl). ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5597
    self nextPut:(Character return). 
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5598
    self nextPut:(Character nl). 
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5599
    ^ self
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5600
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5601
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5602
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5603
    "write all buffered data - ignored if unbuffered"
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5604
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5605
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5606
    OBJ fp;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5607
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5608
    __INST(lastErrorNumber) = nil;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5609
    if ((fp = __INST(filePointer)) != nil) {
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5610
	if (__INST(mode) != @symbol(readonly)) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5611
	    if (__INST(buffered) == true) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5612
		FILEPOINTER f = __FILEVal(fp);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5613
#ifdef WIN32
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5614
		if ((f == stdout) || (f == stderr)) {
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5615
		    fflush(f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5616
		} else 
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5617
#endif
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5618
		{
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5619
		    __BEGIN_INTERRUPTABLE__
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5620
		    FFLUSH(f);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5621
		    __END_INTERRUPTABLE__
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5622
		}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5623
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5624
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5625
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5626
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5627
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5628
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5629
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5630
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5631
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5632
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5633
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5634
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5635
    char c;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5636
    int cnt, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5637
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5638
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5639
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5640
    if (((fp = __INST(filePointer)) != nil) 
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5641
        && (__INST(mode) != @symbol(readonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5642
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5643
        if (__INST(binary) != true) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5644
            if (__isCharacter(aCharacter)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5645
                c = __intVal(__characterVal(aCharacter)) & 0xFF;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5646
    doWrite:
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5647
                f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5648
                if (! f) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5649
                    fprintf(stderr, "oops - fileHandle is NULL in nextPut:\n");
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5650
                    __INST(filePointer) = nil;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5651
                    goto out;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5652
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5653
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5654
                if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5655
                    __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5656
                }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5657
#ifdef WIN32
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5658
                if ((f == stdout) || (f == stderr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5659
                    cnt = fwrite(&c, 1, 1, f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5660
                } else 
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5661
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5662
                {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5663
                    __WRITEBYTE__(cnt, f, &c, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5664
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5665
                if (cnt == 1) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5666
                    if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5667
                        INT np = __intVal(__INST(position)) + 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5668
                        OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5669
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5670
                        __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5671
                    } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5672
                        __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5673
                    }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5674
                    RETURN ( self );
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5675
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5676
                __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5677
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5678
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5679
            if (__isSmallInteger(aCharacter)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5680
                c = __intVal(aCharacter);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5681
                goto doWrite;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5682
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5683
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5684
    }
7737
616d849b7838 fileHandle check
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  5685
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5686
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5687
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5688
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5689
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5690
    binary == true ifFalse:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5691
        aCharacter isCharacter ifFalse:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5692
            self argumentMustBeCharacter. 
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5693
            ^ self.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5694
        ]
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5695
    ] ifTrue:[
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5696
        aCharacter isInteger ifFalse:[
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5697
            self argumentMustBeInteger.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5698
            ^ self.
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5699
        ].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5700
    ].
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5701
    "/ migration support
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5702
    self 
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5703
        nextPutByte:aCharacter asInteger
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5704
        toFile:filePointer
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5705
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5706
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5707
nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5708
    "write all elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5709
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5710
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5711
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5712
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5713
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5714
    int len, cnt;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5715
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5716
    int _buffered;
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5717
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5718
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5719
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5720
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5721
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5722
        && (__INST(mode) != @symbol(readonly))
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5723
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5724
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5725
        if (! f) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5726
            fprintf(stderr, "oops - fileHandle is NULL in nextPutAll:\n");
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5727
            __INST(filePointer) = nil;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5728
            goto out;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5729
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5730
        if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5731
            __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5732
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5733
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5734
        if (__isString(aCollection) || __isSymbol(aCollection)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5735
            len = __stringSize(aCollection);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5736
#ifdef WIN32
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5737
            if ((f == stdout) || (f == stderr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5738
                cnt = fwrite(__stringVal(aCollection), 1, len, f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5739
            } else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5740
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5741
            {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5742
                o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5743
                __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5744
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5745
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5746
            if (__INST(binary) == true) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5747
                int offs;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5748
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5749
                if (__isByteArray(aCollection)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5750
                    offs = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5751
                    len = __byteArraySize(aCollection);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5752
                } else if (__isBytes(aCollection)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5753
                    offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5754
                    len = __byteArraySize(aCollection) - offs;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5755
                } else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5756
                    goto out;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5757
#ifdef WIN32
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5758
                if ((f == stdout) || (f == stderr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5759
                    cnt = fwrite(__stringVal(aCollection), 1, len, f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5760
                } else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5761
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5762
                {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5763
                    o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element) - (char *)__InstPtr(aCollection);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5764
                    o_offs += offs;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5765
                    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5766
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5767
            } else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5768
                goto out;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5769
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5770
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5771
        if (cnt == len) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5772
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5773
                INT np = __intVal(__INST(position)) + len;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5774
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5775
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5776
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5777
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5778
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5779
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5780
            RETURN (self);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5781
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5782
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5783
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5784
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5785
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5786
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5787
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5788
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5789
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5790
    ^ super nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5791
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5792
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5793
nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5794
    "write a range of elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5795
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5796
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5797
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5798
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5799
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5800
    int offs, len, cnt, iStart, iStop, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5801
    OBJ fp;
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5802
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5803
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5804
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5805
    if (((fp = __INST(filePointer)) != nil)
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5806
        && (__INST(mode) != @symbol(readonly))
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5807
        && __bothSmallInteger(start, stop)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5808
    ) {
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5809
        f = __FILEVal(fp);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5810
        if (_buffered = (__INST(buffered) == true)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5811
            __WRITING__(f)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5812
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5813
        iStart = __intVal(start);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5814
        iStop = __intVal(stop);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5815
        if ((iStart < 1) || (iStop < iStart)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5816
            RETURN(self);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5817
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5818
        if (__isString(aCollection) || __isSymbol(aCollection)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5819
            len = __stringSize(aCollection);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5820
            if (iStop > len) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5821
                RETURN(self);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5822
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5823
            if (iStop > len)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5824
                iStop = len;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5825
            len = iStop - iStart + 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5826
#ifdef WIN32
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5827
            if ((f == stdout) || (f == stderr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5828
                cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5829
            } else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5830
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5831
            {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5832
                o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5833
                __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs+iStart-1, len, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5834
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5835
        } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5836
            if (__INST(binary) == true) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5837
                int offs;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5838
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5839
                if (__isByteArray(aCollection)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5840
                    offs = 0;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5841
                    len = __byteArraySize(aCollection);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5842
                } else if (__isBytes(aCollection)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5843
                    offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5844
                    len = __byteArraySize(aCollection) - offs;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5845
                } else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5846
                    goto out;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5847
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5848
                if (iStop > len) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5849
                    RETURN(self);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5850
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5851
                if (iStop > len)
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5852
                    iStop = len;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5853
                len = iStop - iStart + 1;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5854
                offs += iStart - 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5855
#ifdef WIN32
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5856
                if ((f == stdout) || (f == stderr)) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5857
                    cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5858
                } else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5859
#endif
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5860
                {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5861
                    o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element)-(char *)__InstPtr(aCollection);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5862
                    __WRITEBYTES_OBJ__(cnt, f,  aCollection, o_offs+offs, len, _buffered);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5863
                }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5864
            } else
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5865
                goto out;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5866
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5867
        if (cnt == len) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5868
            if (__isSmallInteger(__INST(position))) {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5869
                INT np = __intVal(__INST(position)) + len;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5870
                OBJ t;
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5871
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5872
                __INST(position) = t = __MKINT(np); __STORE(self, t);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5873
            } else {
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5874
                __INST(position) = nil; /* i.e. do not know */
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5875
            }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5876
            RETURN (self);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5877
        }
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5878
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5879
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5880
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5881
%}.
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  5882
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5883
    ^ super nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5884
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5885
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  5886
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5887
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5888
version
8008
e80739d6c312 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 8007
diff changeset
  5889
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.273 2004-02-27 17:05:02 cg Exp $'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5890
! !
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  5891
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5892
ExternalStream initialize!