ExternalStream.st
author Claus Gittinger <cg@exept.de>
Mon, 18 Oct 1999 11:12:22 +0200
changeset 4914 d7a4c89775a4
parent 4913 4964b2c71d31
child 4968 ff01ac91efa3
permissions -rw-r--r--
oops
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
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
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
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
ReadWriteStream subclass:#ExternalStream
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
    14
	instanceVariableNames:'filePointer mode buffered binary eolMode hitEOF didWrite
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    15
		lastErrorNumber readAhead'
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    16
	classVariableNames:'Lobby LastErrorNumber InvalidReadSignal InvalidWriteSignal
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    17
		InvalidModeSignal OpenErrorSignal StreamNotOpenSignal
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
    18
		InvalidOperationSignal DefaultEOLMode ReadMode ReadWriteMode
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
    19
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal'
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    20
	poolDictionaries:''
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    21
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    24
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    25
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
    26
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    27
#include <stdio.h>
437
claus
parents: 436
diff changeset
    28
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    29
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
    30
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    31
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    32
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    33
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    34
#endif
437
claus
parents: 436
diff changeset
    35
10
claus
parents: 5
diff changeset
    36
#include <errno.h>
437
claus
parents: 436
diff changeset
    37
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    38
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    39
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    40
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    41
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    42
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    43
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    44
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    45
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    46
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    47
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    48
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    49
#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
    50
# 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
    51
#endif
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_CUR
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_CUR 1
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_END
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_END 2
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
4093
1821420b41d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    59
#if defined(__VMS__) || defined(sparc)
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    60
# define CLEAR_ERRNO            errno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    61
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    62
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    63
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    64
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    65
#ifdef LATER
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    66
#define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    67
#define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    68
#define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    69
#else
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    70
#define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    71
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    72
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    73
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    74
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    75
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    76
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    77
#ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    78
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    79
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    80
# define __HANDLE_INTERRUPTS__    /* nothing */
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 __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    83
# define __BEGIN_INTERRUPTABLE__  /* 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 __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
# define __END_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
# ifdef i386
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    89
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    90
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    91
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    92
# undef INT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    93
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    94
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    95
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    96
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    98
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   102
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   104
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   105
# define NOMINMAX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   106
//#d efine NOOPENFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   107
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   108
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   109
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   110
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   111
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   112
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   113
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   114
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   115
# include <windows.h>
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
# include <winsock.h> /* */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
# if !defined(__BORLANDC__)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   118
#  define stat _stat
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   119
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   120
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   121
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
#  define Array __DEF_Array
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
# ifdef __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
#  define Number __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   127
# ifdef __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
#  define Method __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
# ifdef __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
# define INT int
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   145
#else /* use STDIO */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   146
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   147
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   148
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   150
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   151
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   152
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   153
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   154
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   155
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   156
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   157
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   158
     && ((char *)(buf) < __survEndPtr)) { \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   159
	__fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   160
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   161
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   162
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   163
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   164
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   165
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   166
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   167
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   168
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   169
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   170
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   171
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   172
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   173
# 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
   174
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   175
# 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
   176
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   177
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   178
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   179
//# define __HANDLEVal(o)         (HFILE)(__externalAddressVal(o))
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   180
int _rtl_read();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   181
int _rtl_write();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   182
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   183
# ifdef __BORLANDC__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   184
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   185
      { int __res;\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   186
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   187
	  (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   188
	else \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   189
	  (ret) = __STX_C_CALL3((void*)_rtl_read,(void *)fileno(f), (void *)(cp), (void *)(n));\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   190
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   191
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   192
      { int __res;\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   193
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   194
	  (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   195
	else \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   196
	  (ret) = __STX_C_CALL3((void*)_rtl_write,(void *)fileno(f), (void *)(cp), (void *)(n));\
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
# else /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   199
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   200
      { int __res;\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   201
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   202
	  (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   203
	else { \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   204
	  (ret) = __STX_API_CALL5((void*)ReadFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void *)0);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   205
	  if (ret) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   206
	    ret = __res; \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   207
	} \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   208
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   209
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   210
      { int __res;\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   211
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   212
	  (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   213
	else {\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   214
	  (ret) = __STX_API_CALL5((void*)WriteFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void*)0);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   215
	  if (ret) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   216
	    ret = __res; \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   217
	} \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   218
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   219
# endif /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   220
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   221
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   222
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   223
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   224
# define FILENO(f)              fileno(f)
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
//#define __READING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   227
//#define __WRITING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   228
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   229
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   230
     && (__INST(mode) == @symbol(readwrite))) {  \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   231
	__INST(didWrite) = false;                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   232
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   233
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   234
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   235
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   236
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   237
     && (__INST(mode) == @symbol(readwrite))) {  \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   238
	__INST(didWrite) = true;                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
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 __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   243
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   244
	ungetc((c), (f));                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   245
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   246
      __INST(readAhead) = __MKSMALLINT((c));            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   247
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   248
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   249
# define __READBYTE__(ret, f, buf, isBuffered)          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   250
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   251
	for (;;) {                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   252
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   253
	    (ret) = getc(f);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   254
	    if ((ret) >= 0) {                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   255
		*(buf) = (ret);                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   256
		(ret) = 1;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   257
	    } else if (ferror(f)) {                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   258
		if (errno == EINTR) {                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   259
		    clearerr(f);                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   260
		    continue;                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   261
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   262
	    } else                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   263
		(ret) = 0;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   264
	    break;                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   265
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   266
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   267
	OBJ rA = __INST(readAhead);                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   268
	if (rA != nil) {                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   269
	    *(buf) = (char)__intVal(rA);                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   270
	    __INST(readAhead) = nil;                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   271
	    (ret) = 1;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   272
	} else {                                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   273
	    for (;;) {                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   274
		CLEAR_ERRNO;                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   275
		READ(ret,f, buf, 1);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   276
		if ((ret) >= 0 || errno != EINTR)       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   277
		    break;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   278
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   279
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   280
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   281
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   282
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   283
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   284
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   285
   */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   286
# define __READBYTES__(ret, f, buf, cnt, isBuffered)    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   287
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   288
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   289
	int __offs = 0;                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   290
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   291
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   292
	    (ret) = getc(f);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   293
	    if ((ret) < 0) {                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   294
		if (ferror(f)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   295
		    if (errno == EINTR) {               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   296
			clearerr(f);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   297
			continue;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   298
		    }                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   299
		} else {                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   300
		    (ret) = 0;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   301
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   302
		break;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   303
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   304
	    (buf)[__offs++] = (ret);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   305
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   306
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   307
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   308
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   309
	int __offs = 0;                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   310
							\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   311
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   312
	    OBJ rA = __INST(readAhead);                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   313
	    if (rA != nil) {                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   314
		(buf)[__offs] = __intVal(rA);           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   315
		__INST(readAhead) = nil;                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   316
		(ret) = 1;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   317
	    } else {                                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   318
		CLEAR_ERRNO;                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   319
		READ(ret,f, (buf)+__offs, (cnt)-__offs); \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   320
		if ((ret) <= 0) {                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   321
		    if ((ret) < 0 && errno == EINTR) {  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   322
			continue;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   323
		    }                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   324
		    break;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   325
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   326
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   327
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   328
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   329
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   330
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   331
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   332
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   333
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   334
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   335
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   336
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   337
#define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
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
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   340
    int oldFlags;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   341
							\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   342
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   343
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   344
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   345
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   346
	    (ret) = getc(f);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   347
	    if ((ret) < 0) {                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   348
		if (ferror(f)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   349
		    if (errno == EINTR) {               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   350
			clearerr(f);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   351
			continue;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   352
		    }                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   353
		} else {                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   354
		    (ret) = 0;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   355
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   356
		break;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   357
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   358
	    (buf)[__offs++] = (ret);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   359
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   360
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   361
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   362
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   363
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   364
	    OBJ rA = __INST(readAhead);                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   365
	    if (rA != nil) {                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   366
		(buf)[__offs] = __intVal(rA);           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   367
		__INST(readAhead) = nil;                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   368
		(ret) = 1;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   369
		__offs += (ret);                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   370
		continue;                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   371
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   372
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   373
	    {                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   374
	      int res;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   375
	      if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   376
		  if (res > 0) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   377
		      if (res > ((cnt)-__offs))         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   378
			res = (cnt)-__offs;             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   379
		      READ(ret,f, (buf)+__offs, res);   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   380
		  } else {                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   381
		      (ret) = 0;                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   382
		  }                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   383
	      } else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   384
		  if (res > 0) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   385
		      if (res > ((cnt)-__offs))         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   386
			res = (cnt)-__offs;             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   387
		      READ(ret,f, (buf)+__offs, res);   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   388
		  } else                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   389
		      ret = 0;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   390
	      } else {                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   391
		  READ(ret,f, (buf)+__offs, (cnt)-__offs); \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   392
	      }                                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   393
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   394
	    if ((ret) < 0) {                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   395
		if (errno == EINTR) {                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   396
		    continue;                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   397
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   398
		break;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   399
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   400
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   401
	    break;                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   402
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   403
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   404
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   405
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   406
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   407
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   408
# 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
   409
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   410
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   411
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   412
    char *buf = (char *)(obj);                          \
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
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   415
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   416
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   417
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   418
	    (ret) = getc(f);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   419
	    if ((ret) < 0) {                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   420
		if (ferror(f)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   421
		    if (errno == EINTR) {               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   422
			clearerr(f);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   423
			/* refetch */                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   424
			buf = (char *)(obj);            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   425
			continue;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   426
		    }                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   427
		} else {                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   428
		    (ret) = 0;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   429
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   430
		break;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   431
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   432
	    (buf)[__ooffs+__offs] = (ret);              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   433
	    __offs++;                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   434
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   435
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   436
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   437
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   438
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   439
	    char __buf[1024];                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   440
	    OBJ rA = __INST(readAhead);                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   441
	    if (rA != nil) {                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   442
		(buf)[__ooffs+__offs] = __intVal(rA);   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   443
		__INST(readAhead) = nil;                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   444
		(ret) = 1;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   445
	    } else {                                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   446
		int l;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   447
		CLEAR_ERRNO;                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   448
		l = (cnt)-__offs;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   449
		if ( l > 1024)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   450
		  l = 1024;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   451
		READ(ret,f, __buf, l);                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   452
		if ((ret) <= 0) {                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   453
		    if ((ret) < 0 && errno == EINTR) {  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   454
			continue;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   455
		    }                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   456
		    break;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   457
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   458
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   459
	    /* refetch */                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   460
	    buf = (volatile char *)(obj);               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   461
	    memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   462
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   463
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   464
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   465
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   466
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   467
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   468
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   469
# 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
   470
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   471
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   472
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   473
    char *buf = (char *)(obj);                       \
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
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   476
    if (isBuffered) {                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   477
	while (__offs < (cnt)) {                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   478
	    CLEAR_ERRNO;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   479
	    (ret) = getc(f);                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   480
	    if ((ret) < 0) {                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   481
		if (ferror(f)) {                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   482
		    if (errno == EINTR) {            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   483
			clearerr(f);                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   484
			/* refetch */                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   485
			buf = (char *)(obj);         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   486
			continue;                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   487
		    }                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   488
		} else {                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   489
		    (ret) = 0;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   490
		}                                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   491
		break;                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   492
	    }                                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   493
	    (buf)[__ooffs+__offs] = (ret);           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   494
	    __offs++;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   495
	}                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   496
	if (__offs > 0)                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   497
	    (ret) = __offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   498
    } else {                                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   499
	while (__offs < (cnt)) {                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   500
	    char __buf[1024];                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   501
	    OBJ rA = __INST(readAhead);              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   502
	    if (rA != nil) {                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   503
		(buf)[__ooffs+__offs] = __intVal(rA);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   504
		__INST(readAhead) = nil;             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   505
		(ret) = 1;                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   506
		__offs += (ret);                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   507
		continue;                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   508
	    }                                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   509
	    {                                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   510
		int l;                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   511
		int res;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   512
		CLEAR_ERRNO;                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   513
		l = (cnt)-__offs;                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   514
		if ( l > 1024)                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   515
		    l = 1024;                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   516
		if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   517
		if (res > 0) {                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   518
			if (res > l)                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   519
			    res = l;                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   520
			READ(ret,f, __buf, res);     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   521
		    } else {                         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   522
			(ret) = 0;                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   523
		    }                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   524
		} else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   525
		    if (res > 0) {                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   526
			if (res > l)                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   527
			    res = l;                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   528
			READ(ret,f, __buf, res);     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   529
		    } else                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   530
			ret = 0;                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   531
		} else {                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   532
		    READ(ret,f, __buf, l);           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   533
		}                                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   534
		if ((ret) < 0 && errno == EINTR) {   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   535
		    continue;                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   536
		}                                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   537
	    }                                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   538
	    /* refetch */                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   539
	    buf = (volatile char *)(obj);               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   540
	    memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   541
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   542
	    break;                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   543
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   544
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   545
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   546
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   547
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   548
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   549
# define __WRITEBYTE__(ret, f, buf, isBuffered)         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   550
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   551
	for (;;) {                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   552
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   553
	    ret = putc(*(buf), f);                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   554
	    if ((ret) >= 0) {                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   555
		(ret) = 1;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   556
	    } else if (ferror(f)) {                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   557
		if (errno == EINTR) {                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   558
		    clearerr(f);                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   559
		    continue;                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   560
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   561
	    } else                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   562
		(ret) = 0;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   563
	    break;                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   564
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   565
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   566
	for (;;) {                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   567
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   568
	    WRITE(ret,f, buf, 1);                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   569
	    if ((ret) >= 0 || errno != EINTR)           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   570
		break;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   571
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   572
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   573
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   574
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   575
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   576
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   577
	int __offs = 0;                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   578
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   579
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   580
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   581
	    if ((ret) <= 0) {                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   582
		if (ferror(f)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   583
		    if (errno == EINTR) {               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   584
			clearerr(f);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   585
			continue;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   586
		    }                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   587
		    break;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   588
		} else {                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   589
		    (ret) = 0;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   590
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   591
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   592
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   593
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   594
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   595
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   596
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   597
	int __offs = 0;                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   598
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   599
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   600
	    WRITE(ret,f, (buf)+__offs, (cnt)-__offs);   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   601
	    if (ret <= 0) {                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   602
		if (ret < 0 && errno == EINTR) {        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   603
		    continue;                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   604
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   605
		break;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   606
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   607
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   608
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   609
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   610
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   611
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   612
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   613
# 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
   614
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   615
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   616
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   617
    char *buf = (char *)(obj);                          \
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
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   620
    if (isBuffered) {                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   621
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   622
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   623
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   624
	    if ((ret) <= 0) {                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   625
		if (ferror(f)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   626
		    if (errno == EINTR) {               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   627
			/* refetch */                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   628
			buf = (char *)(obj);            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   629
			clearerr(f);                    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   630
			continue;                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   631
		    }                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   632
		    break;                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   633
		} else {                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   634
		    (ret) = 0;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   635
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   636
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   637
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   638
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   639
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   640
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   641
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   642
	while (__offs < (cnt)) {                        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   643
	    char __buf[1024];                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   644
	    int l;                                      \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   645
	    CLEAR_ERRNO;                                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   646
	    l = (cnt)-__offs;                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   647
	    if ( l > 1024)                              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   648
	      l = 1024;                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   649
	    /* refetch */                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   650
	    buf = (volatile char *)(obj);               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   651
	    memcpy(__buf,(buf)+__ooffs+__offs,l);       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   652
	    WRITE(ret,f, __buf, l);                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   653
	    if (ret <= 0) {                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   654
		if (ret < 0 && errno == EINTR) {        \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   655
		    continue;                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   656
		}                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   657
		break;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   658
	    }                                           \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   659
	    __offs += (ret);                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   660
	}                                               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   661
	if (__offs > 0)                                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   662
	    (ret) = __offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   663
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   664
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   665
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   666
#else /* no WIN32 */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   667
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   668
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   669
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   670
     && (__INST(mode) == @symbol(readwrite))) {  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   671
	__INST(didWrite) = false;                \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   672
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   673
    }
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 __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   676
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   677
     && (__INST(mode) == @symbol(readwrite))) {  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   678
	__INST(didWrite) = true;                 \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   679
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   683
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   684
#  define __UNGETC__(c, f, isBuffered)                  \
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   685
    __INST(readAhead) = __MKSMALLINT((c));
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   686
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   687
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   688
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   689
	ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   690
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   691
	__INST(readAhead) = __MKSMALLINT((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   692
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   693
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   694
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   695
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   696
#  define __READBYTE__(ret, f, buf, isBuffered)         \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   697
    {                                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   698
	OBJ rA = __INST(readAhead);                     \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   699
	if (rA != nil) {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   700
	    *(buf) = __intVal(rA);                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   701
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   702
	    __INST(readAhead) = nil;                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   703
	    (ret) = 1;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   704
	} else {                                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   705
	    for (;;) {                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   706
		CLEAR_ERRNO;                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   707
		(ret) = READ(f, buf, 1);                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   708
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   709
		if ((ret) >= 0 || errno != EINTR)       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   710
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   711
		__HANDLE_INTERRUPTS__;                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   712
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   713
	}                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   714
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   715
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   716
#  define __READBYTE__(ret, f, buf, isBuffered)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   717
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   718
	for (;;) {                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   719
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   720
	    (ret) = getc(f);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   721
	    if ((ret) >= 0) {                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   722
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   723
		*(buf) = (ret);                         \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   724
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   725
	    } else if (ferror(f)) {                     \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   726
		if (errno == EINTR) {                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   727
		    __HANDLE_INTERRUPTS__;              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   728
		    clearerr(f);                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   729
		    continue;                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   730
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   731
	    } else                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   732
		(ret) = 0;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   733
	    break;                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   734
	}                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   735
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   736
	OBJ rA = __INST(readAhead);                     \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   737
	if (rA != nil) {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   738
	    *(buf) = __intVal(rA);                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   739
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   740
	    __INST(readAhead) = nil;                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   741
	    (ret) = 1;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   742
	} else {                                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   743
	    for (;;) {                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   744
		CLEAR_ERRNO;                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   745
		(ret) = read(fileno(f), buf, 1);        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   746
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   747
		if ((ret) >= 0 || errno != EINTR)       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   748
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   749
		__HANDLE_INTERRUPTS__;                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   750
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   751
	}                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   752
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   753
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   754
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   755
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   756
 * 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
   757
 * (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
   758
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   759
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   760
#  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
   761
    {                                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   762
	int __offs = 0;                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   763
							\
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   764
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   765
	    OBJ rA = __INST(readAhead);                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   766
	    if (rA != nil) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   767
		(buf)[__offs] = __intVal(rA);           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   768
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   769
		__INST(readAhead) = nil;                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   770
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   771
	    } else {                                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   772
		CLEAR_ERRNO;                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   773
		(ret) = READ(f, (buf)+__offs, (cnt)-__offs); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   774
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   775
		if ((ret) <= 0) {                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   776
		    if ((ret) < 0 && errno == EINTR) {  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   777
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   778
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   779
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   780
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   781
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   782
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   783
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   784
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   785
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   786
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   787
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   788
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   789
#  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
   790
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   791
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   792
	int __offs = 0;                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   793
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   794
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   795
	    (ret) = getc(f);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   796
	    if ((ret) < 0) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   797
		if (ferror(f)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   798
		    if (errno == EINTR) {               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   799
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   800
			clearerr(f);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   801
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   802
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   803
		} else {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   804
		    (ret) = 0;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   805
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   806
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   807
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   808
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   809
	    (buf)[__offs++] = (ret);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   810
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   811
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   812
	    (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   813
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   814
	int __offs = 0;                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   815
	int fd = fileno(f);                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   816
							\
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   817
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   818
	    OBJ rA = __INST(readAhead);                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   819
	    if (rA != nil) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   820
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   821
		(buf)[__offs] = __intVal(rA);           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   822
		__INST(readAhead) = nil;                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   823
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   824
	    } else {                                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   825
		CLEAR_ERRNO;                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   826
		(ret) = read(fd, (buf)+__offs, (cnt)-__offs);                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   827
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   828
		if ((ret) <= 0) {                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   829
		    if ((ret) < 0 && errno == EINTR) {  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   830
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   831
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   832
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   833
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   834
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   835
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   836
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   837
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   838
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   839
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   840
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   841
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   842
# if defined(F_GETFL) && defined(F_SETFL) && defined(FNDELAY)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   843
#  define GETFLAGS(fd) \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   844
	fcntl(fd, F_GETFL, 0);
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   845
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   846
#  define SETFLAGS(fd, flags) \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   847
	fcntl(fd, F_SETFL, flags)
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   848
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   849
#  define SETNONBLOCKING(fd) \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   850
	{ \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   851
	    int flags; \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   852
	    flags = fcntl(fd, F_GETFL, 0); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   853
	    if (flags >= 0) { \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   854
		fcntl(fd, F_SETFL, flags | FNDELAY); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   855
	    } \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   856
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   857
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   858
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   859
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   860
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   861
# endif                                                        
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   862
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   863
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   864
  {                                                     \
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   865
    int __offs = 0;                                     \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   866
    int oldFlags;                                       \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   867
							\
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   868
    (ret) = 0;                                          \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   869
    oldFlags = GETFLAGS(fileno(f));                     \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   870
    SETNONBLOCKING(fileno(f));                          \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   871
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   872
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   873
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   874
	    (ret) = getc(f);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   875
	    if ((ret) < 0) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   876
		if (ferror(f)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   877
		    if (errno == EINTR) {               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   878
			(ret) = 0;                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   879
			clearerr(f);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   880
			break;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   881
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   882
		} else {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   883
		    (ret) = 0;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   884
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   885
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   886
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   887
	    (buf)[__offs++] = (ret);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   888
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   889
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   890
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   891
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   892
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   893
	int fd = fileno(f);                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   894
							\
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   895
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   896
	    OBJ rA = __INST(readAhead);                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   897
	    if (rA != nil) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   898
		(buf)[__offs] = __intVal(rA);           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   899
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   900
		__INST(readAhead) = nil;                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   901
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   902
		__offs += (ret);                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   903
		continue;                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   904
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   905
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   906
	    (ret) = read(fd, (buf)+__offs, (cnt)-__offs); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   907
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   908
	    if ((ret) < 0) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   909
		if (errno == EINTR) {                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   910
		    (ret) = 0;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   911
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   912
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   913
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   914
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   915
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   916
	    break;                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   917
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   918
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   919
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   920
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   921
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   922
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   923
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   924
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   925
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   926
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   927
 * 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
   928
 * (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
   929
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   930
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   931
#  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
   932
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   933
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   934
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   935
    char *buf = (char *)(obj);                          \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   936
							\
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   937
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   938
    {                                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   939
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   940
	    OBJ rA = __INST(readAhead);                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   941
	    if (rA != nil) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   942
		(buf)[__ooffs+__offs] = __intVal(rA);   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   943
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   944
		__INST(readAhead) = nil;                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   945
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   946
	    } else {                                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   947
		CLEAR_ERRNO;                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   948
		(ret) = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   949
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   950
		if ((ret) <= 0) {                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   951
		    if ((ret) < 0 && errno == EINTR) {  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   952
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   953
			/* refetch */                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   954
			buf = (char *)(obj);            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   955
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   956
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   957
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   958
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   959
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   960
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   961
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   962
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   963
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   964
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   965
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   966
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   967
#  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
   968
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   969
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   970
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   971
    char *buf = (char *)(obj);                          \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   972
							\
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   973
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   974
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   975
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   976
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   977
	    (ret) = getc(f);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   978
	    if ((ret) < 0) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   979
		if (ferror(f)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   980
		    if (errno == EINTR) {               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   981
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   982
			clearerr(f);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   983
			/* refetch */                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   984
			buf = (char *)(obj);            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   985
			DEBUGBUFFER(buf);               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   986
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   987
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   988
		} else {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   989
		    (ret) = 0;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   990
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   991
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   992
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   993
	    (buf)[__ooffs+__offs] = (ret);              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   994
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   995
	    __offs++;                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   996
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   997
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   998
	    (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
   999
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1000
	int fd = fileno(f);                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1001
							\
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1002
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1003
	    OBJ rA = __INST(readAhead);                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1004
	    if (rA != nil) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1005
		(buf)[__ooffs+__offs] = __intVal(rA);   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1006
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1007
		__INST(readAhead) = nil;                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1008
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1009
	    } else {                                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1010
		CLEAR_ERRNO;                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1011
		(ret) = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1012
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1013
		if ((ret) <= 0) {                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1014
		    if ((ret) < 0 && errno == EINTR) {  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1015
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1016
			/* refetch */                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1017
			buf = (char *)(obj);            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1018
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1019
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1020
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1021
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1022
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1023
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1024
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1025
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1026
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1027
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1028
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1029
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1030
# 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
  1031
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1032
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1033
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1034
    char *buf = (char *)(obj);                          \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1035
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1036
    (ret) = 0;                                          \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1037
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1038
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1039
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1040
	    (ret) = getc(f);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1041
	    if ((ret) < 0) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1042
		if (ferror(f)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1043
		    if (errno == EINTR) {               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1044
			clearerr(f);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1045
			/* refetch */                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1046
			buf = (char *)(obj);            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1047
			(ret) = 0;                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1048
			break;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1049
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1050
		} else {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1051
		    (ret) = 0;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1052
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1053
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1054
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1055
	    (buf)[__ooffs+__offs] = (ret);              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1056
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1057
	    __offs++;                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1058
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1059
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1060
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1061
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1062
	int fd = fileno(f);                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1063
							\
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1064
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1065
	    OBJ rA = __INST(readAhead);                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1066
	    if (rA != nil) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1067
		(buf)[__ooffs+__offs] = __intVal(rA);   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1068
		DEBUGBUFFER(buf);                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1069
		__INST(readAhead) = nil;                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1070
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1071
		__offs += (ret);                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1072
		continue;                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1073
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1074
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1075
	    (ret) = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1076
	    DEBUGBUFFER(buf);                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1077
	    if ((ret) < 0 && errno == EINTR) {          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1078
		/* refetch */                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1079
		(ret) = 0;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1080
		buf = (char *)(obj);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1081
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1082
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1083
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1084
	    break;                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1085
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1086
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1087
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1088
    }                                                   \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1089
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1090
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1091
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1092
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1093
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1094
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1095
#  define __WRITEBYTE__(ret, f, buf, isBuffered)          \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1096
	for (;;) {                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1097
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1098
	    (ret) = WRITE(f, buf, 1);                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1099
	    if ((ret) >= 0 || errno != EINTR)           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1100
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1101
	    __HANDLE_INTERRUPTS__;                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1102
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1103
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1104
#  define __WRITEBYTE__(ret, f, buf, isBuffered)          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1105
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1106
	for (;;) {                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1107
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1108
	    ret = putc(*(buf), f);                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1109
	    if ((ret) >= 0) {                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1110
		(ret) = 1;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1111
	    } else if (ferror(f)) {                     \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1112
		if (errno == EINTR) {                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1113
		    __HANDLE_INTERRUPTS__;              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1114
		    clearerr(f);                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1115
		    continue;                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1116
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1117
	    } else                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1118
		(ret) = 0;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1119
	    break;                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1120
	}                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1121
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1122
	for (;;) {                                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1123
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1124
	    (ret) = write(fileno(f), buf, 1);           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1125
	    if ((ret) >= 0 || errno != EINTR)           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1126
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1127
	    __HANDLE_INTERRUPTS__;                      \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1128
	}                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1129
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1130
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1131
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1132
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1133
 * 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
  1134
 * (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
  1135
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1136
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1137
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1138
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1139
    {                                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1140
	int __offs = 0;                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1141
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1142
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1143
	    ret = WRITE(f, (buf)+__offs, (cnt)-__offs); \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1144
	    if (ret <= 0) {                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1145
		if (ret < 0 && errno == EINTR) {        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1146
		    __HANDLE_INTERRUPTS__;              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1147
		    continue;                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1148
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1149
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1150
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1151
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1152
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1153
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1154
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1155
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1156
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1157
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1158
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1159
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1160
	int __offs = 0;                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1161
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1162
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1163
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1164
	    if ((ret) <= 0) {                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1165
		if (ferror(f)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1166
		    if (errno == EINTR) {               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1167
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1168
			clearerr(f);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1169
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1170
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1171
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1172
		} else {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1173
		    (ret) = 0;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1174
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1175
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1176
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1177
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1178
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1179
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1180
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1181
	int __offs = 0;                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1182
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1183
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1184
	    ret = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1185
	    if (ret <= 0) {                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1186
		if (ret < 0 && errno == EINTR) {        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1187
		    __HANDLE_INTERRUPTS__;              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1188
		    continue;                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1189
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1190
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1191
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1192
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1193
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1194
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1195
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1196
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1197
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1198
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1199
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1200
 * 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
  1201
 * (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
  1202
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1203
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1204
#  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
  1205
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1206
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1207
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1208
    char *buf = (char *)(obj);                          \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1209
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1210
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1211
    {                                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1212
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1213
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1214
	    ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs);               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1215
	    if (ret <= 0) {                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1216
		if (ret < 0 && errno == EINTR) {        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1217
		    __HANDLE_INTERRUPTS__;              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1218
		    /* refetch */                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1219
		    buf = (char *)(obj);                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1220
		    continue;                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1221
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1222
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1223
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1224
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1225
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1226
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1227
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1228
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1229
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1230
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1231
#  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
  1232
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1233
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1234
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1235
    char *buf = (char *)(obj);                          \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1236
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1237
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1238
    if (isBuffered) {                                   \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1239
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1240
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1241
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1242
	    if ((ret) <= 0) {                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1243
		if (ferror(f)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1244
		    if (errno == EINTR) {               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1245
			__HANDLE_INTERRUPTS__;          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1246
			/* refetch */                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1247
			buf = (char *)(obj);            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1248
			clearerr(f);                    \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1249
			continue;                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1250
		    }                                   \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1251
		    break;                              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1252
		} else {                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1253
		    (ret) = 0;                          \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1254
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1255
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1256
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1257
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1258
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1259
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1260
    } else {                                            \
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1261
	while (__offs < (cnt)) {                        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1262
	    CLEAR_ERRNO;                                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1263
	    ret = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs);       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1264
	    if (ret <= 0) {                             \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1265
		if (ret < 0 && errno == EINTR) {        \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1266
		    __HANDLE_INTERRUPTS__;              \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1267
		    /* refetch */                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1268
		    buf = (char *)(obj);                \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1269
		    continue;                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1270
		}                                       \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1271
		break;                                  \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1272
	    }                                           \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1273
	    __offs += (ret);                            \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1274
	}                                               \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1275
	if (__offs > 0)                                 \
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1276
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1277
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1278
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1279
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1280
#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
  1281
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1282
/*
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1283
 * on some systems errno is a macro ... check for it here
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1284
 */
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1285
#ifndef errno
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1286
 extern errno;
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1287
#endif
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1288
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1289
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1290
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1291
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1292
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1293
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1294
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1295
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1296
 COPYRIGHT (c) 1988 by Claus Gittinger
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1297
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1298
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1299
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1300
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1301
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1302
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1303
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1304
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1305
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1306
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1307
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1308
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1309
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1310
    ExternalStream defines protocol common to Streams which have a file-descriptor and 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1311
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1312
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1313
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1314
    ExternalStreams can be in two modes: text- (the default) and binary-mode.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1315
    In text-mode, the elements read/written are characters; 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1316
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1317
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1318
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1319
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1320
    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
  1321
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1322
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1323
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1324
    or just forgotten - in this case, the garbage collector will eventually collect the
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1325
    object AND a close will be performed automatically (but you will NOT know when this 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1326
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1327
    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
  1328
    some crash) the data will not be in the file, if unclosed. 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1329
    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
  1330
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1331
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1332
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1333
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1334
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1335
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1336
      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
  1337
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1338
      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
  1339
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1340
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1341
      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
  1342
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1343
      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
  1344
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1345
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1346
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1347
	filePointer     <Integer>       the unix FILE*; somehow mapped to an integer
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1348
					(notice: not the fd)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1349
					on Windows: the fileHandle
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1350
	mode            <Symbol>        #readwrite, #readonly or #writeonly
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1351
	buffered        <Boolean>       true, if buffered (i.e. collects characters - does
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1352
					not output immediately)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1353
	binary          <Boolean>       true if in binary mode (reads bytes instead of chars)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1354
	eolMode         <Symbol>        one of nil, #cr or #crlf.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1355
					determines how lines should be terminated.
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1356
					nil -> newLine (as in Unix);
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1357
					#crlf -> with cr-lf (as in MSDOS)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1358
					#cr -> with cr (as in VMS)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1359
	hitEOF          <Boolean>       true, if EOF was reached
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1360
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1361
	lastErrorNumber <Integer>       the value of errno (only valid right after the error -
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1362
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1363
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1364
    [Class variables:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1365
	Lobby           <Registry>      keeps track of used ext-streams (to free up FILE*'s)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1366
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1367
	StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1368
	InvalidReadSignal       <Signal> raised on read from writeonly stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1369
	InvalidWriteSignal      <Signal> raised on write to readonly stream 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1370
	InvalidModeSignal       <Signal> raised on text I/O with binary-stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1371
					 or binary I/O with text-stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1372
	OpenErrorSignal         <Signal> raised if open fails
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1373
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1374
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1375
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1376
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1377
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1378
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1379
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1380
      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
  1381
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1382
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1383
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1384
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1385
      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
  1386
      an error and errno is set to EINTR. 
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1387
      Thats what the ugly code around all getc-calls is for ...
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1388
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1389
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1390
claus
parents: 308
diff changeset
  1391
      Notice that typical stdio's use a single errno global variable to return an error code,
claus
parents: 308
diff changeset
  1392
      this was bad design in the stdio lib (right from the very beginning), since its much
claus
parents: 308
diff changeset
  1393
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1394
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1395
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1396
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1397
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1398
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1399
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1400
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1401
      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
  1402
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1403
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1404
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1405
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1406
    [author:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1407
	Claus Gittinger
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1408
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1409
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1410
    [see also:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1411
	FileStream Socket PipeStream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1412
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1413
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1414
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1415
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1416
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1417
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1418
    open a file, read the contents and display it in a textView:
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1419
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1420
	|topView scrollPane textView fileStream text|
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1421
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1422
	topView := StandardSystemView new.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1423
	topView label:'contents of Makefile'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1424
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1425
	scrollPane := HVScrollableView in:topView.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1426
	scrollPane origin:0.0@0.0 corner:1.0@1.0.
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1427
        
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1428
	textView := EditTextView new.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1429
	scrollPane scrolledView:textView.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1430
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1431
	fileStream := 'Makefile' asFilename readStream.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1432
	text := fileStream upToEnd.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1433
	fileStream close.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1434
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1435
	textView contents:text.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1436
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1437
	topView open.
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1438
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1439
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1440
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1441
    Notice, all of the above can also be done (simply) as:
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1442
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1443
	EditTextView openOn:'Makefile'
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1444
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1445
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1446
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1447
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1448
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1449
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1450
    OperatingSystem isUNIXlike ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1451
	"/ unix EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1452
	DefaultEOLMode := #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1453
    ] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1454
	OperatingSystem isVMSlike ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1455
	    "/ vms EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1456
	    DefaultEOLMode := #cr
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1457
	] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1458
	    "/ msdos EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1459
	    DefaultEOLMode := #crlf
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1460
	]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1461
    ]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1462
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1463
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1464
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1465
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1466
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1467
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1468
    OperatingSystem isMSDOSlike ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1469
	ReadMode := 'rb'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1470
	ReadWriteMode := 'rb+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1471
	WriteMode := 'wb'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1472
	AppendMode := 'ab+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1473
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1474
    ] ifFalse:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1475
	ReadMode := 'r'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1476
	ReadWriteMode := 'r+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1477
	WriteMode := 'w'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1478
	AppendMode := 'a+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1479
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1480
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1481
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1482
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1483
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1484
    OpenErrorSignal isNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1485
	OpenErrorSignal := StreamErrorSignal newSignalMayProceed:true.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1486
	OpenErrorSignal nameClass:self message:#openErrorSignal.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1487
	OpenErrorSignal notifierString:'open error'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1488
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1489
	InvalidReadSignal := ReadErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1490
	InvalidReadSignal nameClass:self message:#invalidReadSignal.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1491
	InvalidReadSignal notifierString:'read error'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1492
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1493
	InvalidWriteSignal := WriteErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1494
	InvalidWriteSignal nameClass:self message:#invalidWriteSignal.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1495
	InvalidWriteSignal notifierString:'write error'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1496
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1497
	InvalidModeSignal :=  StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1498
	InvalidModeSignal nameClass:self message:#invalidModeSignal.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1499
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1500
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1501
	InvalidOperationSignal :=  StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1502
	InvalidOperationSignal nameClass:self message:#invalidOperationSignal.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1503
	InvalidOperationSignal notifierString:'unsupported file operation'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1504
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1505
	StreamNotOpenSignal := StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1506
	StreamNotOpenSignal nameClass:self message:#streamNotOpenSignal.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1507
	StreamNotOpenSignal notifierString:'stream is not open'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1508
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1509
	StreamIOErrorSignal := StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1510
	StreamIOErrorSignal nameClass:self message:#streamIOErrorSignal.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1511
	StreamIOErrorSignal notifierString:'I/O error'.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1512
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1513
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1514
    Lobby isNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1515
	Lobby := Registry new.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1516
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1517
	"want to get informed when returning from snapshot"
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1518
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1519
    ].
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1520
    self initDefaultEOLMode.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1521
    self initModeStrings.
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1522
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1523
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1524
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1525
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1526
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1527
    "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
  1528
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1529
301
35e40a6fc72b *** empty log message ***
claus
parents: 269
diff changeset
  1530
    Lobby do:[:aFileStream |
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1531
	aFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1532
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1533
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1534
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1535
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1536
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1537
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1538
    something == #earlyRestart ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1539
	self reOpenFiles.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1540
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1541
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1542
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1543
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1544
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1545
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1546
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1547
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1548
forFileDescriptor:aFileDescriptor mode:modeString
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1549
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1550
     to operate on this fd. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1551
     The mode-argument is passed to the fdopen call.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1552
     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
  1553
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1554
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1555
    |newStream|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1556
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1557
    newStream := self basicNew.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1558
    newStream text; buffered:true; eolMode:DefaultEOLMode; clearEOF.
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1559
    ^ newStream connectTo:aFileDescriptor withMode:modeString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1560
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1561
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1562
     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
  1563
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1564
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1565
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1566
     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
  1567
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1568
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1569
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1570
    "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
  1571
    "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
  1572
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1573
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1574
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1575
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1576
     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
  1577
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1578
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1579
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1580
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadWriteMode) readwrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1581
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1582
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1583
     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
  1584
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1585
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1586
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1587
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1588
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1589
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1590
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1591
    "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
  1592
    "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
  1593
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1594
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1595
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1596
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1597
     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
  1598
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1599
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1600
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1601
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadMode) readonly
2920
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
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1604
     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
  1605
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1606
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1607
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1608
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1609
     s next.
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
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1612
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1613
     |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
  1614
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1615
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1616
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1617
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1618
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1619
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1620
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1621
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1622
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1623
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1624
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
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
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1627
     [
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1628
	 1 to:10 do:[:i |
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1629
	     Transcript showCR:rs nextLine
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1630
	 ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1631
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1632
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1633
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1634
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1635
     [
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1636
	 1 to:10 do:[:i |
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1637
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1638
	 ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1639
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1640
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1641
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1642
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1643
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1644
    "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
  1645
    "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
  1646
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1647
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1648
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1649
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1650
     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
  1651
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1652
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1653
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1654
    ^ (self forFileDescriptor:aFileDescriptor mode:WriteMode) writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1655
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1656
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1657
     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
  1658
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1659
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1660
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1661
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1662
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1663
     s nextPut:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1664
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1665
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1666
    "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
  1667
    "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
  1668
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1669
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1670
makePTYPair
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1671
    "return an array with two streams - the first one is the master, 
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1672
     the second the slave of a ptym/ptys pair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1673
     This is much like a bidirectional pipe, but allows signals &
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1674
     control chars to be passed through the connection.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1675
     This is needed to execute a shell in a view.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1676
     This is the higher level equivalent of OperatingSystem>>makePTYPair
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1677
     (which returns an array of file-descriptors)."
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1678
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1679
     |ptyPair m s|
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1680
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1681
     ptyPair := OperatingSystem makePTYPair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1682
     ptyPair notNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1683
	 m := self forReadWriteToFileDescriptor:(ptyPair at:1).
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1684
	 s := self forReadWriteToFileDescriptor:(ptyPair at:2).
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1685
	 ptyPair at:1 put:m.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1686
	 ptyPair at:2 put:s.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1687
	 ^ ptyPair
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1688
     ].
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1689
     ^ nil
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1690
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1691
    "
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1692
     ExternalStream makePTYPair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1693
    "
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1694
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1695
    "Modified: 29.2.1996 / 18:28:36 / cg"
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1696
!
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1697
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1698
makePipe
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1699
    "return an array with two streams - the first one for reading, 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1700
     the second for writing. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1701
     This is the higher level equivalent of OperatingSystem>>makePipe
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1702
     (which returns an array of file-descriptors)."
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1703
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1704
     |pipe rs ws|
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
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1707
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1708
     pipe notNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1709
	 rs := self forReadingFromFileDescriptor:(pipe at:1).
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1710
	 ws := self forWritingToFileDescriptor:(pipe at:2).
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1711
	 ^ Array with:rs with:ws
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1712
     ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1713
     ^ nil
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1714
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1715
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1716
     |pipe rs ws|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1717
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1718
     pipe := ExternalStream makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1719
     rs := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1720
     ws := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1721
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1722
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1723
     [
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1724
	 1 to:10 do:[:i |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1725
	     Transcript showCR:rs nextLine
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1726
	 ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1727
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1728
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1729
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1730
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1731
     [
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1732
	 1 to:10 do:[:i |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1733
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1734
	 ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1735
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1736
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1737
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1738
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1739
    "Modified: 29.2.1996 / 18:28:36 / cg"
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1740
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1741
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1742
new
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1743
    |newStream|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1744
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1745
    newStream := self basicNew.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1746
    newStream text; buffered:true; eolMode:DefaultEOLMode; clearEOF.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1747
    ^ newStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1748
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1749
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1750
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1751
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1752
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1753
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1754
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1755
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1756
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1757
    "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
  1758
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1759
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1760
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1761
    "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
  1762
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1763
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1764
    ^ InvalidModeSignal
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1765
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1766
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1767
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1768
    "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
  1769
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1770
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1771
    ^ InvalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1772
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1773
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1774
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1775
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1776
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1777
    ^ InvalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1778
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1779
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1780
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1781
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1782
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1783
    ^ InvalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1784
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1785
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1786
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1787
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1788
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1789
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1790
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1791
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1792
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1793
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1794
     (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
  1795
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1796
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1797
    ^ StreamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1798
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1799
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1800
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1801
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1802
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1803
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1804
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1805
    ^ StreamNotOpenSignal
2
claus
parents: 1
diff changeset
  1806
! !
claus
parents: 1
diff changeset
  1807
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1808
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1809
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1810
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1811
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1812
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1813
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1814
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1815
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1816
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1817
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1818
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1819
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1820
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1821
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1822
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1823
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1824
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1825
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1826
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1827
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1828
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1829
3939
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1830
!ExternalStream methodsFor:'Signal constants'!
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1831
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1832
invalidReadSignal
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1833
    ^ self class invalidReadSignal
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1834
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1835
    "Created: / 3.12.1998 / 15:12:06 / cg"
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1836
!
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1837
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1838
invalidWriteSignal
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1839
    ^ self class invalidWriteSignal
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1840
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1841
    "Created: / 3.12.1998 / 15:12:10 / cg"
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1842
! !
52e4ebbde474 oops - missing signal accessors
Claus Gittinger <cg@exept.de>
parents: 3938
diff changeset
  1843
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1844
!ExternalStream methodsFor:'Squeak compatibility'!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1845
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1846
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1847
    "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
  1848
     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
  1849
     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
  1850
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1851
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1852
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1853
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1854
    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
  1855
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1856
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1857
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1858
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1859
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1860
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1861
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1862
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1863
     Squeak compatibility."
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
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1866
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1867
    elementSize := aContainer class elementByteSize.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1868
    n := self nextBytes:nElements*elementSize into:aContainer startingAt:1.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1869
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1870
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1871
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1872
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1873
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1874
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1875
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1876
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1877
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1878
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1879
    "Created: 20.10.1997 / 19:23:19 / cg"
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
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1882
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1883
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1884
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1885
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1886
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1887
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1888
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1889
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1890
buffered:aBoolean
10
claus
parents: 5
diff changeset
  1891
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1892
10
claus
parents: 5
diff changeset
  1893
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1894
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1895
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1896
contents
2
claus
parents: 1
diff changeset
  1897
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  1898
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  1899
     the byte values is returned.
claus
parents: 1
diff changeset
  1900
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  1901
     is returned."
claus
parents: 1
diff changeset
  1902
claus
parents: 1
diff changeset
  1903
    |text l chunks sizes chunk byteCount cnt bytes offset|
claus
parents: 1
diff changeset
  1904
claus
parents: 1
diff changeset
  1905
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1906
	"adding to a ByteArray produces quadratic time-space
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1907
	 behavior - therefore we allocate chunks, and concatenate them
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1908
	 at the end."
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1909
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1910
	chunks := OrderedCollection new.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1911
	sizes := OrderedCollection new.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1912
	byteCount := 0.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1913
	[self atEnd] whileFalse:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1914
	    chunk := ByteArray uninitializedNew:4096.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1915
	    cnt := self nextBytes:(chunk size) into:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1916
	    cnt notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1917
		chunks add:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1918
		sizes add:cnt.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1919
		byteCount := byteCount + cnt
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1920
	    ]
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1921
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1922
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1923
	"now, create one big ByteArray"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1924
	bytes := ByteArray uninitializedNew:byteCount.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1925
	offset := 1.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1926
	1 to:chunks size do:[:index |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1927
	    chunk := chunks at:index.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1928
	    cnt := sizes at:index. 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1929
	    bytes replaceFrom:offset to:(offset + cnt - 1) with:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1930
	    offset := offset + cnt
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1931
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1932
	^ bytes
2
claus
parents: 1
diff changeset
  1933
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1934
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  1935
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1936
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1937
	l := self nextLine.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1938
	l isNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1939
	    ^ text
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1940
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1941
	text add:l
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1942
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1943
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1944
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1945
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1946
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1947
    "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
  1948
     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
  1949
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1950
    |data|
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1951
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1952
    data := self contents.
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1953
    binary ifFalse:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1954
	^ data asString.
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1955
    ].
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1956
    ^ data
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1957
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  1958
    "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
  1959
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  1960
!
claus
parents: 1
diff changeset
  1961
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1962
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1963
    "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
  1964
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1965
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1966
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1967
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1968
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1969
    ^ String
2
claus
parents: 1
diff changeset
  1970
!
claus
parents: 1
diff changeset
  1971
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1972
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1973
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1974
     The argument may be one of:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1975
	#crlf         -> add a CR-NL, as in MSDOS
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1976
	#cr           -> add a CR, as in VMS
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1977
	#nl           -> add a NL, as in Unix
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1978
	anyOther      -> like #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1979
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1980
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1981
    eolMode := aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1982
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1983
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1984
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1985
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1986
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1987
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1988
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  1989
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1990
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1991
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  1992
    if ((fp = __INST(filePointer)) != nil) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1993
	FILEPOINTER f;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1994
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1995
	f = __FILEVal(fp);
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1996
	RETURN ( __MKINT(fileno(f)) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1997
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  1998
%}.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1999
    ^ self errorNotOpen
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2000
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2001
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2002
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2003
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2004
     notice: for portability stdio is used; this means you will get
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2005
     a FILE * - not a fileDescriptor. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2006
     (what you really get is a corresponding integer).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2007
     You cannot do much with the returned value 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2008
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2009
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2010
    ^ filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2011
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2012
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2013
lineEndTransparent
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2014
    eolMode := #cr
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2015
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2016
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2017
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2018
    "set access mode to readonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2019
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2020
    mode := #readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2021
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2022
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2023
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2024
    "set access mode to readwrite"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2025
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2026
    mode := #readwrite
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2029
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2030
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2031
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2032
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2033
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2034
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2035
useCRLF:aBoolean
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2036
    "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
  2037
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2038
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2039
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2040
    aBoolean ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2041
	eolMode := #crlf
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2042
    ] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2043
	eolMode := #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2044
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2045
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2046
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2047
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2048
    "set access mode to writeonly"
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 := #writeonly
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
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2054
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2055
argumentMustBeCharacter
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2056
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2057
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2058
    "report an error, that the argument must be a character"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2059
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2060
    ^ self error:'argument must be a character'
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2063
argumentMustBeInteger
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2064
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2065
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2066
    "report an error, that the argument must be an integer"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2067
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2068
    ^ self error:'argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2069
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2070
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2071
argumentMustBeString
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2072
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2073
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2074
    "report an error, that the argument must be a string"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2075
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2076
    ^ self error:'argument must be a string'
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2077
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2078
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2079
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2080
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2081
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2082
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2083
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2084
    ^ self class openErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2085
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2086
	errorString:(self class name , ' is already open')
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2087
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2088
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2089
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2090
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2091
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2092
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2093
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2094
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2095
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2096
    ^ self invalidModeSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2097
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2098
	     errorString:(self class name , ' is in binary mode')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2099
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2100
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2101
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2102
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2103
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2104
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2105
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2106
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2107
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2108
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2109
    ^ self invalidModeSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2110
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2111
	     errorString:(self class name , ' is not in binary mode')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2112
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2113
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2114
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2115
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2116
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2117
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2118
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2119
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2120
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2121
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2122
    ^ StreamErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2123
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2124
	     errorString:(self class name , ' is unbuffered - operation not allowed')
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2125
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2126
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2127
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2128
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2129
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2130
errorNotOpen
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2131
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2132
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2133
    "report an error, that the stream has not been opened"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2134
3467
54ccb6f7d886 oops - streamNotOpenSignal
Claus Gittinger <cg@exept.de>
parents: 3456
diff changeset
  2135
    ^ StreamNotOpenSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2136
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2137
	     errorString:(self class name , ' not open')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2138
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2139
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2140
    "Modified: / 8.5.1999 / 20:12:33 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2141
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2142
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2143
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2144
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2145
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2146
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2147
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2148
    ^ self invalidWriteSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2149
	  raiseWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2150
	  errorString:(self class name , ' is readonly')
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2151
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2152
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2153
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2154
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2155
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2156
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2157
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2158
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2159
    "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
  2160
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2161
    ^ self invalidOperationSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2162
	raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2163
	errorString:'unsupported operation'
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2164
		 "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2165
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2166
    "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
  2167
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2168
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2169
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2170
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2171
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2172
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2173
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2174
    ^ self invalidReadSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2175
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2176
	     errorString:(self class name , ' is writeonly')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2177
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2178
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2179
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2180
!
claus
parents: 1
diff changeset
  2181
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2182
ioError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2183
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2184
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2185
    "report an error, that some I/O error occured.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2186
     (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
  2187
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2188
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2189
    ^ StreamIOErrorSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2190
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2191
	     errorString:('I/O error: ' , self lastErrorString)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2192
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2193
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2194
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2195
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2196
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2197
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2198
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2199
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2200
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2201
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2202
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2203
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2204
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2205
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2206
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2207
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2208
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2209
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2210
!
claus
parents: 1
diff changeset
  2211
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2212
openError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2213
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2214
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2215
    "report an error, that the open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2216
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2217
    ^ self class openErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2218
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2219
	     errorString:('error on open: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2220
		      "/ in:thisContext sender
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2221
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2222
    "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
  2223
    "Modified: / 8.5.1999 / 20:12:12 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2224
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2225
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2226
readError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2227
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2228
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2229
    "report an error, that some read error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2230
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2231
    ^ ReadErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2232
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2233
	     errorString:('read error: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2234
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2235
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2236
    "Modified: / 8.5.1999 / 20:12:00 / cg"
612
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
writeError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2240
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2241
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2242
    "report an error, that some write error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2243
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2244
    ^ WriteErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2245
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2246
	     errorString:('write error: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2247
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2248
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2249
    "Modified: / 8.5.1999 / 20:12:09 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2250
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2251
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2252
!ExternalStream methodsFor:'instance release'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2253
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2254
closeFile
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2255
    "low level close - may be redefined in subclasses"
2
claus
parents: 1
diff changeset
  2256
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2257
%{
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2258
    OBJ fp;
2
claus
parents: 1
diff changeset
  2259
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2260
    if ((fp = __INST(filePointer)) != nil) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2261
	FILEPOINTER f;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2262
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2263
	__INST(filePointer) = nil;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2264
	f = __FILEVal(fp);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2265
	__BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2266
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2267
	__STX_C_CALL1((void*)fclose, (void*)f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2268
#else
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  2269
	fclose(f);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2270
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2271
	__END_INTERRUPTABLE__
10
claus
parents: 5
diff changeset
  2272
    }
claus
parents: 5
diff changeset
  2273
%}
claus
parents: 5
diff changeset
  2274
!
claus
parents: 5
diff changeset
  2275
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2276
disposed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2277
    "some Stream has been collected - close the file if not already done"
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
    self closeFile
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2280
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2281
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2282
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
  2283
    "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
  2284
     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
  2285
     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
  2286
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  2287
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2288
    FILEPOINTER f;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2289
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  2290
    FILE *fdopen();
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2291
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2292
    if (__isSmallInteger(anInteger) &&
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2293
	__isString(openMode) &&
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2294
	(f = fdopen(__intVal(anInteger), __stringVal(openMode))) != 0
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2295
    ) {
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2296
	__PROTECT__(self);
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
  2297
	fp = __MKFILEPOINTER(f);
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2298
	__UNPROTECT__(self);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2299
	__INST(filePointer) = fp; __STORE(self, fp);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2300
	RETURN (self);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2301
    }
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2302
%}.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2303
    ^ self primitiveFailed
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2304
!
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2305
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2306
setFilePointer:something
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2307
    "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
  2308
     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
  2309
     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
  2310
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2311
    filePointer := something
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2312
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2313
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2314
shallowCopyForFinalization
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2315
    "return a copy for finalization-registration;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2316
     since all we need at finalization time is the fileDescriptor,
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2317
     a cheaper copy is possible."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2318
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2319
    ^ self class basicNew setFilePointer:filePointer
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2320
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2321
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2322
shutDown
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2323
    "close the stream - added for protocol compatibility with PipeStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2324
     see comment there"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2325
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2326
    self isOpen ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2327
	Lobby unregister:self.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2328
	self closeFile
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2329
    ]
1642
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2330
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2331
    "Modified: 30.8.1996 / 00:39:21 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2332
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2333
2
claus
parents: 1
diff changeset
  2334
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2335
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2336
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2337
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2338
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2339
     If the previous-to-last character is a cr, this is also removed,
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2340
     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
  2341
     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
  2342
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2343
    |line|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2344
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2345
%{  /* STACK:34000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2346
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2347
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2348
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2349
    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
  2350
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2351
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2352
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2353
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2354
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2355
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2356
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2357
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2358
    if (((fp = __INST(filePointer)) != nil)
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2359
	&& (__INST(mode) != @symbol(writeonly))
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2360
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2361
    ) {
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2362
	f = __FILEVal(fp);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2363
	buffer[0] = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2364
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2365
	_buffered = (__INST(buffered) == true);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2366
	if (_buffered) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2367
	    __READING__(f);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2368
	} 
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2369
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2370
	rslt = nextPtr = buffer;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2371
	limit = buffer + sizeof(buffer) - 2;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2372
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2373
	for (;;) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2374
	    __READBYTE__(ret, f, nextPtr, _buffered);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2375
	    if (ret <= 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2376
		if (nextPtr == buffer)
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2377
		    rslt = NULL;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2378
		if (ret == 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2379
		    __INST(hitEOF) = true;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2380
		    break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2381
		} else {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2382
		    __INST(lastErrorNumber) = __MKSMALLINT(errno);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2383
		    goto err;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2384
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2385
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2386
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2387
	    if (*nextPtr == '\n') {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2388
		cutOff = 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2389
		*nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2390
		break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2391
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2392
	    if (*nextPtr == '\r') {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2393
		char peekChar;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2394
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2395
		/*
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2396
		 * peek ahead for a newLine ...
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2397
		 */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2398
		__READBYTE__(ret, f, &peekChar, _buffered);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2399
		if (ret <= 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2400
		    cutOff = 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2401
		    *nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2402
		    if (ret == 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2403
			__INST(hitEOF) = true;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2404
			break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2405
		    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2406
		    __INST(lastErrorNumber) = __MKSMALLINT(errno);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2407
		    goto err;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2408
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2409
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2410
		if (peekChar == '\n') {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2411
		    cutOff = 2;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2412
		    *nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2413
		    break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2414
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2415
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2416
		__UNGETC__(peekChar, f, _buffered);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2417
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2418
		cutOff = 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2419
		*nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2420
		break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2421
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2422
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2423
	    nextPtr++;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2424
	    if (nextPtr >= limit) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2425
		*nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2426
		lineTooLong = 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2427
		if (@global(InfoPrinting) == true) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2428
		    fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2429
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2430
		break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2431
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2432
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2433
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2434
	if (rslt != NULL) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2435
	    len = nextPtr-buffer;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2436
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2437
	    if (__INST(position) != nil) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2438
		int __p;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2439
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2440
		__p = __intVal(__INST(position)) + len + cutOff;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2441
		__INST(position) = __MKSMALLINT(__p);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2442
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2443
	    /* remove any EOL character */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2444
	    if (len != 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2445
		if (buffer[len-1] == '\n') {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2446
		    buffer[--len] = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2447
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2448
		if ((len != 0) && (buffer[len-1] == '\r')) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2449
		    buffer[--len] = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2450
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2451
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2452
	    line = __MKSTRING_L(buffer, len);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2453
	    if (! lineTooLong) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2454
		RETURN ( line );
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2455
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2456
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2457
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2458
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2459
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2460
    line notNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2461
	"/ the line as read is longer than 32k characters (boy - what a line)
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2462
	"/ The exception could be handled by reading more and returning the
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2463
	"/ concatenation in your exception handler (the receiver and the partial
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2464
	"/ line are passed as parameter)
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2465
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2466
	LineTooLongErrorSignal isHandled ifTrue:[
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2467
	    ^ LineTooLongErrorSignal
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2468
		raiseRequestWith:(Array with:self with:line)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2469
		     errorString:('line too long read error')
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2470
	].
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2471
	^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2472
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2473
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  2474
    hitEOF ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2475
    lastErrorNumber notNil ifTrue:[^ self readError].
2
claus
parents: 1
diff changeset
  2476
    filePointer isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2477
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2478
    ^ self errorBinary
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2479
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2480
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2481
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2482
    "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
  2483
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2484
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2485
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2486
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2487
    int len, cnt, len1, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2488
    OBJ pos, fp;
537
dc4dad8a5ddd many ExtStream rewrites - has to be reevaluated in all platforms
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  2489
    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
  2490
    int o_offs;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2491
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2492
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2493
    if (((fp = __INST(filePointer)) != nil) 
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2494
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2495
	&& (__INST(binary) != true)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2496
	&& __isString(aString)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2497
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2498
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2499
	len = __stringSize(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2500
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2501
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2502
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2503
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2504
#ifdef BUGGY
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2505
	__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
  2506
#else
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2507
	o_offs = (char *)__stringVal(aString)-(char *)aString;
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2508
	__WRITEBYTES_OBJ__(cnt, f, aString, o_offs, len, _buffered);
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2509
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2510
	if (cnt == len) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2511
	    OBJ mode = __INST(eolMode);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2512
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2513
	    len1 = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2514
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2515
	    if (mode == @symbol(cr)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2516
		cp = "\r"; len = 1;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2517
	    } else if (mode == @symbol(crlf)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2518
		cp = "\r\n"; len = 2;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2519
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2520
		cp = "\n"; len = 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2521
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2522
	    __WRITEBYTES__(cnt, f, cp, len, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2523
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2524
	    if (cnt > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2525
		pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2526
		if (pos != nil) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2527
		    int __p;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2528
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2529
		    __p = __intVal(pos) + len1 + cnt;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2530
		    __INST(position) = __MKSMALLINT(__p);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2531
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2532
		RETURN ( self );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2533
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2534
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2535
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2536
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2537
%}.
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2538
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2539
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2540
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2541
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2542
    "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
  2543
     and append all lines to self. 
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2544
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2545
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2546
     If aStringOrNil is nil or not matched, copy preceeds to the end.
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2547
     (this allows for example to read a Socket and transfer the data quickly
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2548
      into a file - without creating zillions of temporary strings)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2549
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2550
    |srcFilePointer readError line|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2551
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2552
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2553
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2554
    srcFilePointer := aStream filePointer.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2555
    srcFilePointer isNil ifTrue:[aStream errorNotOpen. ^ self].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2556
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2557
%{  /* STACK:2000 */
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2558
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2559
#ifndef NO_STDIO
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2560
    FILEPOINTER dst;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2561
    FILEPOINTER src;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2562
    char *matchString;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2563
    int matchLen = 0;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2564
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2565
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2566
    __INST(lastErrorNumber) = nil;
249
claus
parents: 244
diff changeset
  2567
    if (__isSmallInteger(srcFilePointer)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2568
	if ((aStringOrNil == nil) || __isString(aStringOrNil)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2569
	    if (aStringOrNil != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2570
		matchString = (char *) __stringVal(aStringOrNil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2571
		matchLen = __stringSize(aStringOrNil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2572
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2573
	    dst = __FILEVal(__INST(filePointer));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2574
	    src = __FILEVal(srcFilePointer);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2575
	    __BEGIN_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2576
	    errno = 0;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2577
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2578
	    __WRITING__(dst)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2579
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2580
	    for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2581
		if (fgets(buffer, sizeof(buffer)-1, src) == NULL) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2582
		    if (ferror(src)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2583
			readError = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2584
			__END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2585
			goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2586
		    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2587
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2588
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2589
		if (fputs(buffer, dst) == EOF) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2590
		    if (ferror(dst)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2591
			__INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2592
			__END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2593
			goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2594
		    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2595
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2596
		}
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2597
#ifndef OLD
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2598
		if (__INST(buffered) == false) {
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2599
		    FFLUSH(dst);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2600
		}
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2601
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2602
		if (matchLen) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2603
		    if (strncmp(matchString, buffer, matchLen) == 0) 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2604
			break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2605
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2606
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2607
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2608
	    __INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2609
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2610
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2611
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2612
err: ;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2613
#endif /* ! NO_STDIO */
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2614
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2615
    readError ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2616
	aStream setLastErrorNumber:readError.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2617
	aStream readError.
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2618
	^ self
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2619
    ].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2620
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2621
    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
  2622
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2623
    "
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2624
     argument error or unimplemented; try it linewise
159
514c749165c3 *** empty log message ***
claus
parents: 108
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
    [aStream atEnd] whileFalse:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2627
	line := aStream nextLine.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2628
	line isNil ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2629
	    ^ self.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2630
	].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2631
	self nextPutLine:line.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2632
	(aStringOrNil notNil and:[line startsWith:aStringOrNil]) ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2633
	    ^ self
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2634
	]
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2635
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2636
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2637
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2638
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2639
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2640
     return the line-string if found, or nil if EOF is encountered.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2641
     If matched, not advance position behond that line
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2642
     i.e. nextLine will read the matched line.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2643
     If not matched, reposition to original position for firther reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2644
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2645
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2646
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2647
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2648
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2649
    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
  2650
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2651
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2652
%{  /* STACK: 2000 */
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2653
#ifndef NO_STDIO
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2654
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2655
    FILEPOINTER f;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2656
    int l;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2657
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2658
    char *cp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2659
    char *matchString;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2660
    int gotFirst = 0;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2661
#ifdef __VMS__
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2662
    fpos_t firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2663
#   define FTELL(__f__, __pos__)        fgetpos(__f__, &(__pos__))
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2664
#   define FSEEK(__f__, __pos__)        fsetpos(__f__, &(__pos__))
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2665
#else
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2666
    long firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2667
#   define FTELL(__f__, __pos__)        __pos__ = ftell(__f__)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2668
#   define FSEEK(__f__, __pos__)        fseek(__f__, __pos__, SEEK_SET)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2669
#endif
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2670
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2671
    __INST(lastErrorNumber) = nil;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
  2672
    if (__isString(aString)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2673
	matchString = (char *) __stringVal(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2674
	l = __stringSize(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2675
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2676
	f = __FILEVal(__INST(filePointer));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2677
	__READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2678
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2679
	for (;;) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2680
	    FTELL(f, lastpos);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2681
	    if (!gotFirst) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2682
		firstpos = lastpos;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2683
		gotFirst = 1;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2684
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2685
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2686
	    __BEGIN_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2687
	    do {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2688
		cp = fgets(buffer, sizeof(buffer)-1, f);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2689
	    } while ((cp == NULL) && ferror(f) && (errno == EINTR) && (clearerr(f), 1));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2690
	    buffer[sizeof(buffer)-1] = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2691
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2692
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2693
	    if (cp == NULL) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2694
		if (ferror(f)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2695
		    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2696
		    goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2697
		} else {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2698
		    FSEEK(f, firstpos);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2699
		    RETURN (nil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2700
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2701
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2702
	    if (strncmp(cp, matchString, l) == 0) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2703
		FSEEK(f, lastpos);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2704
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2705
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2706
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2707
	/* remove EOL character */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2708
	cp = buffer;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2709
	while (*cp && (*cp != '\n') && (*cp != '\r')) cp++;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2710
	*cp = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2711
	RETURN ( __MKSTRING(buffer) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2712
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2713
err: ;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2714
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2715
# undef FTELL
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2716
# undef FSEEK
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2717
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2718
#endif
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2719
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2720
    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
  2721
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2722
    "/ 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
  2723
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2724
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2725
    [self atEnd] whileFalse:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2726
	lastPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2727
	line := self nextLine.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2728
	line isNil ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2729
	    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2730
	    ^ nil
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2731
	].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2732
	(line startsWith:aString) ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2733
	    self position:lastPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2734
	    ^ line
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2735
	]
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2736
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2737
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2738
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2739
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2740
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2741
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2742
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2743
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2744
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2745
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2746
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2747
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2748
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2749
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2750
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2751
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2752
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2753
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2754
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2755
	linePos := self position.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2756
	line := self nextLine.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2757
	line notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2758
	    index := 1.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2759
	    aCollectionOfStrings do:[:prefix |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2760
		(line startsWith:prefix) ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2761
		    self position:linePos.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2762
		    ^ index
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2763
		].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2764
		index := index + 1
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2765
	    ]
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2766
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2767
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2768
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2769
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2770
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2771
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2772
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2773
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2774
async:aBoolean
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2775
    "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
  2776
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2777
     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
  2778
     Notice: 
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2779
	not every OS supports this 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2780
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2781
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2782
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2783
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2784
    filePointer isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2785
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2786
    OperatingSystem supportsIOInterrupts ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2787
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2788
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2789
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2790
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2791
    aBoolean ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2792
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2793
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2794
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2795
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2796
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2797
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2798
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2799
backStep
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2800
    "step back one element -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2801
     redefined, since position is redefined here"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2802
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2803
    self position:(self position - 1)
362
claus
parents: 360
diff changeset
  2804
!
claus
parents: 360
diff changeset
  2805
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2806
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2807
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2808
     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
  2809
     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
  2810
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2811
     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
  2812
     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
  2813
     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
  2814
     methods, in order to avoid other (pastEnd) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2815
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2816
    filePointer isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2817
    ^ 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
  2818
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2819
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2820
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2821
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2822
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2823
close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2824
    "close the stream - tell operating system"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2825
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2826
    self isOpen ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2827
	Lobby unregister:self.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2828
	self closeFile.
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2829
    ]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2830
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2831
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2832
create
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2833
    "create the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2834
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2835
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2836
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2837
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2838
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2839
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2840
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2841
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2842
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2843
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2844
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2845
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2846
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2847
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2848
     on the underlying file; the argument is passed as argument.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2849
     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
  2850
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2851
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2852
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2853
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2854
     If the argument is nil, an ioctl without argument is performed.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2855
     If the argument is an integral number, its directly passed; 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2856
     if its a kind of ByteArray (ByteArray, String or Structure),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2857
     or external data (ExternalBytes or ExternalAddress),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2858
     a pointer to the data is passed. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2859
     This allows performing most ioctls 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2860
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2861
     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
  2862
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2863
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2864
#if !defined(MSDOS_LIKE)
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2865
# 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
  2866
    FILEPOINTER f;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2867
    int ret, ioNum;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2868
    OBJ fp;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2869
    INT ioArg;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2870
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2871
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2872
    if ((fp = __INST(filePointer)) != nil) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2873
	if (__isSmallInteger(ioctlNumber) 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2874
	 && (__isSmallInteger(arg) 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2875
	     || (arg == nil)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2876
	     || __isBytes(arg)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2877
	     || __isExternalBytes(arg)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2878
	     || __isExternalAddress(arg))) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2879
	    f = __FILEVal(fp);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2880
	    ioNum = __intVal(ioctlNumber);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2881
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2882
	    __BEGIN_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2883
	    do {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2884
		errno = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2885
		if (arg == nil) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2886
		    ioArg = 0;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2887
		} else if (__isSmallInteger(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2888
		    ioArg = __intVal(arg);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2889
		} else if (__isExternalBytes(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2890
		    ioArg = (INT)(__externalBytesAddress(arg));
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2891
		} else if (__isExternalAddress(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2892
		    ioArg = (INT)(__externalAddressVal(arg));
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2893
		} else {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2894
		    ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2895
		}
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2896
		ret = ioctl(fileno(f), ioNum, ioArg);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2897
	    } while ((ret < 0) && (errno == EINTR));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2898
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2899
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2900
	    if (ret >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2901
		RETURN ( __MKSMALLINT(ret) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2902
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2903
	    __INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2904
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2905
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2906
    }
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2907
# endif
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  2908
#endif
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2909
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2910
    lastErrorNumber notNil ifTrue:[^ self ioError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2911
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2912
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2913
     argument is not an integer
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2914
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2915
    (ioctlNumber isMemberOf:SmallInteger) ifFalse:[^ self primitiveFailed].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2916
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2917
     the system does not support ioctl (MSDOS or VMS)
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2918
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2919
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2920
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2921
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2922
open
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2923
    "open the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2924
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2925
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2926
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2927
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2928
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2929
position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2930
    "return the position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2931
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2932
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2933
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2934
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2935
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2936
position:anInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2937
    "set the position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2938
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2939
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2940
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2941
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2942
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2943
reset
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2944
    "set the read position to the beginning of the collection"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2945
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2946
    self position:"0" 1
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2947
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2948
1044
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2949
setToEnd
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2950
    "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
  2951
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2952
    ^ self subclassResponsibility
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2953
!
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2954
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2955
truncateTo:newSize
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2956
    "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
  2957
     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
  2958
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2959
%{
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2960
#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
  2961
    FILEPOINTER f;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2962
    OBJ fp;
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2963
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2964
    if (((fp = __INST(filePointer)) != nil)
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2965
     && (__INST(mode) != @symbol(readonly))) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2966
	if (__isSmallInteger(newSize)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2967
	    f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2968
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2969
	    if (__INST(buffered) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2970
		__READING__(f)
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2971
		FFLUSH(f);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2972
		OPT_FSEEK(f, 0L, SEEK_END); /* needed in stdio */
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2973
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2974
	    ftruncate(fileno(f), __intVal(newSize));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2975
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2976
	}
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2977
    }
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2978
#endif
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2979
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2980
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2981
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2982
    self errorUnsupportedOperation
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2983
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2984
    "
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2985
     |s|
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2986
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2987
     s := 'test' asFilename writeStream.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2988
     s next:1000 put:$a.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2989
     s truncateTo:100.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2990
     s close.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2991
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2992
     ('test' asFilename fileSize) printNL
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2993
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2994
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2995
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2996
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2997
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  2998
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  2999
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3000
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3001
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3002
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3003
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3004
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3005
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3006
    binary ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3007
	buffer := ByteArray new:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3008
    ] ifFalse:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3009
	buffer := String new:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3010
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3011
    n := self nextAvailableBytes:count into:buffer startingAt:1.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3012
    n == 0 ifTrue:[^ nil].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3013
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3014
    n ~~ count ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3015
	^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3016
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3017
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3018
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3019
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3020
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:3 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3021
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3022
     (ReadStream on:'hello') nextAvailable:3
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3023
     (ReadStream on:'hello') nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3024
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3025
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3026
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3027
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3028
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3029
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3030
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3031
    "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
  3032
     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
  3033
     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
  3034
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3035
     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
  3036
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3037
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3038
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3039
     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
  3040
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3041
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3042
     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
  3043
     (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
  3044
     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
  3045
     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
  3046
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3047
     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
  3048
     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
  3049
     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
  3050
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3051
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3052
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3053
    int cnt, offs, ret, _buffered;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3054
    int objSize, nInstVars, nInstBytes;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3055
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3056
    char *extPtr;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3057
    OBJ pos, fp, oClass;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3058
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3059
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3060
    __INST(lastErrorNumber) = nil;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3061
    if (((fp = __INST(filePointer)) != nil)
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3062
	&& (__INST(mode) != @symbol(writeonly))
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3063
	&& __bothSmallInteger(count, start)
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3064
    ) {
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3065
	f = __FILEVal(fp);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3066
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3067
	cnt = __intVal(count);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3068
	offs = __intVal(start) - 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3069
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3070
	oClass = __Class(anObject);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3071
	if (oClass == ExternalBytes) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3072
	    OBJ sz;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3073
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3074
	    nInstBytes = 0;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3075
	    extPtr = (char *)(__externalBytesAddress(anObject));
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3076
	    sz = __externalBytesSize(anObject);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3077
	    if (__isSmallInteger(sz)) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3078
		objSize = __intVal(sz);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3079
	    } else {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3080
		objSize = 0; /* unknown */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3081
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3082
	} else {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3083
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3084
		case BYTEARRAY:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3085
		case WORDARRAY:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3086
		case LONGARRAY:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3087
		case SWORDARRAY:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3088
		case SLONGARRAY:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3089
		case FLOATARRAY:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3090
		case DOUBLEARRAY:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3091
		    break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3092
		default:
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3093
		    goto bad;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3094
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3095
	    extPtr = (char *)0;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3096
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3097
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3098
	    objSize = __Size(anObject) - nInstBytes;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3099
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3100
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3101
	if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3102
	    _buffered = (__INST(buffered) == true);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3103
	    if (_buffered) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3104
		__READING__(f);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3105
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3106
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3107
	    if (extPtr) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3108
		__READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3109
	    } else {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3110
		/*
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3111
		 * on interrupt, anObject may be moved to another location.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3112
		 * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3113
		 * to get a new address.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3114
		 */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3115
		offs += nInstBytes;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3116
		__READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3117
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3118
	    if (ret > 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3119
		pos = __INST(position);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3120
		if (pos != nil) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3121
		    __INST(position) = __MKSMALLINT(__intVal(pos) + ret);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3122
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3123
		RETURN (__MKSMALLINT(ret));
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3124
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3125
	    if (ret == 0) { 
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3126
		__INST(hitEOF) = true;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3127
	    } else /* ret < 0 */ {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3128
		__INST(position) = nil;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3129
		__INST(lastErrorNumber) = __MKSMALLINT(errno);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3130
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  3131
	}
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3132
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3133
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3134
%}.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3135
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3136
    lastErrorNumber notNil ifTrue:[^ self readError].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3137
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3138
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3139
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3140
     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
  3141
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3142
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3143
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3144
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3145
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3146
    "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
  3147
     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
  3148
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3149
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3150
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3151
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3152
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3153
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3154
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3155
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3156
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3157
    if (((fp = __INST(filePointer)) != nil)
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3158
     && (__INST(mode) != @symbol(writeonly))) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3159
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3160
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3161
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3162
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3163
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3164
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3165
	__READBYTE__(ret, f, &byte, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3166
	if (ret > 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3167
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3168
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3169
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3170
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3171
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3172
	    RETURN (__MKSMALLINT(byte));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3173
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3174
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3175
	if (ret == 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3176
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3177
	} else /* ret < 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3178
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3179
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3180
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3181
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3182
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3183
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3184
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3185
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3186
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3187
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3188
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3189
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3190
    "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
  3191
     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
  3192
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3193
     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
  3194
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3195
     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
  3196
     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
  3197
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3198
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3199
     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
  3200
     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
  3201
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3202
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3203
     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
  3204
     (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
  3205
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3206
     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
  3207
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3208
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3209
     Use with care - non object oriented I/O.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3210
     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
  3211
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3212
     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
  3213
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3214
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3215
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3216
    int cnt, offs, ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3217
    int objSize, nInstVars, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3218
    char *extPtr;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3219
    OBJ pos, fp, oClass;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3220
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3221
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3222
    if (((fp = __INST(filePointer)) != nil)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3223
	&& (__INST(mode) != @symbol(writeonly))
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3224
	&& __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3225
    ) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3226
	f = __FILEVal(fp);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3227
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3228
	cnt = __intVal(count);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3229
	offs = __intVal(start) - 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3230
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3231
	oClass = __Class(anObject);
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3232
	if (oClass == ExternalBytes) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3233
	    OBJ sz;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3234
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3235
	    nInstBytes = 0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3236
	    extPtr = (char *)(__externalBytesAddress(anObject));
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3237
	    sz = __externalBytesSize(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3238
	    if (__isSmallInteger(sz)) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3239
		objSize = __intVal(sz);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3240
	    } else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3241
		objSize = 0; /* unknown */
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3242
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3243
	} else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3244
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3245
		case BYTEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3246
		case WORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3247
		case LONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3248
		case SWORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3249
		case SLONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3250
		case FLOATARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3251
		case DOUBLEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3252
		    break;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3253
		default:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3254
		    goto bad;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3255
	    }
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3256
	    extPtr = (char *)0;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3257
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3258
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3259
	    objSize = __Size(anObject) - nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3260
	}
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3261
	if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3262
	    _buffered = (__INST(buffered) == true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3263
	    if (_buffered) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3264
		__READING__(f);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3265
	    }
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  3266
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3267
	    if (extPtr) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3268
		__READBYTES__(ret, f, extPtr+offs, cnt, _buffered);
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3269
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3270
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3271
		 * on interrupt, anObject may be moved to another location.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3272
		 * So we pass anObject, and the offset to the __READBYTES_OBJ__ macro.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3273
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3274
		offs += nInstBytes;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3275
		__READBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered);
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3276
	    }
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  3277
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3278
	    if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3279
		pos = __INST(position);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3280
		if (pos != nil) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3281
		    __INST(position) = __MKSMALLINT(__intVal(pos) + ret);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3282
		}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3283
		RETURN (__MKSMALLINT(ret));
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3284
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3285
	    if (ret == 0) { 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3286
		__INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3287
	    } else /* ret < 0 */ {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3288
		__INST(position) = nil;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3289
		__INST(lastErrorNumber) = __MKSMALLINT(errno);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3290
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3291
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3292
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3293
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3294
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3295
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3296
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3297
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3298
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3299
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3300
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3301
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3302
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3303
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3304
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3305
nextLong
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3306
    "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
  3307
     The returned value may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3308
     (msb-first for compatibility with other smalltalks)"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3309
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3310
    ^ self nextUnsignedLongMSB:true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3311
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3312
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3313
nextLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3314
    "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
  3315
     which may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3316
     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
  3317
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3318
     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
  3319
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3320
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3321
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3322
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3323
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3324
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3325
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3326
	&& (__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
  3327
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3328
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3329
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3330
	int value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3331
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3332
	    unsigned char buffer[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3333
	    int intVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3334
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3335
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3336
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3337
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3338
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3339
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3340
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3341
	__READBYTES__(ret, f, u.buffer, 4, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3342
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3343
	if (ret == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3344
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3345
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3346
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3347
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3348
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3349
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3350
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3351
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3352
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3353
		value = (u.buffer[0] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3354
		value = (value << 8) | (u.buffer[1] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3355
		value = (value << 8) | (u.buffer[2] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3356
		value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3357
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3358
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3359
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3360
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3361
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3362
		value = (u.buffer[3] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3363
		value = (value << 8) | (u.buffer[2] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3364
		value = (value << 8) | (u.buffer[1] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3365
		value = (value << 8) | (u.buffer[0] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3366
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3367
	    }
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3368
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3369
	    RETURN ( __MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3370
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3371
	    if ((value >= _MIN_INT) && (value <= _MAX_INT)) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3372
		RETURN ( __MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3373
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3374
	    RETURN ( __MKLARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3375
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3376
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3377
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3378
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3379
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3380
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3381
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3382
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3383
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3384
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3385
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3386
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3387
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3388
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3389
    ^ self readError.
1079
d47cd86b487b Make methods signal-proof.
Stefan Vogel <sv@exept.de>
parents: 1068
diff changeset
  3390
362
claus
parents: 360
diff changeset
  3391
!
claus
parents: 360
diff changeset
  3392
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3393
nextShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3394
    "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
  3395
     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
  3396
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3397
     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
  3398
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3399
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3400
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3401
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3402
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3403
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3404
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3405
	&& (__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
  3406
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3407
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3408
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3409
	short value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3410
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3411
	    unsigned char buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3412
	    short shortVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3413
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3414
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3415
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3416
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3417
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3418
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3419
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3420
	__READBYTES__(ret, f, u.buffer, 2, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3421
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3422
	if (ret == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3423
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3424
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3425
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3426
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3427
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3428
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3429
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3430
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3431
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3432
		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
  3433
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3434
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3435
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3436
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3437
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3438
		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
  3439
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3440
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3441
	    RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3442
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3443
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3444
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3445
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3446
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3447
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3448
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3449
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3450
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3451
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3452
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3453
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3454
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3455
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3456
!
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
nextUnsignedLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3459
    "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
  3460
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3461
     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
  3462
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3463
     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
  3464
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3465
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3466
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3467
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3468
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3469
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3470
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3471
	&& (__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
  3472
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3473
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3474
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3475
	unsigned INT value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3476
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3477
	    unsigned char buffer[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3478
	    unsigned int intVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3479
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3480
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3481
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3482
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3483
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3484
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3485
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3486
	__READBYTES__(ret, f, u.buffer, 4, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3487
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3488
	if (ret == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3489
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3490
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3491
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3492
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3493
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3494
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3495
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3496
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3497
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3498
		value = u.buffer[0];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3499
		value = (value << 8) | u.buffer[1];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3500
		value = (value << 8) | u.buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3501
		value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3502
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3503
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3504
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3505
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3506
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3507
		value = u.buffer[3];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3508
		value = (value << 8) | u.buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3509
		value = (value << 8) | u.buffer[1];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3510
		value = (value << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3511
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3512
	    }
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3513
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3514
	    value &= 0xFFFFFFFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3515
	    RETURN (__MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3516
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3517
	    if (value <= _MAX_INT) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3518
		RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3519
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3520
	    RETURN (__MKULARGEINT(value) );
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3521
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3522
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3523
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3524
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3525
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3526
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3527
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3528
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3529
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3530
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3531
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3532
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3533
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3534
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3535
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3536
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3537
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3538
nextUnsignedShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3539
    "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
  3540
     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
  3541
     otherwise least-significant byte comes first.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3542
     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
  3543
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3544
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3545
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3546
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3547
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3548
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3549
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3550
	&& (__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
  3551
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3552
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3553
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3554
	unsigned int value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3555
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3556
	    unsigned char buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3557
	    unsigned short shortVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3558
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3559
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3560
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3561
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3562
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3563
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3564
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3565
	__READBYTES__(ret, f, u.buffer, 2, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3566
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3567
	if (ret == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3568
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3569
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3570
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3571
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3572
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3573
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3574
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3575
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3576
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3577
		value = (u.buffer[0] << 8) | u.buffer[1];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3578
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3579
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3580
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3581
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3582
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3583
		value = (u.buffer[1] << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3584
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3585
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3586
	    RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3587
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3588
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3589
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3590
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3591
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3592
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3593
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3594
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3595
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3596
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3597
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3598
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3599
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3600
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3601
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3602
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3603
nextWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3604
    "in text-mode:
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3605
	 read the alphaNumeric next word (i.e. up to non letter-or-digit).
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3606
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3607
     in binary-mode:
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3608
	 read two bytes (msb-first) and return the value as a 16-bit 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3609
	 unsigned Integer (for compatibility with other smalltalks)"
612
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
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3612
	^ self nextUnsignedShortMSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3613
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3614
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3615
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3616
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3617
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3618
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3619
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3620
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3621
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3622
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3623
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3624
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3625
    char c;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3626
    OBJ pos, fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3627
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3628
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3629
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3630
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3631
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3632
	&& __isSmallInteger(aByteValue)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3633
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3634
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3635
	c = __intVal(aByteValue);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3636
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3637
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3638
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3639
	} 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3640
	__WRITEBYTE__(cnt, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3641
	if (cnt == 1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3642
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3643
	    if (pos != nil)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3644
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3645
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3646
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3647
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3648
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3649
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3650
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3651
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3652
    self writeError.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3653
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3654
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3655
nextPutBytes:count from:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3656
    "write count bytes from an object starting at index start.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3657
     return the number of bytes written - which could be 0.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3658
     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
  3659
     (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
  3660
     or an externalBytes object (with known size).
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3661
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3662
     Use with care - non object oriented i/o.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3663
     Warning: in general, you cannot use this method to pass data to other 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3664
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3665
     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
  3666
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3667
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3668
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3669
    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
  3670
    int objSize, nInstVars, nInstBytes, _buffered;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3671
    char *extPtr;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3672
    OBJ oClass, pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3673
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3674
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3675
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3676
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3677
	&& __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3678
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3679
	len = __intVal(count);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3680
	offs = __intVal(start) - 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3681
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3682
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3683
	oClass = __Class(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3684
	if (oClass == ExternalBytes) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3685
	    OBJ sz;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3686
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3687
	    nInstBytes = 0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3688
	    extPtr = (char *)__externalBytesAddress(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3689
	    sz = __externalBytesSize(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3690
	    if (__isSmallInteger(sz)) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3691
		objSize = __intVal(sz);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3692
	    } else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3693
		objSize = 0; /* unknown */
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3694
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3695
	} else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3696
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3697
		case BYTEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3698
		case WORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3699
		case LONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3700
		case SWORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3701
		case SLONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3702
		case FLOATARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3703
		case DOUBLEARRAY:
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3704
		    break;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3705
		default:
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3706
		    goto bad;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3707
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3708
	    extPtr = (char *)0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3709
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3710
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3711
	    objSize = __Size(anObject) - nInstBytes;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3712
	}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3713
	if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3714
	    if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3715
		__WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3716
	    }
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3717
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3718
	    if (extPtr) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3719
		__WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered); 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3720
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3721
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3722
		 * on interrupt, anObject may be moved to another location.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3723
		 * So we pass anObject, and the offset to the __WRITEBYTES_OBJ__ macro.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3724
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3725
		offs += nInstBytes;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3726
		__WRITEBYTES_OBJ__(cnt, f, anObject, offs, len, _buffered); 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3727
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3728
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3729
	    if (cnt >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3730
		pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3731
		if (pos != nil)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3732
		    __INST(position) = __MKSMALLINT(__intVal(pos) + cnt);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3733
		RETURN ( __MKSMALLINT(cnt) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3734
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3735
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3736
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3737
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3738
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3739
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3740
    lastErrorNumber notNil ifTrue:[^ self writeError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3741
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3742
    (mode == #readonly) ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3743
    ^ self primitiveFailed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3744
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3745
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3746
nextPutLong:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3747
    "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
  3748
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3749
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3750
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3751
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3752
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3753
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3754
    union {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3755
	char bytes[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3756
	int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3757
    } u;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3758
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3759
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3760
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3761
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3762
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3763
    if (__isSmallInteger(aNumber)) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3764
	num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3765
    } else {
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3766
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3767
	goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3768
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3769
	num = __longIntVal(aNumber);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3770
	if (num == 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3771
	    num = __signedLongIntVal(aNumber);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3772
	    if (num == 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3773
		/* bad arg or out-of-range integer  
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3774
		 * (handled by the fallBack code)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3775
		 */
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3776
		goto badArg;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3777
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3778
	}
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3779
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3780
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3781
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3782
    if (((fp = __INST(filePointer)) != nil)
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3783
     && (__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
  3784
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3785
	if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3786
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3787
	    u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3788
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3789
	    u.bytes[0] = (num >> 24) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3790
	    u.bytes[1] = (num >> 16) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3791
	    u.bytes[2] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3792
	    u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3793
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3794
	} else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3795
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3796
	    u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3797
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3798
	    u.bytes[3] = (num >> 24) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3799
	    u.bytes[2] = (num >> 16) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3800
	    u.bytes[1] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3801
	    u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3802
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3803
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3804
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3805
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3806
	if (_buffered = (__INST(buffered) == true)) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3807
	    __WRITING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3808
	} 
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3809
	__WRITEBYTES__(cnt, f, u.bytes, 4, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3810
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3811
	if (cnt == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3812
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3813
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3814
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3815
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3816
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3817
	    RETURN ( self );
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3818
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3819
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3820
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3821
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3822
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3823
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3824
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3825
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3826
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3827
    aNumber isInteger ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3828
	^ super nextPutLong:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3829
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3830
    self argumentMustBeInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3831
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3832
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3833
nextPutShort:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3834
    "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
  3835
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3836
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3837
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3838
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3839
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3840
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3841
    union {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3842
	char bytes[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3843
	short shortVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3844
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3845
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3846
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3847
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3848
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3849
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3850
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3851
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3852
	&& (__INST(mode) != @symbol(readonly))
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3853
	&& __isSmallInteger(aNumber)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3854
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3855
	num = __intVal(aNumber);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3856
	if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3857
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3858
	    u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3859
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3860
	    u.bytes[0] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3861
	    u.bytes[1] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3862
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3863
	} else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3864
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3865
	    u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3866
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3867
	    u.bytes[1] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3868
	    u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3869
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3870
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3871
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3872
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3873
	if (_buffered = (__INST(buffered) == true)) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3874
	    __WRITING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3875
	} 
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3876
	__WRITEBYTES__(cnt, f, u.bytes, 2, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3877
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3878
	if (cnt == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3879
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3880
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3881
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3882
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3883
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3884
	    RETURN ( self );
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3885
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3886
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3887
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3888
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3889
    lastErrorNumber notNil ifTrue:[^ self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3890
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3891
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3892
    self argumentMustBeInteger
10
claus
parents: 5
diff changeset
  3893
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3894
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3895
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3896
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3897
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3898
    hitEOF := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3899
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3900
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3901
connectTo:aFileDescriptor withMode:openmode
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3902
    "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
  3903
     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
  3904
     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
  3905
     a Stream object. 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3906
     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
  3907
     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
  3908
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3909
    |retVal|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3910
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  3911
    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
  3912
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3913
    FILEPOINTER f;
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3914
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  3915
    FILE *fdopen();
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3916
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3917
    if (__isSmallInteger(aFileDescriptor) 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3918
     && (__qClass(openmode)== @global(String))) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3919
	f = (FILEPOINTER) fdopen(__intVal(aFileDescriptor), (char *)__stringVal(openmode));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3920
	if (f == NULL) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3921
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3922
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3923
	} else {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3924
	    __INST(filePointer) = fp = __MKFILEPOINTER(f); __STORE(self, fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3925
	    __INST(position) = __MKSMALLINT(1);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3926
	    retVal = self;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3927
	}
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3928
    }
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3929
%}.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3930
    retVal notNil ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3931
	buffered := true.       "default is buffered"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3932
	Lobby register:self
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3933
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3934
    lastErrorNumber notNil ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3935
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3936
	 the open failed for some reason ...
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3937
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3938
	^ self openError
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3939
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3940
    ^ retVal
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3941
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3942
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3943
open:aPath withMode:mode
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3944
    "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
  3945
     variable. Careful: this does not care for any other state."
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3946
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3947
    |ok|
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3948
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3949
    ok := false.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3950
%{
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3951
    FILE *f; 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3952
    OBJ fp;
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3953
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3954
    if (__isString(aPath)) { 
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  3955
	__BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3956
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3957
	f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3958
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3959
	do {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3960
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3961
	} while ((f == NULL) && (errno == EINTR));
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3962
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3963
	__END_INTERRUPTABLE__
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3964
	if (f == NULL) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3965
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3966
	} else {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3967
	    __INST(filePointer) = fp = __MKFILEPOINTER(f); __STORE(self, fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3968
	    ok = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3969
	}
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3970
    }
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3971
%}.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3972
    ok ifFalse:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3973
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3974
	 the open failed for some reason ...
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3975
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3976
	^ self openError
4456
914ce6ac4052 initialize position
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
  3977
    ].
914ce6ac4052 initialize position
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
  3978
    position := 1.
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3979
    Lobby register:self. 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3980
!
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3981
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3982
reOpen
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3983
    "sent after snapin to reopen streams.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3984
     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
  3985
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  3986
    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
  3987
    filePointer := nil.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3988
    Lobby unregister:self.
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  3989
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  3990
    "Modified: 10.1.1997 / 17:50:44 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3991
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3992
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3993
setLastError:aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3994
    lastErrorNumber := aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3995
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3996
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3997
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3998
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3999
isBinary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4000
    "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
  4001
     The default when created is false."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4002
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4003
    ^ binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4004
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4005
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4006
isExternalStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4007
    "return true, if the receiver is some kind of externalStream;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4008
     true is returned here - the method redefined from Object."
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
    ^ true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4011
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4012
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4013
isOpen 
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4014
    "return true, if this stream is open"
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4015
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4016
    ^ filePointer notNil
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4017
!
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4018
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4019
isReadable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4020
    "return true, if this stream can be read from"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4021
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4022
    ^ (mode ~~ #writeonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4023
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4024
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4025
isWritable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4026
    "return true, if this stream can be written to"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4027
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4028
    ^ (mode ~~ #readonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4029
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4030
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4031
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4032
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4033
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4034
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4035
     In binary mode, an integer is returned, otherwise a character.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4036
     If there are no more elements, nil is returned."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4037
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4038
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4039
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4040
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4041
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4042
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4043
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4044
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4045
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4046
	&& (__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
  4047
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4048
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4049
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4050
	_buffered = (__INST(buffered) == true);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4051
	if (_buffered) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4052
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4053
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4054
	__READBYTE__(ret, f, &ch, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4055
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4056
	if (ret > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4057
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4058
	    if (__isSmallInteger(pos)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4059
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4060
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4061
		__INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4062
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4063
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4064
		RETURN ( __MKSMALLINT(ch) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4065
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4066
	    RETURN ( __MKCHARACTER(ch) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4067
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4068
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4069
	__INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4070
	if (ret < 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4071
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4072
	} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4073
	    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4074
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4075
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4076
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4077
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4078
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4079
    filePointer isNil ifTrue:[^ self errorNotOpen].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4080
    ^ self errorWriteOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4081
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4082
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4083
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4084
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4085
     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
  4086
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4087
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4088
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4089
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4090
	coll := ByteArray uninitializedNew:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4091
    ] ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4092
	coll := String new:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4093
    ].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4094
    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
  4095
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4096
    "/ for readStream protocol compatibility, 
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4097
    "/ we must raise an exception here.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4098
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4099
    nRead < count ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4100
	^ self pastEnd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4101
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4102
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4103
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4104
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4105
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4106
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4107
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4108
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4109
     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
  4110
     If there are no more elements, nil is returned."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4111
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4112
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4113
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4114
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4115
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4116
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4117
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4118
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4119
    if ((ra = __INST(readAhead)) != nil) {
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4120
	if (__INST(binary) == true) {
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4121
	    RETURN ( ra );
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4122
	}
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4123
	c = __intVal(ra);
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4124
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4125
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4126
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4127
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4128
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4129
    if (((fp = __INST(filePointer)) != nil)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4130
	&& (__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
  4131
    ) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4132
	f = __FILEVal(fp);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4133
	_buffered = (__INST(buffered) == true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4134
	if (_buffered) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4135
	    __READING__(f)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4136
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4137
	__READBYTE__(ret, f, &c, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4138
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4139
	if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4140
	    __UNGETC__(c, f, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4141
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4142
	    if (__INST(binary) == true) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4143
		RETURN ( __MKSMALLINT(c) );
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4144
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4145
	    RETURN ( __MKCHARACTER(c) );
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4146
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4147
	if (ret < 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4148
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4149
	} else /* ret == 0 */ {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4150
	    __INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4151
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4152
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4153
%}.
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4154
    hitEOF ifTrue:[^ self pastEnd]. 
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4155
    lastErrorNumber notNil ifTrue:[^ self readError].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4156
    filePointer isNil ifTrue:[^ self errorNotOpen].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4157
    ^ self errorWriteOnly
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4158
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4159
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4160
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4161
    "return a collection of the elements up-to the end.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4162
     Return nil if the stream-end is reached before."
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4163
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4164
    |answerStream ch|
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4165
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4166
    answerStream := WriteStream on:(self contentsSpecies new).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4167
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4168
	ch := self next.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4169
	ch notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4170
	    answerStream nextPut:ch
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4171
	]
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4172
    ].
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4173
    ^ answerStream contents
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4174
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4175
    "Created: 25.4.1996 / 14:40:31 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4176
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4177
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4178
!ExternalStream methodsFor:'reimplemented for speed'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4179
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4180
nextAlphaNumericWord
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4181
    "read the next word (i.e. up to non letter-or-digit) after first
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4182
     skipping any whiteSpace.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4183
     Return a string containing those characters.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4184
     There is a limit of 1023 characters in the word - if longer,
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4185
     it is truncated."
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4186
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4187
%{  /* STACK: 2000 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4188
    FILEPOINTER f;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4189
    int len;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4190
    char buffer[1024];
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4191
    unsigned char ch;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4192
    int cnt = 0;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4193
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4194
    OBJ fp;
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4195
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4196
    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
  4197
     && (__INST(mode) != @symbol(writeonly))
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4198
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4199
	f = __FILEVal(fp);
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4200
	_buffered = (__INST(buffered) == true);
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4201
	if (_buffered) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4202
	    __READING__(f)
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4203
	}
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  4204
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4205
	/*
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4206
	 * skip whiteSpace first ...
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4207
	 */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4208
	do {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4209
	    __READBYTE__(ret, f, &ch, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4210
	    if (ret > 0)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4211
		cnt++;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4212
	    else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4213
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4214
	} while (
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4215
#ifndef NON_ASCII
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4216
		 (ch < ' ') ||
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4217
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4218
		 (ch == ' ' ) || (ch == '\t') || (ch == '\r')
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4219
	      || (ch == '\n') || (ch == 0x0b));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4220
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4221
	len = 0;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4222
	while (ret > 0 && 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4223
	       (((ch >= 'a') && (ch <= 'z')) ||
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4224
		((ch >= 'A') && (ch <= 'Z')) ||
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4225
		((ch >= '0') && (ch <= '9')))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4226
	) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4227
	    buffer[len++] = ch;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4228
	    if (len >= (sizeof(buffer)-1)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4229
		/* emergency */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4230
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4231
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4232
	    __READBYTE__(ret, f, &ch, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4233
	    if (ret > 0)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4234
		cnt++;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4235
	    else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4236
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4237
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4238
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4239
	if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4240
	    if (ret < 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4241
		__INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4242
		goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4243
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4244
	    else if (ret == 0)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4245
		__INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4246
	} else {
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4247
	    __UNGETC__(ch, f, _buffered);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4248
	    cnt--;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4249
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4250
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4251
	if (__INST(position) != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4252
	    __INST(position) = __MKSMALLINT(__intVal(__INST(position)) + cnt);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4253
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4254
	if (len != 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4255
	    buffer[len] = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4256
	    RETURN ( __MKSTRING_L(buffer, len) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4257
	}
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4258
    }
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4259
err: ;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4260
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4261
    hitEOF ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4262
    lastErrorNumber notNil ifTrue:[^ self readError].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4263
    filePointer isNil ifTrue:[^ self errorNotOpen].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4264
    ^ self errorWriteOnly
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4265
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4266
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4267
nextChunk
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4268
    "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
  4269
     exclamation mark. Within the chunk, exclamation marks have to be doubled -
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4270
     except within primitive code (this exception was added to make it easier
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4271
     to edit primitive code with external editors). This means, that other
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4272
     Smalltalks cannot always read chunks containing primitive code - but that
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4273
     doesnt really matter, since C-primitives are an ST/X feature anyway.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4274
     Reimplemented here for more speed."
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4275
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4276
    |retVal outOfMemory buffer|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4277
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4278
    filePointer isNil ifTrue:[^ self errorNotOpen].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4279
    binary ifTrue:[^ self errorBinary].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4280
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4281
2854
3c8bf66e4e7d give nextChunk a bit more stack
Claus Gittinger <cg@exept.de>
parents: 2766
diff changeset
  4282
%{  /* 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
  4283
    /*
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4284
     * 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
  4285
     * 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
  4286
     * 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
  4287
     * 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
  4288
     */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4289
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4290
    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
  4291
    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
  4292
    int ret;
1823
51ffb7231437 type casts
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4293
    unsigned char *bufferPtr = (unsigned char *)0;
2874
020627074c9e oops - nextChunk could access invalid memory due
Claus Gittinger <cg@exept.de>
parents: 2861
diff changeset
  4294
    unsigned char fastBuffer[8000];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4295
    REGISTER int index;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4296
    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
  4297
    int atBeginOfLine = 1, inPrimitive = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4298
    int haveCR = 0, haveNL = 0;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4299
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4300
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4301
    f = __FILEVal(__INST(filePointer));
668
73165201a9da nextChunk: %{ is only recognized if at begin-of-line
Claus Gittinger <cg@exept.de>
parents: 665
diff changeset
  4302
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4303
    _buffered = (__INST(buffered) == true);
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4304
    if (_buffered) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4305
	__READING__(f)
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4306
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4307
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4308
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4309
     * skip spaces
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4310
     */
673
2c3a4a536cd1 oops - handling of exclas within primitives was wrong
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  4311
    c = '\n';
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4312
    while (! done) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4313
	lastC = c;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4314
	__READBYTE__(ret, f, &c, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4315
	if (ret <= 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4316
	    goto err;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4317
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4318
	nread++;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4319
	atBeginOfLine = 0;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4320
	switch (c) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4321
	    case '\n':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4322
	    case ' ':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4323
	    case '\t':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4324
	    case '\r':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4325
	    case '\b':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4326
	    case '\014':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4327
		break;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4328
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4329
	    default:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4330
		atBeginOfLine = (lastC == '\n');
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4331
		done = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4332
		break;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4333
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4334
    }
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4335
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4336
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4337
     * read chunk into a buffer
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4338
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4339
    bufferPtr = fastBuffer; fastFlag = 1;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4340
    currSize = sizeof(fastBuffer);
362
claus
parents: 360
diff changeset
  4341
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4342
    index = 0;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4343
    for (;;) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4344
	__READBYTE__(ret, f, &peekC, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4345
	if ((c == '%') && atBeginOfLine && ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4346
	    if (peekC == '{') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4347
		inPrimitive = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4348
	    } else if (peekC == '}') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4349
		inPrimitive = 0;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4350
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4351
	} else if (c == '!' && !inPrimitive) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4352
	    if (ret > 0 && peekC == '!') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4353
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4354
		 * convert double-! to a single !
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4355
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4356
		__READBYTE__(ret, f, &peekC, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4357
		if (ret > 0)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4358
		    nread++;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4359
	    } else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4360
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4361
		 * End of chunk, push back lookahead character
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4362
		 * and leave loop.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4363
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4364
		if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4365
		    __UNGETC__(peekC, f, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4366
		} else
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4367
		    ret = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4368
		break; 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4369
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4370
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4371
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4372
	/* 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4373
	 * do we have to resize the buffer ? 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4374
	 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4375
	if ((index+2) >= currSize) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4376
	    OBJ newBuffer;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4377
	    unsigned char *nbp;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4378
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4379
	    newBuffer = __MKEMPTYSTRING(currSize * 2);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4380
	    if (!fastFlag) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4381
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4382
		 * refetch - buffer could be moved by GC
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4383
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4384
		bufferPtr = __stringVal(buffer);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4385
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4386
	    if (newBuffer == nil) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4387
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4388
		 * mhmh - chunk seems to be very big ....
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4389
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4390
		outOfMemory = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4391
		goto err;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4392
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4393
	    nbp = __stringVal(newBuffer);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4394
	    bcopy(bufferPtr, nbp, index);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4395
	    bufferPtr = nbp;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4396
	    bufferPtr[index] = '\0';
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4397
	    buffer = newBuffer;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4398
	    fastFlag = 0;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4399
	    currSize = currSize * 2;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4400
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4401
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4402
	if (!fastFlag) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4403
	    /*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4404
	     * old buffer may have moved (interrupt while reading)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4405
	     * - refetch pointer
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4406
	     */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4407
	    bufferPtr = __stringVal(buffer);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4408
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4409
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4410
	/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4411
	 * filter out cr-nl; make it nl
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4412
	 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4413
	if (c == '\n') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4414
	    haveNL = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4415
	    if (index > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4416
		if (bufferPtr[index-1] == '\r') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4417
		    index--;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4418
		}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4419
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4420
	} else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4421
	    if (c == '\r') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4422
		haveCR = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4423
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4424
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4425
	bufferPtr[index++] = c;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4426
	if (ret <= 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4427
	    if (ret == 0)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4428
		break;          /* End of chunk reached */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4429
	    goto err;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4430
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4431
	nread++;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4432
	atBeginOfLine = (c == '\n');
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4433
	c = peekC;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4434
    }
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4435
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4436
    /*
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4437
     * care for CR-limited files.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4438
     * Replace CR's by NL's
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4439
     */
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4440
    if (!haveNL && haveCR) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4441
	int i;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4442
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4443
	for (i=index-1; i>=0; i--) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4444
	    if (bufferPtr[i] == '\r') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4445
		bufferPtr[i] = '\n';
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4446
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4447
	}
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4448
    }
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4449
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4450
    /*
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4451
     * 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
  4452
     * 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
  4453
     * 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
  4454
     * fast (C) buffer or from real (ST) buffer.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4455
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4456
    if (fastFlag) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4457
	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
  4458
    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4459
	retVal = __MKSTRING_ST_L(buffer, index);
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4460
    }
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4461
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  4462
err: ;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4463
    if (ret <= 0) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4464
	if (ret == 0)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4465
	    __INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4466
	else /* ret < 0 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4467
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4468
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4469
    if (__INST(position) != nil) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4470
	__INST(position) = __MKSMALLINT(__intVal(__INST(position)) + nread);
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4471
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4472
%}.
370
claus
parents: 369
diff changeset
  4473
    retVal isNil ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4474
	"/
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4475
	"/ arrive here with retVal==nil either on error or premature EOF
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4476
	"/ or if running out of malloc-memory
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4477
	"/
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4478
	hitEOF ifTrue:[^ self pastEnd].
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4479
	lastErrorNumber notNil ifTrue:[^ self readError].
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4480
	outOfMemory == true ifTrue:[
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4481
	    "
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4482
	     buffer memory allocation failed.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4483
	     When we arrive here, there was no memory available for the
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4484
	     chunk. (seems to be too big of a chunk ...)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4485
	     Bad luck - you should increase the ulimit and/or swap space on your machine.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4486
	    "
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4487
	    ^ ObjectMemory allocationFailureSignal raise.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4488
	]
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4489
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4490
    ^ retVal
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4491
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4492
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4493
nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4494
    "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
  4495
     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
  4496
     the element after anObject.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4497
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4498
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4499
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4500
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4501
    int ret, peekValue;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4502
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4503
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4504
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4505
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4506
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4507
	&& (__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
  4508
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4509
	if ((__INST(binary) == true) && __isSmallInteger(anObject)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4510
	    peekValue = __intVal(anObject) & 0xFF;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4511
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4512
	    if ((__INST(binary) != true) && __isCharacter(anObject)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4513
		peekValue = __intVal(_characterVal(anObject)) & 0xFF;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4514
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4515
		peekValue = -1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4516
	    }   
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4517
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4518
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4519
	if (peekValue >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4520
	    int _buffered;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4521
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4522
	    __INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4523
	    f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4524
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4525
	    if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4526
		__READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4527
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4528
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4529
	    for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4530
		__READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4531
		if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4532
		    if (ret < 0)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4533
			__INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4534
		    else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4535
			__INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4536
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4537
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4538
		if (c == peekValue) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4539
		    RETURN (anObject);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4540
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4541
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4542
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4543
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4544
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4545
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4546
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4547
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4548
    ^ super nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4549
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4550
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4551
peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4552
    "return true and move past next element, if next == something.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4553
     Otherwise, stay and return false. False is also returned
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4554
     when EOF is encountered.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4555
     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
  4556
     text mode; only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4557
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4558
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4559
    FILEPOINTER f;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4560
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4561
    int ret, peekValue, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4562
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4563
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4564
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4565
    if (((fp = __INST(filePointer)) != nil)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4566
	&& (__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
  4567
    ) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4568
	if (__INST(binary) == true) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4569
	    if (__isSmallInteger(anObject)) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4570
		peekValue = __intVal(anObject) & 0xFF;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4571
	    } else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4572
		goto bad;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4573
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4574
	} else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4575
	    if (__isCharacter(anObject)) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4576
		peekValue = __intVal(_characterVal(anObject)) & 0xFF;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4577
	    } else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4578
		goto bad;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4579
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4580
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4581
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4582
	f = __FILEVal(fp);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4583
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4584
	_buffered = (__INST(buffered) == true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4585
	if (_buffered) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4586
	    __READING__(f)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4587
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4588
	__READBYTE__(ret, f, &c, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4589
	if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4590
	    if (c == peekValue) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4591
		OBJ pos;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4592
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4593
		if ((pos = __INST(position)) != nil) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4594
		    __INST(position) = __MKSMALLINT(__intVal(pos) + 1);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4595
		}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4596
		RETURN (true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4597
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4598
	    __UNGETC__(c, f, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4599
	    RETURN (false);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4600
	} 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4601
	if (ret < 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4602
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4603
	} else /* ret == 0 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4604
	    __INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4605
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4606
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4607
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4608
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4609
    hitEOF ifTrue:[self pastEnd. ^ false].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4610
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4611
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4612
    ^ super peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4613
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4614
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4615
skipLine
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4616
    "read the next line (characters up to newline) skip only;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4617
     return nil if EOF reached, self otherwise. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4618
     Not allowed in binary mode."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4619
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4620
%{  /* STACK:2000 */
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4621
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4622
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4623
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4624
    int ret, _buffered;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4625
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4626
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4627
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4628
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4629
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4630
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4631
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4632
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4633
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4634
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4635
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4636
	for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4637
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4638
	    if (ret > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4639
		if (c == '\n')
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4640
		    RETURN(self) 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4641
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4642
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4643
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4644
	if (ret < 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4645
	    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4646
	} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4647
	    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4648
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4649
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4650
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4651
    hitEOF ifTrue:[^ self pastEnd].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4652
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4653
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4654
    binary ifTrue:[self errorBinary. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4655
    self errorWriteOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4656
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4657
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4658
skipSeparators
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4659
    "skip all whitespace; next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4660
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4661
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4662
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4663
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4664
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4665
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4666
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4667
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4668
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4669
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4670
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4671
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4672
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4673
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4674
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4675
	_buffered = (__INST(buffered) == true);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4676
	if (_buffered) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4677
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4678
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4679
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4680
	while (1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4681
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4682
	    if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4683
		if (ret < 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4684
		    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4685
		} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4686
		    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4687
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4688
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4689
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4690
	    switch (c) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4691
		case ' ':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4692
		case '\t':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4693
		case '\n':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4694
		case '\r':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4695
		case '\b':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4696
		case '\f':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4697
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4698
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4699
		default:
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4700
		    __UNGETC__(c, f, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4701
		    RETURN ( __MKCHARACTER(c & 0xFF) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4702
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4703
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4704
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4705
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4706
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4707
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4708
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4709
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4710
    ^ self errorBinary.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4711
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4712
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4713
skipSeparatorsExceptCR
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4714
    "skip all whitespace but no newlines;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4715
     next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4716
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4717
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4718
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4719
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4720
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4721
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4722
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4723
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4724
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4725
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4726
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4727
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4728
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4729
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4730
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4731
	_buffered = (__INST(buffered) == true);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4732
	if (_buffered) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4733
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4734
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4735
	while (1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4736
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4737
	    if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4738
		if (ret < 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4739
		    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4740
		} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4741
		    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4742
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4743
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4744
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4745
	    switch (c) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4746
		case ' ':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4747
		case '\t':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4748
		case '\b':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4749
		case '\f':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4750
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4751
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4752
		default:
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4753
		    __UNGETC__(c, f, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4754
		    RETURN ( __MKCHARACTER(c & 0xFF) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4755
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4756
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4757
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4758
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4759
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4760
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4761
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4762
    (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
  4763
    ^ self errorBinary.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4764
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4765
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4766
skipThrough:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4767
    "skip all characters up-to and including aCharacter. Return the receiver if
671
53de87163ad5 spelling
Claus Gittinger <cg@exept.de>
parents: 668
diff changeset
  4768
     skip was successful, otherwise (i.e. if not found) return nil.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4769
     The next read operation will return the character after aCharacter.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4770
     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
  4771
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4772
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4773
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4774
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4775
    REGISTER int cSearch;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4776
    unsigned char c;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4777
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4778
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4779
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4780
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4781
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4782
	&& (__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
  4783
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4784
	if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4785
	    /* searched for object must be a smallInteger */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4786
	    if (! __isSmallInteger(aCharacter)) goto badArgument;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4787
	    cSearch = __intVal(aCharacter);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4788
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4789
	    /* searched for object must be a character */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4790
	    if (! __isCharacter(aCharacter)) goto badArgument;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4791
	    cSearch = __intVal(_characterVal(aCharacter));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4792
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4793
	/* Q: should we just say: "not found" ? */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4794
	if ((cSearch < 0) || (cSearch > 255)) goto badArgument;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4795
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4796
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4797
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4798
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4799
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4800
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4801
	while (1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4802
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4803
	    if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4804
		if (ret < 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4805
		    __INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4806
		} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4807
		    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4808
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4809
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4810
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4811
	    if (c == cSearch) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4812
		RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4813
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4814
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4815
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4816
badArgument: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4817
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4818
    hitEOF ifTrue:[^ self pastEnd].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4819
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4820
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4821
    (mode == #writeonly) ifTrue:[self errorWriteOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4822
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4823
     argument must be integer/character in binary mode, 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4824
     character in text mode
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4825
    "
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4826
    self error:'invalid argument'.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4827
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4828
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4829
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4830
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4831
     s skipThrough:$=.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4832
     s next:10
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4833
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4834
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4835
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4836
skipToAll:aString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4837
    "skip for the sequence given by the argument, aCollection;
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4838
     return nil if not found, self otherwise. 
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4839
     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
  4840
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4841
    |oldPos|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4842
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4843
    oldPos := self position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4844
    (self skipThroughAll:aString) isNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4845
	"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4846
	 restore position
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4847
	"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4848
	self position:oldPos.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4849
	^ nil
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4850
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4851
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4852
     position before match-string
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4853
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4854
    self position:(self position - aString size).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4855
    ^ self
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4856
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4857
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4858
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4859
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4860
     s skipToAll:'are'.
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4861
     s next:10 
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4862
    "
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4863
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4864
    "Modified: 26.6.1996 / 09:22:05 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4865
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4866
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4867
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4868
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4869
atEnd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4870
    "return true, if position is at end"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4871
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4872
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4873
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4874
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4875
    char c;
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  4876
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4877
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4878
    if (__INST(hitEOF) == true) {
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4879
	RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4880
    }
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4881
    if (__bothSmallInteger(__INST(position), __INST(readLimit))) {
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4882
	if (__intVal(__INST(position)) > __intVal(__INST(readLimit))) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4883
	    RETURN (true);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4884
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4885
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4886
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4887
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4888
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4889
    if ((fp = __INST(filePointer)) != nil) {
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4890
	f = __FILEVal(fp);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4891
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4892
	if (_buffered = (__INST(buffered) == true)) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4893
	    __READING__(f);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4894
	} else {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4895
	    if (__INST(readAhead) != nil) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4896
		RETURN (false);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4897
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4898
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4899
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4900
	/*
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4901
	 * read ahead ...
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4902
	 */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4903
	do {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4904
	    __BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4905
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4906
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4907
	    errno = 0;
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  4908
#endif
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4909
	    __READBYTE__(ret, f, &c, _buffered);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4910
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4911
	    __END_INTERRUPTABLE__
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4912
	} while ((ret < 0) && (errno == EINTR));
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4913
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4914
#if defined(WIN32) && defined(EPIPE)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4915
	if ((ret < 0) && (errno == EPIPE)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4916
	    ret = 0;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4917
	    errno = 0;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4918
	}
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4919
#endif
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4920
	if (ret > 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4921
	    __UNGETC__(c&0xff, f, _buffered);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4922
	    RETURN (false);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4923
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4924
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4925
	if (ret == 0) { 
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4926
	    __INST(hitEOF) = true;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4927
	    RETURN (true);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4928
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4929
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4930
	/* ret < 0 */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4931
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4932
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4933
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4934
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4935
    ^ self errorNotOpen
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4936
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4937
    "Modified: / 30.10.1998 / 20:16:06 / cg"
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4938
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4939
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4940
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4941
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4942
    "return true, if any data is available for reading (i.e.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4943
     a read operation will not block the smalltalk process), false otherwise."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4944
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4945
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4946
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  4947
    readAhead notNil ifTrue:[^ true].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4948
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4949
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4950
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4951
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4952
    ^ OperatingSystem readCheck:fd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4953
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4954
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4955
     |pipe|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4956
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4957
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4958
     pipe canReadWithoutBlocking ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4959
	 Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4960
     ] ifFalse:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4961
	 Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4962
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4963
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4964
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  4965
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  4966
    "Modified: 25.9.1997 / 13:08:45 / stefan"
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4969
canWriteWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4970
    "return true, if data can be written into the stream 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4971
     (i.e. a write operation will not block the smalltalk process)."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4972
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4973
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4974
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4975
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4976
    mode == #readonly ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4977
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4978
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4979
    ^ OperatingSystem writeCheck:fd
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4980
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4981
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4982
numAvailable
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4983
    "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
  4984
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4985
    |fd|
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4986
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4987
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4988
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4989
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4990
    fd := self fileDescriptor.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4991
    ^ OperatingSystem numAvailableForReadOn:fd.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4992
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4993
"/    self atEnd ifTrue:[^ 0].
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4994
"/    self canReadWithoutBlocking ifTrue:[
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4995
"/        ^ 1
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4996
"/    ].
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4997
"/    ^ 0
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4998
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  4999
    "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
  5000
    "Modified: / 4.2.1998 / 17:31:11 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5001
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5002
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5003
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5004
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5005
readWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5006
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5007
     becomes ready for reading. If data is already available,
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5008
     return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5009
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5010
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5011
    self readWaitWithTimeoutMs:nil
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5012
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5013
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5014
readWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5015
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5016
    ^ self readWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5017
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5018
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5019
readWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5020
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5021
     becomes ready for reading or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5022
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5023
     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
  5024
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5025
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5026
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5027
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5028
    timeout notNil ifTrue:[
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5029
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5030
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5031
    ^ self readWaitWithTimeoutMs:ms
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5032
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5033
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5034
readWaitWithTimeoutMs:timeout 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5035
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5036
     becomes ready for reading or a timeout (in milliseconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5037
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5038
     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
  5039
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5040
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5041
    |fd inputSema hasData wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5042
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5043
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5044
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5045
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5046
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5047
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5048
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5049
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5050
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5051
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5052
    hasData := OperatingSystem readCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5053
    hasData ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5054
	inputSema := Semaphore new name:'readWait'.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5055
	[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5056
	    timeout notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5057
		Processor signal:inputSema afterMilliseconds:timeout 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5058
	    ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5059
	    Processor signal:inputSema onInput:fd.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5060
	    Processor activeProcess state:#ioWait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5061
	    inputSema wait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5062
	    Processor disableSemaphore:inputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5063
	    hasData := OperatingSystem readCheck:fd
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5064
	] valueOnUnwindDo:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5065
	    Processor disableSemaphore:inputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5066
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5067
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5068
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5069
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5070
    ^ hasData not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5071
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5072
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5073
readWriteWait
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5074
    "suspend the current process, until the receiver
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5075
     becomes ready for writing or reading.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5076
     Return immediate if the receiver is already ready. 
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5077
     The other threads are not affected by the wait.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5078
     This is actually only used with sockets, to wait for a connect to
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5079
     be finished."
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5080
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5081
    self readWriteWaitWithTimeoutMs:nil
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5082
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5083
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5084
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5085
    "suspend the current process, until the receiver
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5086
     becomes ready for reading or writing or a timeout (in seconds) expired. 
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5087
     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
  5088
     Return immediate if the receiver is already ready. 
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5089
     The other threads are not affected by the wait.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5090
     This is actually only used with sockets, to wait for a connect to
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5091
     be finished."
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5092
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5093
    |fd sema canReadWrite wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5094
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5095
    filePointer isNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5096
	^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5097
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5098
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5099
    fd := self fileDescriptor.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5100
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5101
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5102
    wasBlocked := OperatingSystem blockInterrupts.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5103
    canReadWrite := OperatingSystem readWriteCheck:fd.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5104
    canReadWrite ifFalse:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5105
	sema := Semaphore new name:'readWriteWait'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5106
	[
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5107
	    timeout notNil ifTrue:[
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5108
		Processor signal:sema afterMilliseconds:timeout
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5109
	    ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5110
	    Processor signal:sema onOutput:fd.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5111
	    Processor signal:sema onInput:fd.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5112
	    Processor activeProcess state:#ioWait.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5113
	    sema wait.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5114
	    Processor disableSemaphore:sema.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5115
	    canReadWrite := OperatingSystem readWriteCheck:fd
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5116
	] valueOnUnwindDo:[
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5117
	    Processor disableSemaphore:sema.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5118
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5119
	]
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5120
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5121
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5122
    ^ canReadWrite not
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5123
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5124
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5125
writeWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5126
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5127
     becomes ready for writing.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5128
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5129
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5130
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5131
    self writeWaitWithTimeoutMs:nil
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5132
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5133
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5134
writeWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5135
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5136
    ^ self writeWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5137
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5138
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5139
writeWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5140
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5141
     becomes ready for writing or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5142
     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
  5143
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5144
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5145
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5146
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5147
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5148
    timeout notNil ifTrue:[
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5149
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5150
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5151
    ^ self writeWaitWithTimeoutMs:ms
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5152
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5153
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5154
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5155
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5156
     becomes ready for writing or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5157
     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
  5158
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5159
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5160
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5161
    |fd outputSema canWrite wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5162
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5163
    filePointer isNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5164
	^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5165
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5166
    mode == #readonly ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5167
	^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5168
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5169
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5170
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5171
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5172
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5173
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5174
    canWrite := OperatingSystem writeCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5175
    canWrite ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5176
	outputSema := Semaphore new name:'writeWait'.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5177
	[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5178
	    timeout notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5179
		Processor signal:outputSema afterMilliseconds:timeout
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5180
	    ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5181
	    Processor signal:outputSema onOutput:fd.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5182
	    Processor activeProcess state:#ioWait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5183
	    outputSema wait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5184
	    Processor disableSemaphore:outputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5185
	    canWrite := OperatingSystem writeCheck:fd
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5186
	] valueOnUnwindDo:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5187
	    Processor disableSemaphore:outputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5188
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5189
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5190
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5191
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5192
    ^ canWrite not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5193
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5194
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5195
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5196
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5197
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5198
    "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
  5199
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5200
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5201
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5202
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5203
    int len, cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5204
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5205
    char *cp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5206
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5207
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5208
    if (((fp = __INST(filePointer)) != nil)
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5209
	&& (__INST(mode) != @symbol(readonly))
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5210
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5211
    ) {
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5212
	f = __FILEVal(fp);
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5213
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5214
	if (_buffered = (__INST(buffered) == true)) { 
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5215
	    __WRITING__(f)
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5216
	}
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5217
	{
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5218
	    OBJ mode = __INST(eolMode);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5219
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5220
	    if (mode == @symbol(cr)) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5221
		cp = "\r"; len = 1;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5222
	    } else if (mode == @symbol(crlf)) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5223
		cp = "\r\n"; len = 2;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5224
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5225
		cp = "\n"; len = 1;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5226
	    }
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5227
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5228
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5229
	if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5230
	    cnt = fwrite(cp, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5231
	} else 
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5232
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5233
	{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5234
	    __WRITEBYTES__(cnt, f, cp, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5235
	}
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5236
	if (cnt == len) {
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5237
	    if (__INST(position) != nil) {
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5238
		__INST(position) = __MKSMALLINT(__intVal(__INST(position)) + len);
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5239
	    }
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5240
	    RETURN ( self );
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5241
	}
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5242
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
612
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
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5245
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5246
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5247
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5248
    self errorBinary
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5249
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5250
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5251
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5252
    "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
  5253
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5254
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5255
    OBJ fp;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5256
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5257
    __INST(lastErrorNumber) = nil;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5258
    if ((fp = __INST(filePointer)) != nil) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5259
	if (__INST(mode) != @symbol(readonly)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5260
	    if (__INST(buffered) == true) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5261
		FILEPOINTER f = __FILEVal(fp);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5262
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5263
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5264
		    fflush(f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5265
		} else 
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5266
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5267
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5268
		    __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5269
		    FFLUSH(f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5270
		    __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5271
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5272
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5273
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5274
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5275
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5276
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5277
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5278
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5279
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5280
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5281
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5282
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5283
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5284
    char c;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5285
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5286
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5287
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5288
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5289
    if (((fp = __INST(filePointer)) != nil) 
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5290
	&& (__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
  5291
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5292
	if (__INST(binary) != true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5293
	    if (__isCharacter(aCharacter)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5294
		c = __intVal(__characterVal(aCharacter)) & 0xFF;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5295
    doWrite:
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5296
		f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5297
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5298
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5299
		if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5300
		    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5301
		}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5302
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5303
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5304
		    cnt = fwrite(&c, 1, 1, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5305
		} else 
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5306
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5307
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5308
		    __WRITEBYTE__(cnt, f, &c, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5309
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5310
		if (cnt == 1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5311
		    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5312
		    if (pos != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5313
			__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5314
		    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5315
		    RETURN ( self );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5316
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5317
		__INST(lastErrorNumber) = __MKSMALLINT(errno);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5318
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5319
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5320
	    if (__isSmallInteger(aCharacter)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5321
		c = __intVal(aCharacter);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5322
		goto doWrite;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5323
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5324
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5325
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5326
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5327
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5328
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5329
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5330
    binary ifFalse:[self argumentMustBeCharacter. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5331
    self argumentMustBeInteger.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5332
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5333
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5334
nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5335
    "write all elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5336
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5337
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5338
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5339
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5340
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5341
    int len, cnt;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5342
    OBJ pos, fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5343
    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
  5344
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5345
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5346
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5347
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5348
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5349
	&& (__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
  5350
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5351
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5352
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5353
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5354
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5355
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5356
	if (__isString(aCollection) || __isSymbol(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5357
	    len = __stringSize(aCollection);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5358
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5359
	    if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5360
		cnt = fwrite(__stringVal(aCollection), 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5361
	    } else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5362
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5363
	    {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5364
		o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5365
		__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5366
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5367
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5368
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5369
		int offs;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5370
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5371
		if (__isByteArray(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5372
		    offs = 0;
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5373
		    len = __byteArraySize(aCollection);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5374
		} else if (__isBytes(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5375
		    offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5376
		    len = __byteArraySize(aCollection) - offs;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5377
		} else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5378
		    goto out;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5379
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5380
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5381
		    cnt = fwrite(__stringVal(aCollection), 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5382
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5383
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5384
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5385
		    o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element) - (char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5386
		    o_offs += offs;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5387
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5388
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5389
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5390
		goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5391
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5392
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5393
	if (cnt == len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5394
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5395
	    if (pos != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5396
		__INST(position) = __MKSMALLINT(__intVal(pos) + len);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5397
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5398
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5399
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5400
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5401
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5402
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5403
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5404
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5405
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5406
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5407
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5408
    ^ super nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5409
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5410
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5411
nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5412
    "write a range of elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5413
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5414
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5415
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5416
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5417
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5418
    int offs, len, cnt, iStart, iStop, _buffered;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5419
    OBJ fp, pos;
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5420
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5421
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5422
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5423
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5424
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5425
	&& __bothSmallInteger(start, stop)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5426
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5427
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5428
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5429
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5430
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5431
	iStart = __intVal(start);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5432
	iStop = __intVal(stop);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5433
	if ((iStart < 1) || (iStop < iStart)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5434
	    RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5435
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5436
	if (__isString(aCollection) || __isSymbol(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5437
	    len = __stringSize(aCollection);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5438
	    if (iStop > len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5439
		RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5440
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5441
	    if (iStop > len)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5442
		iStop = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5443
	    len = iStop - iStart + 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5444
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5445
	    if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5446
		cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5447
	    } else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5448
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5449
	    {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5450
		o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5451
		__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs+iStart-1, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5452
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5453
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5454
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5455
		int offs;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5456
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5457
		if (__isByteArray(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5458
		    offs = 0;
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5459
		    len = __byteArraySize(aCollection);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5460
		} else if (__isBytes(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5461
		    offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5462
		    len = __byteArraySize(aCollection) - offs;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5463
		} else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5464
		    goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5465
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5466
		if (iStop > len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5467
		    RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5468
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5469
		if (iStop > len)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5470
		    iStop = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5471
		len = iStop - iStart + 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5472
		offs += iStart - 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5473
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5474
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5475
		    cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5476
		} else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5477
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5478
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5479
		    o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element)-(char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5480
		    __WRITEBYTES_OBJ__(cnt, f,  aCollection, o_offs+offs, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5481
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5482
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5483
		goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5484
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5485
	if (cnt == len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5486
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5487
	    if (pos != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5488
		__INST(position) = __MKSMALLINT(__intVal(pos) + len);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5489
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5490
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5491
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5492
	__INST(lastErrorNumber) = __MKSMALLINT(errno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5493
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5494
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5495
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5496
    lastErrorNumber notNil ifTrue:[^ self writeError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5497
    ^ super nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5498
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5499
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  5500
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5501
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5502
version
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  5503
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.203 1999-10-18 09:12:22 cg Exp $'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5504
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5505
ExternalStream initialize!