ExternalStream.st
author Claus Gittinger <cg@exept.de>
Mon, 22 May 2000 13:11:09 +0200
changeset 5394 f877659e09f7
parent 5323 f4c3a230f42f
child 5414 8557e4e71e51
permissions -rw-r--r--
got nextChunk from subclass
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
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
    19
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
    20
		FileOpenTrace'
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    21
	poolDictionaries:''
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    22
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    24
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    25
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    26
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
    27
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    28
#include <stdio.h>
437
claus
parents: 436
diff changeset
    29
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    30
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
    31
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    32
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    33
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    34
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    35
#endif
437
claus
parents: 436
diff changeset
    36
10
claus
parents: 5
diff changeset
    37
#include <errno.h>
437
claus
parents: 436
diff changeset
    38
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    39
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    40
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    41
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    42
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    43
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    44
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    45
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    46
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    47
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    48
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    49
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    50
#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
    51
# 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
    52
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    53
#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
    54
# 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
    55
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    56
#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
    57
# 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
    58
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    59
4093
1821420b41d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    60
#if defined(__VMS__) || defined(sparc)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    61
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    62
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    63
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    64
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    65
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    66
#ifdef LATER
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    67
#define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    68
#define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    69
#define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    70
#else
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    71
#define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    72
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    73
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    74
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    75
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    76
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    77
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    78
#ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    79
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    80
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    81
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    82
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    83
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    84
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    85
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    87
# define __END_INTERRUPTABLE__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    88
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    89
# ifdef i386
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    90
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    91
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    92
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    93
# undef INT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    94
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    95
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    96
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    98
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
# undef Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   102
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   104
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   105
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   106
# define NOMINMAX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   107
//#d efine NOOPENFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   108
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   109
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   110
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   111
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   112
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   113
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   114
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   115
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
# include <windows.h>
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
# include <winsock.h> /* */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   118
# if !defined(__BORLANDC__)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   119
#  define stat _stat
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   120
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   121
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   123
#  define Array __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   124
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
# ifdef __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
#  define Number __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   127
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
# ifdef __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
#  define Method __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
# ifdef __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
# define INT int
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   145
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   146
#else /* use STDIO */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   147
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   148
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   150
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   151
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   152
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   153
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   154
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   155
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   156
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   157
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   158
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   159
     && ((char *)(buf) < __survEndPtr)) { \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   160
	__fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   161
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   162
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   163
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   164
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   165
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   166
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   167
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   168
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   169
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   170
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   171
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   172
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   173
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   174
# 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
   175
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   176
# 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
   177
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   178
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   179
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   180
//# define __HANDLEVal(o)         (HFILE)(__externalAddressVal(o))
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   181
int _rtl_read();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   182
int _rtl_write();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   183
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   184
# ifdef __BORLANDC__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   185
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   186
      { int __res;\
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   187
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   188
	  (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   189
	else \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   190
	  (ret) = __STX_C_CALL3((void*)_rtl_read,(void *)fileno(f), (void *)(cp), (void *)(n));\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   191
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   192
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   193
      { int __res;\
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   194
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   195
	  (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   196
	else \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   197
	  (ret) = __STX_C_CALL3((void*)_rtl_write,(void *)fileno(f), (void *)(cp), (void *)(n));\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   198
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   199
# else /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   200
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   201
      { int __res;\
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   202
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   203
	  (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   204
	else { \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   205
	  (ret) = __STX_API_CALL5((void*)ReadFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void *)0);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   206
	  if (ret) \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   207
	    ret = __res; \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   208
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   209
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   210
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   211
      { int __res;\
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   212
	if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   213
	  (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   214
	else {\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   215
	  (ret) = __STX_API_CALL5((void*)WriteFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void*)0);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   216
	  if (ret) \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   217
	    ret = __res; \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   218
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   219
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   220
# endif /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   221
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   222
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   223
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   224
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   225
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   226
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   227
//#define __READING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   228
//#define __WRITING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   229
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   230
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   231
     && (__INST(mode) == @symbol(readwrite))) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   232
	__INST(didWrite) = false;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   233
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   234
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   235
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   236
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   237
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   238
     && (__INST(mode) == @symbol(readwrite))) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   239
	__INST(didWrite) = true;                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   240
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   241
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   242
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   243
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   244
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   245
	ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   246
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   247
      __INST(readAhead) = __MKSMALLINT((c));            \
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   250
# define __READBYTE__(ret, f, buf, isBuffered)          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   251
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   252
	for (;;) {                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   253
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   254
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   255
	    if ((ret) >= 0) {                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   256
		*(buf) = (ret);                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   257
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   258
	    } else if (ferror(f)) {                     \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   259
		if (__threadErrno == EINTR) {                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   260
		    clearerr(f);                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   261
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   262
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   263
	    } else                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   264
		(ret) = 0;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   265
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   266
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   267
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   268
	OBJ rA = __INST(readAhead);                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   269
	if (rA != nil) {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   270
	    *(buf) = (char)__intVal(rA);                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   271
	    __INST(readAhead) = nil;                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   272
	    (ret) = 1;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   273
	} else {                                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   274
	    for (;;) {                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   275
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   276
		READ(ret,f, buf, 1);                    \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   277
		if ((ret) >= 0 || __threadErrno != EINTR)       \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   278
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   279
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   280
	}                                               \
4913
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
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   284
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   285
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   286
   */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   287
# define __READBYTES__(ret, f, buf, cnt, isBuffered)    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   288
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   289
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   290
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   291
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   292
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   293
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   294
	    if ((ret) < 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   295
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   296
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   297
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   298
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   299
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   300
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   301
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   302
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   303
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   304
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   305
	    (buf)[__offs++] = (ret);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   306
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   307
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   308
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   309
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   310
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   311
							\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   312
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   313
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   314
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   315
		(buf)[__offs] = __intVal(rA);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   316
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   317
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   318
	    } else {                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   319
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   320
		READ(ret,f, (buf)+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   321
		if ((ret) <= 0) {                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   322
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   323
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   324
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   325
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   326
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   327
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   328
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   329
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   330
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   331
	    (ret) = __offs;                             \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   334
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   335
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   336
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   337
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   338
#define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   339
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   340
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   341
    int oldFlags;                                       \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   342
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   343
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   344
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   345
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   346
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   347
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   348
	    if ((ret) < 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   349
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   350
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   351
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   352
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   353
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   354
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   355
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   356
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   357
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   358
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   359
	    (buf)[__offs++] = (ret);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   360
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   361
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   362
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   363
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   364
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   365
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   366
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   367
		(buf)[__offs] = __intVal(rA);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   368
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   369
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   370
		__offs += (ret);                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   371
		continue;                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   372
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   373
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   374
	    {                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   375
	      int res;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   376
	      if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   377
		  if (res > 0) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   378
		      if (res > ((cnt)-__offs))         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   379
			res = (cnt)-__offs;             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   380
		      READ(ret,f, (buf)+__offs, res);   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   381
		  } else {                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   382
		      (ret) = 0;                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   383
		  }                                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   384
	      } else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   385
		  if (res > 0) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   386
		      if (res > ((cnt)-__offs))         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   387
			res = (cnt)-__offs;             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   388
		      READ(ret,f, (buf)+__offs, res);   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   389
		  } else                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   390
		      ret = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   391
	      } else {                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   392
		  READ(ret,f, (buf)+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   393
	      }                                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   394
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   395
	    if ((ret) < 0) {                            \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   396
		if (__threadErrno == EINTR) {                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   397
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   398
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   399
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   400
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   401
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   402
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   403
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   404
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   405
	    (ret) = __offs;                             \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   409
# 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
   410
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   411
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   412
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   413
    char *buf = (char *)(obj);                          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   414
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   415
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   416
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   417
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   418
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   419
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   420
	    if ((ret) < 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   421
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   422
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   423
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   424
			/* refetch */                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   425
			buf = (char *)(obj);            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   426
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   427
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   428
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   429
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   430
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   431
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   432
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   433
	    (buf)[__ooffs+__offs] = (ret);              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   434
	    __offs++;                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   435
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   436
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   437
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   438
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   439
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   440
	    char __buf[1024];                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   441
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   442
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   443
		(buf)[__ooffs+__offs] = __intVal(rA);   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   444
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   445
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   446
	    } else {                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   447
		int l;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   448
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   449
		l = (cnt)-__offs;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   450
		if ( l > 1024)                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   451
		  l = 1024;                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   452
		READ(ret,f, __buf, l);                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   453
		if ((ret) <= 0) {                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   454
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   455
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   456
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   457
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   458
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   459
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   460
	    /* refetch */                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   461
	    buf = (volatile char *)(obj);               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   462
	    memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   463
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   464
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   465
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   466
	    (ret) = __offs;                             \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   470
# 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
   471
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   472
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   473
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   474
    char *buf = (char *)(obj);                       \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   475
						     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   476
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   477
    if (isBuffered) {                                \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   478
	while (__offs < (cnt)) {                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   479
	    CLEAR_ERRNO;                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   480
	    (ret) = getc(f);                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   481
	    if ((ret) < 0) {                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   482
		if (ferror(f)) {                     \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   483
		    if (__threadErrno == EINTR) {            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   484
			clearerr(f);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   485
			/* refetch */                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   486
			buf = (char *)(obj);         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   487
			continue;                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   488
		    }                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   489
		} else {                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   490
		    (ret) = 0;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   491
		}                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   492
		break;                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   493
	    }                                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   494
	    (buf)[__ooffs+__offs] = (ret);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   495
	    __offs++;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   496
	}                                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   497
	if (__offs > 0)                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   498
	    (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   499
    } else {                                         \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   500
	while (__offs < (cnt)) {                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   501
	    char __buf[1024];                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   502
	    OBJ rA = __INST(readAhead);              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   503
	    if (rA != nil) {                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   504
		(buf)[__ooffs+__offs] = __intVal(rA);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   505
		__INST(readAhead) = nil;             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   506
		(ret) = 1;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   507
		__offs += (ret);                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   508
		continue;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   509
	    }                                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   510
	    {                                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   511
		int l;                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   512
		int res;                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   513
		CLEAR_ERRNO;                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   514
		l = (cnt)-__offs;                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   515
		if ( l > 1024)                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   516
		    l = 1024;                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   517
		if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   518
		if (res > 0) {                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   519
			if (res > l)                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   520
			    res = l;                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   521
			READ(ret,f, __buf, res);     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   522
		    } else {                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   523
			(ret) = 0;                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   524
		    }                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   525
		} else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   526
		    if (res > 0) {                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   527
			if (res > l)                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   528
			    res = l;                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   529
			READ(ret,f, __buf, res);     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   530
		    } else                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   531
			ret = 0;                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   532
		} else {                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   533
		    READ(ret,f, __buf, l);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   534
		}                                    \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   535
		if ((ret) < 0 && __threadErrno == EINTR) {   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   536
		    continue;                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   537
		}                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   538
	    }                                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   539
	    /* refetch */                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   540
	    buf = (volatile char *)(obj);               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   541
	    memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   542
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   543
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   544
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   545
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   546
	    (ret) = __offs;                             \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   550
# define __WRITEBYTE__(ret, f, buf, isBuffered)         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   551
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   552
	for (;;) {                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   553
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   554
	    ret = putc(*(buf), f);                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   555
	    if ((ret) >= 0) {                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   556
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   557
	    } else if (ferror(f)) {                     \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   558
		if (__threadErrno == EINTR) {                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   559
		    clearerr(f);                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   560
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   561
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   562
	    } else                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   563
		(ret) = 0;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   564
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   565
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   566
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   567
	for (;;) {                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   568
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   569
	    WRITE(ret,f, buf, 1);                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   570
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   571
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   572
	}                                               \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   575
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   576
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   577
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   578
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   579
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   580
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   581
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   582
	    if ((ret) <= 0) {                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   583
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   584
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   585
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   586
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   587
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   588
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   589
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   590
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   591
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   592
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   593
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   594
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   595
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   596
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   597
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   598
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   599
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   600
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   601
	    WRITE(ret,f, (buf)+__offs, (cnt)-__offs);   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   602
	    if (ret <= 0) {                             \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   603
		if (ret < 0 && __threadErrno == EINTR) {        \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   604
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   605
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   606
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   607
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   608
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   609
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   610
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   611
	    (ret) = __offs;                             \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   614
# 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
   615
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   616
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   617
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   618
    char *buf = (char *)(obj);                          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   619
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   620
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   621
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   622
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   623
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   624
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   625
	    if ((ret) <= 0) {                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   626
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   627
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   628
			/* refetch */                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   629
			buf = (char *)(obj);            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   630
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   631
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   632
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   633
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   634
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   635
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   636
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   637
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   638
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   639
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   640
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   641
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   642
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   643
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   644
	    char __buf[1024];                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   645
	    int l;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   646
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   647
	    l = (cnt)-__offs;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   648
	    if ( l > 1024)                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   649
	      l = 1024;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   650
	    /* refetch */                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   651
	    buf = (volatile char *)(obj);               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   652
	    memcpy(__buf,(buf)+__ooffs+__offs,l);       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   653
	    WRITE(ret,f, __buf, l);                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   654
	    if (ret <= 0) {                             \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   655
		if (ret < 0 && __threadErrno == EINTR) {        \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   656
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   657
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   658
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   659
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   660
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   661
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   662
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   663
	    (ret) = __offs;                             \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   667
#else /* no WIN32 */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   668
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   669
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   670
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   671
     && (__INST(mode) == @symbol(readwrite))) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   672
	__INST(didWrite) = false;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   673
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   674
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   675
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   676
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   677
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   678
     && (__INST(mode) == @symbol(readwrite))) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   679
	__INST(didWrite) = true;                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   680
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   684
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   685
#  define __UNGETC__(c, f, isBuffered)                  \
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   686
    __INST(readAhead) = __MKSMALLINT((c));
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   687
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   688
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   689
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   690
	ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   691
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   692
	__INST(readAhead) = __MKSMALLINT((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   693
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   694
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   695
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   696
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   697
#  define __READBYTE__(ret, f, buf, isBuffered)         \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   698
    {                                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   699
	OBJ rA = __INST(readAhead);                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   700
	if (rA != nil) {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   701
	    *(buf) = __intVal(rA);                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   702
	    DEBUGBUFFER(buf);                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   703
	    __INST(readAhead) = nil;                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   704
	    (ret) = 1;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   705
	} else {                                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   706
	    for (;;) {                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   707
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   708
		(ret) = READ(f, buf, 1);                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   709
		DEBUGBUFFER(buf);                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   710
		if ((ret) >= 0 || __threadErrno != EINTR)       \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   711
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   712
		__HANDLE_INTERRUPTS__;                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   713
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   714
	}                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   715
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   716
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   717
#  define __READBYTE__(ret, f, buf, isBuffered)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   718
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   719
	for (;;) {                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   720
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   721
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   722
	    if ((ret) >= 0) {                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   723
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   724
		*(buf) = (ret);                         \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   725
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   726
	    } else if (ferror(f)) {                     \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   727
		if (__threadErrno == EINTR) {                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   728
		    __HANDLE_INTERRUPTS__;              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   729
		    clearerr(f);                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   730
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   731
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   732
	    } else                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   733
		(ret) = 0;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   734
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   735
	}                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   736
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   737
	OBJ rA = __INST(readAhead);                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   738
	if (rA != nil) {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   739
	    *(buf) = __intVal(rA);                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   740
	    DEBUGBUFFER(buf);                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   741
	    __INST(readAhead) = nil;                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   742
	    (ret) = 1;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   743
	} else {                                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   744
	    for (;;) {                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   745
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   746
		(ret) = read(fileno(f), buf, 1);        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   747
		DEBUGBUFFER(buf);                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   748
		if ((ret) >= 0 || __threadErrno != EINTR)       \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   749
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   750
		__HANDLE_INTERRUPTS__;                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   751
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   752
	}                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   753
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   754
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   755
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   756
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   757
 * 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
   758
 * (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
   759
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   760
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   761
#  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
   762
    {                                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   763
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   764
							\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   765
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   766
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   767
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   768
		(buf)[__offs] = __intVal(rA);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   769
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   770
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   771
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   772
	    } else {                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   773
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   774
		(ret) = READ(f, (buf)+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   775
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   776
		if ((ret) <= 0) {                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   777
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   778
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   779
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   780
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   781
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   782
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   783
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   784
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   785
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   786
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   787
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   788
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   789
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   790
#  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
   791
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   792
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   793
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   794
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   795
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   796
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   797
	    if ((ret) < 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   798
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   799
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   800
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   801
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   802
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   803
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   804
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   805
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   806
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   807
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   808
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   809
	    DEBUGBUFFER(buf);                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   810
	    (buf)[__offs++] = (ret);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   811
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   812
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   813
	    (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   814
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   815
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   816
	int fd = fileno(f);                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   817
							\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   818
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   819
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   820
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   821
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   822
		(buf)[__offs] = __intVal(rA);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   823
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   824
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   825
	    } else {                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   826
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   827
		(ret) = read(fd, (buf)+__offs, (cnt)-__offs);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   828
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   829
		if ((ret) <= 0) {                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   830
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   831
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   832
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   833
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   834
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   835
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   836
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   837
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   838
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   839
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   840
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   841
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   842
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   843
# if defined(F_GETFL) && defined(F_SETFL) && defined(FNDELAY)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   844
#  define GETFLAGS(fd) \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   845
	fcntl(fd, F_GETFL, 0);
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   846
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   847
#  define SETFLAGS(fd, flags) \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   848
	fcntl(fd, F_SETFL, flags)
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   849
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   850
#  define SETNONBLOCKING(fd) \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   851
	{ \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   852
	    int flags; \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   853
	    flags = fcntl(fd, F_GETFL, 0); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   854
	    if (flags >= 0) { \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   855
		fcntl(fd, F_SETFL, flags | FNDELAY); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   856
	    } \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   857
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   858
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   859
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   860
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   861
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   862
# endif                                                        
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   863
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   864
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   865
  {                                                     \
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   866
    int __offs = 0;                                     \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   867
    int oldFlags;                                       \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   868
							\
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   869
    (ret) = 0;                                          \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   870
    oldFlags = GETFLAGS(fileno(f));                     \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   871
    SETNONBLOCKING(fileno(f));                          \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   872
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   873
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   874
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   875
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   876
	    if ((ret) < 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   877
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   878
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   879
			(ret) = 0;                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   880
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   881
			break;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   882
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   883
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   884
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   885
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   886
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   887
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   888
	    (buf)[__offs++] = (ret);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   889
	    DEBUGBUFFER(buf);                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   890
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   891
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   892
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   893
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   894
	int fd = fileno(f);                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   895
							\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   896
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   897
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   898
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   899
		(buf)[__offs] = __intVal(rA);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   900
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   901
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   902
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   903
		__offs += (ret);                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   904
		continue;                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   905
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   906
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   907
	    (ret) = read(fd, (buf)+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   908
	    DEBUGBUFFER(buf);                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   909
	    if ((ret) < 0) {                            \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   910
		if (__threadErrno == EINTR) {                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   911
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   912
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   913
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   914
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   915
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   916
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   917
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   918
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   919
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   920
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   921
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   922
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   923
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   924
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   925
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   926
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   927
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   928
 * 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
   929
 * (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
   930
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   931
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   932
#  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
   933
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   934
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   935
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   936
    char *buf = (char *)(obj);                          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   937
							\
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   938
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   939
    {                                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   940
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   941
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   942
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   943
		(buf)[__ooffs+__offs] = __intVal(rA);   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   944
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   945
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   946
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   947
	    } else {                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   948
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   949
		(ret) = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   950
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   951
		if ((ret) <= 0) {                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   952
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   953
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   954
			/* refetch */                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   955
			buf = (char *)(obj);            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   956
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   957
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   958
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   959
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   960
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   961
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   962
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   963
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   964
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   965
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   966
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   967
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   968
#  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
   969
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   970
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   971
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   972
    char *buf = (char *)(obj);                          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   973
							\
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   974
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   975
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   976
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   977
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   978
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   979
	    if ((ret) < 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   980
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
   981
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   982
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   983
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   984
			/* refetch */                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   985
			buf = (char *)(obj);            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   986
			DEBUGBUFFER(buf);               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   987
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   988
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   989
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   990
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   991
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   992
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   993
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   994
	    (buf)[__ooffs+__offs] = (ret);              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   995
	    DEBUGBUFFER(buf);                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   996
	    __offs++;                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   997
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   998
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
   999
	    (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
  1000
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1001
	int fd = fileno(f);                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1002
							\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1003
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1004
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1005
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1006
		(buf)[__ooffs+__offs] = __intVal(rA);   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1007
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1008
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1009
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1010
	    } else {                                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1011
		CLEAR_ERRNO;                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1012
		(ret) = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1013
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1014
		if ((ret) <= 0) {                       \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1015
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1016
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1017
			/* refetch */                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1018
			buf = (char *)(obj);            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1019
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1020
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1021
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1022
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1023
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1024
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1025
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1026
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1027
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1028
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1029
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1030
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1031
# 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
  1032
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1033
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1034
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1035
    char *buf = (char *)(obj);                          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1036
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1037
    (ret) = 0;                                          \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1038
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1039
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1040
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1041
	    (ret) = getc(f);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1042
	    if ((ret) < 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1043
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1044
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1045
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1046
			/* refetch */                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1047
			buf = (char *)(obj);            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1048
			(ret) = 0;                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1049
			break;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1050
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1051
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1052
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1053
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1054
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1055
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1056
	    (buf)[__ooffs+__offs] = (ret);              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1057
	    DEBUGBUFFER(buf);                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1058
	    __offs++;                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1059
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1060
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1061
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1062
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1063
	int fd = fileno(f);                             \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1064
							\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1065
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1066
	    OBJ rA = __INST(readAhead);                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1067
	    if (rA != nil) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1068
		(buf)[__ooffs+__offs] = __intVal(rA);   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1069
		DEBUGBUFFER(buf);                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1070
		__INST(readAhead) = nil;                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1071
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1072
		__offs += (ret);                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1073
		continue;                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1074
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1075
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1076
	    (ret) = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1077
	    DEBUGBUFFER(buf);                           \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1078
	    if ((ret) < 0 && __threadErrno == EINTR) {          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1079
		/* refetch */                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1080
		(ret) = 0;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1081
		buf = (char *)(obj);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1082
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1083
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1084
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1085
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1086
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1087
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1088
	    (ret) = __offs;                             \
3274
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
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1092
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1093
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1094
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1095
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1096
#  define __WRITEBYTE__(ret, f, buf, isBuffered)          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1097
	for (;;) {                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1098
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1099
	    (ret) = WRITE(f, buf, 1);                   \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1100
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1101
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1102
	    __HANDLE_INTERRUPTS__;                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1103
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1104
# else
4968
ff01ac91efa3 Fix buffered nexPut: for Solaris/Sparc
Stefan Vogel <sv@exept.de>
parents: 4914
diff changeset
  1105
#  define __WRITEBYTE__(ret, f, buf, isBuffered)        \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1106
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1107
	for (;;) {                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1108
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1109
	    ret = putc(*(buf), f);                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1110
	    if ((ret) >= 0) {                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1111
		(ret) = 1;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1112
	    } else if (ferror(f)) {                     \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1113
		/* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1114
		if (__threadErrno == EINTR || __threadErrno == 0) {     \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1115
		    __HANDLE_INTERRUPTS__;              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1116
		    clearerr(f);                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1117
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1118
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1119
	    } else                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1120
		(ret) = 0;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1121
	    break;                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1122
	}                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1123
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1124
	for (;;) {                                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1125
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1126
	    (ret) = write(fileno(f), buf, 1);           \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1127
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1128
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1129
	    __HANDLE_INTERRUPTS__;                      \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1130
	}                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1131
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1132
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1133
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1134
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1135
 * 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
  1136
 * (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
  1137
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1138
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1139
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1140
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1141
    {                                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1142
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1143
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1144
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1145
	    ret = WRITE(f, (buf)+__offs, (cnt)-__offs); \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1146
	    if (ret <= 0) {                             \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1147
		if (ret < 0 && __threadErrno == EINTR) {        \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1148
		    __HANDLE_INTERRUPTS__;              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1149
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1150
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1151
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1152
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1153
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1154
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1155
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1156
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1157
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1158
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1159
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1160
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1161
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1162
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1163
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1164
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1165
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1166
	    if ((ret) <= 0) {                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1167
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1168
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1169
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1170
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1171
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1172
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1173
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1174
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1175
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1176
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1177
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1178
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1179
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1180
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1181
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1182
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1183
	int __offs = 0;                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1184
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1185
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1186
	    ret = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1187
	    if (ret <= 0) {                             \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1188
		if (ret < 0 && __threadErrno == EINTR) {        \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1189
		    __HANDLE_INTERRUPTS__;              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1190
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1191
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1192
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1193
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1194
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1195
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1196
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1197
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1198
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1199
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1200
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1201
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1202
 * 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
  1203
 * (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
  1204
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1205
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1206
#  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
  1207
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1208
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1209
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1210
    char *buf = (char *)(obj);                          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1211
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1212
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1213
    {                                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1214
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1215
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1216
	    ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs);               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1217
	    if (ret <= 0) {                             \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1218
		if (ret < 0 && __threadErrno == EINTR) {        \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1219
		    __HANDLE_INTERRUPTS__;              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1220
		    /* refetch */                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1221
		    buf = (char *)(obj);                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1222
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1223
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1224
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1225
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1226
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1227
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1228
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1229
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1230
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1231
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1232
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1233
#  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
  1234
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1235
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1236
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1237
    char *buf = (char *)(obj);                          \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1238
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1239
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1240
    if (isBuffered) {                                   \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1241
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1242
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1243
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1244
	    if ((ret) <= 0) {                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1245
		if (ferror(f)) {                        \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1246
		    if (__threadErrno == EINTR) {               \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1247
			__HANDLE_INTERRUPTS__;          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1248
			/* refetch */                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1249
			buf = (char *)(obj);            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1250
			clearerr(f);                    \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1251
			continue;                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1252
		    }                                   \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1253
		    break;                              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1254
		} else {                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1255
		    (ret) = 0;                          \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1256
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1257
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1258
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1259
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1260
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1261
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1262
    } else {                                            \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1263
	while (__offs < (cnt)) {                        \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1264
	    CLEAR_ERRNO;                                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1265
	    ret = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs);       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1266
	    if (ret <= 0) {                             \
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  1267
		if (ret < 0 && __threadErrno == EINTR) {        \
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1268
		    __HANDLE_INTERRUPTS__;              \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1269
		    /* refetch */                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1270
		    buf = (char *)(obj);                \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1271
		    continue;                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1272
		}                                       \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1273
		break;                                  \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1274
	    }                                           \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1275
	    __offs += (ret);                            \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1276
	}                                               \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1277
	if (__offs > 0)                                 \
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  1278
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1279
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1280
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1281
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1282
#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
  1283
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1284
/*
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1285
 * on some systems errno is a macro ... check for it here
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1286
 */
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1287
#ifndef errno
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1288
 extern errno;
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1289
#endif
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1290
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1291
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1292
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1293
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1294
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1295
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1296
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1297
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1298
 COPYRIGHT (c) 1988 by Claus Gittinger
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1299
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1300
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1301
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1302
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1303
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1304
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1305
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1306
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1307
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1308
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1309
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1310
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1311
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1312
    ExternalStream defines protocol common to Streams which have a file-descriptor and 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1313
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1314
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1315
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1316
    ExternalStreams can be in two modes: text- (the default) and binary-mode.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1317
    In text-mode, the elements read/written are characters; 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1318
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1319
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1320
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1321
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1322
    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
  1323
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1324
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1325
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1326
    or just forgotten - in this case, the garbage collector will eventually collect the
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1327
    object AND a close will be performed automatically (but you will NOT know when this 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1328
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1329
    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
  1330
    some crash) the data will not be in the file, if unclosed. 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1331
    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
  1332
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1333
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1334
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1335
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1336
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1337
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1338
      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
  1339
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1340
      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
  1341
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1342
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1343
      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
  1344
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1345
      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
  1346
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1347
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1348
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1349
	filePointer     <Integer>       the unix FILE*; somehow mapped to an integer
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1350
					(notice: not the fd)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1351
					on Windows: the fileHandle
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1352
	mode            <Symbol>        #readwrite, #readonly or #writeonly
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1353
	buffered        <Boolean>       true, if buffered (i.e. collects characters - does
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1354
					not output immediately)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1355
	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
  1356
	eolMode         <Symbol>        one of nil, #cr or #crlf.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1357
					determines how lines should be terminated.
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1358
					nil -> newLine (as in Unix);
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1359
					#crlf -> with cr-lf (as in MSDOS)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1360
					#cr -> with cr (as in VMS)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1361
	hitEOF          <Boolean>       true, if EOF was reached
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1362
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1363
	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
  1364
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1365
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1366
    [Class variables:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1367
	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
  1368
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1369
	StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1370
	InvalidReadSignal       <Signal> raised on read from writeonly stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1371
	InvalidWriteSignal      <Signal> raised on write to readonly stream 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1372
	InvalidModeSignal       <Signal> raised on text I/O with binary-stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1373
					 or binary I/O with text-stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1374
	OpenErrorSignal         <Signal> raised if open fails
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1375
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1376
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1377
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1378
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1379
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1380
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1381
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1382
      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
  1383
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1384
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1385
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1386
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1387
      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
  1388
      an error and errno is set to EINTR. 
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1389
      Thats what the ugly code around all getc-calls is for ...
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1390
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1391
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1392
claus
parents: 308
diff changeset
  1393
      Notice that typical stdio's use a single errno global variable to return an error code,
claus
parents: 308
diff changeset
  1394
      this was bad design in the stdio lib (right from the very beginning), since its much
claus
parents: 308
diff changeset
  1395
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1396
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1397
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1398
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1399
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1400
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1401
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1402
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1403
      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
  1404
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1405
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1406
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1407
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1408
    [author:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1409
	Claus Gittinger
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1410
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1411
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1412
    [see also:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1413
	FileStream Socket PipeStream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1414
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1415
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1416
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1417
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1418
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1419
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1420
    open a file, read the contents and display it in a textView:
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1421
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1422
	|topView scrollPane textView fileStream text|
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1423
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1424
	topView := StandardSystemView new.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1425
	topView label:'contents of Makefile'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1426
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1427
	scrollPane := HVScrollableView in:topView.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1428
	scrollPane origin:0.0@0.0 corner:1.0@1.0.
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1429
        
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1430
	textView := EditTextView new.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1431
	scrollPane scrolledView:textView.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1432
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1433
	fileStream := 'Makefile' asFilename readStream.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1434
	text := fileStream upToEnd.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1435
	fileStream close.
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
	textView contents:text.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1438
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1439
	topView open.
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1440
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1441
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1442
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1443
    Notice, all of the above can also be done (simply) as:
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1444
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1445
	EditTextView openOn:'Makefile'
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1446
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1447
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1448
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1449
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1450
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1451
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1452
    OperatingSystem isUNIXlike ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1453
	"/ unix EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1454
	DefaultEOLMode := #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1455
    ] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1456
	OperatingSystem isVMSlike ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1457
	    "/ vms EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1458
	    DefaultEOLMode := #cr
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1459
	] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1460
	    "/ msdos EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1461
	    DefaultEOLMode := #crlf
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
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1465
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1466
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1467
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1468
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1469
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1470
    OperatingSystem isMSDOSlike ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1471
	ReadMode := 'rb'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1472
	ReadWriteMode := 'rb+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1473
	WriteMode := 'wb'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1474
	AppendMode := 'ab+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1475
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1476
    ] ifFalse:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1477
	ReadMode := 'r'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1478
	ReadWriteMode := 'r+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1479
	WriteMode := 'w'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1480
	AppendMode := 'a+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1481
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1482
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1483
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1484
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1485
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1486
    OpenErrorSignal isNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1487
	OpenErrorSignal := StreamErrorSignal newSignalMayProceed:true.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1488
	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
  1489
	OpenErrorSignal notifierString:'open error'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1490
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1491
	InvalidReadSignal := ReadErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1492
	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
  1493
	InvalidReadSignal notifierString:'read error'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1494
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1495
	InvalidWriteSignal := WriteErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1496
	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
  1497
	InvalidWriteSignal notifierString:'write error'.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1498
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1499
	InvalidModeSignal :=  StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1500
	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
  1501
	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
  1502
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1503
	InvalidOperationSignal :=  StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1504
	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
  1505
	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
  1506
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1507
	StreamNotOpenSignal := StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1508
	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
  1509
	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
  1510
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1511
	StreamIOErrorSignal := StreamErrorSignal newSignalMayProceed:false.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1512
	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
  1513
	StreamIOErrorSignal notifierString:'I/O error'.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1514
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1515
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1516
    Lobby isNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1517
	Lobby := Registry new.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1518
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1519
	"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
  1520
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1521
    ].
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1522
    self initDefaultEOLMode.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1523
    self initModeStrings.
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1524
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1525
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1526
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1527
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1528
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1529
    "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
  1530
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1531
301
35e40a6fc72b *** empty log message ***
claus
parents: 269
diff changeset
  1532
    Lobby do:[:aFileStream |
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1533
	aFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1534
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1535
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1536
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1537
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1538
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1539
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1540
    something == #earlyRestart ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1541
	self reOpenFiles.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1542
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1543
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1544
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1545
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1546
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1547
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1548
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1549
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1550
forFileDescriptor:aFileDescriptor mode:modeString
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1551
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1552
     to operate on this fd. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1553
     The mode-argument is passed to the fdopen call.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1554
     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
  1555
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1556
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1557
    |newStream|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1558
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1559
    newStream := self basicNew.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1560
    newStream text; buffered:true; eolMode:DefaultEOLMode; clearEOF.
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1561
    ^ newStream connectTo:aFileDescriptor withMode:modeString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1562
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1563
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1564
     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
  1565
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1566
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1567
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1568
     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
  1569
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1570
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1571
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1572
    "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
  1573
    "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
  1574
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1575
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1576
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1577
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1578
     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
  1579
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1580
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1581
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1582
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadWriteMode) readwrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1583
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1584
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1585
     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
  1586
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1587
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1588
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1589
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1590
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1591
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1592
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1593
    "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
  1594
    "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
  1595
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1596
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1597
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1598
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1599
     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
  1600
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1601
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1602
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1603
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadMode) readonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1604
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1605
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1606
     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
  1607
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1608
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1609
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1610
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1611
     s next.
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
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
     |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
  1616
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1617
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1618
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1619
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1620
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1621
     writeFd := pipe at:2.
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
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1624
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1625
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1626
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1627
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1628
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1629
     [
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1630
	 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
  1631
	     Transcript showCR:rs nextLine
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1632
	 ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1633
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1634
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1635
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1636
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1637
     [
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1638
	 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
  1639
	     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
  1640
	 ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1641
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1642
     ] fork.
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
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1645
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1646
    "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
  1647
    "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
  1648
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1649
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1650
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1651
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1652
     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
  1653
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1654
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1655
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1656
    ^ (self forFileDescriptor:aFileDescriptor mode:WriteMode) writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1657
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1658
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1659
     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
  1660
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1661
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1662
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1663
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1664
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1665
     s nextPut:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1666
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1667
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1668
    "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
  1669
    "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
  1670
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1671
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1672
makePTYPair
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1673
    "return an array with two streams - the first one is the master, 
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1674
     the second the slave of a ptym/ptys pair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1675
     This is much like a bidirectional pipe, but allows signals &
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1676
     control chars to be passed through the connection.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1677
     This is needed to execute a shell in a view.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1678
     This is the higher level equivalent of OperatingSystem>>makePTYPair
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1679
     (which returns an array of file-descriptors)."
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 m s|
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1682
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1683
     ptyPair := OperatingSystem makePTYPair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1684
     ptyPair notNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1685
	 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
  1686
	 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
  1687
	 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
  1688
	 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
  1689
	 ^ ptyPair
3535
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
     ^ nil
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1692
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
     ExternalStream makePTYPair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1695
    "
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
    "Modified: 29.2.1996 / 18:28:36 / cg"
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1698
!
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1699
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1700
makePipe
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1701
    "return an array with two streams - the first one for reading, 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1702
     the second for writing. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1703
     This is the higher level equivalent of OperatingSystem>>makePipe
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1704
     (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
  1705
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1706
     |pipe rs ws|
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 := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1709
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1710
     pipe notNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1711
	 rs := self forReadingFromFileDescriptor:(pipe at:1).
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1712
	 ws := self forWritingToFileDescriptor:(pipe at:2).
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1713
	 ^ 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
  1714
     ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1715
     ^ nil
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1716
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 rs ws|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1719
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1720
     pipe := ExternalStream makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1721
     rs := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1722
     ws := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1723
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1724
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1725
     [
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1726
	 1 to:10 do:[:i |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1727
	     Transcript showCR:rs nextLine
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1728
	 ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1729
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1730
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1731
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1732
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1733
     [
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1734
	 1 to:10 do:[:i |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1735
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1736
	 ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1737
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1738
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1739
    "
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
    "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
  1742
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1743
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1744
new
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1745
    |newStream|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1746
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1747
    newStream := self basicNew.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1748
    newStream text; buffered:true; eolMode:DefaultEOLMode; clearEOF.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1749
    ^ newStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1750
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1751
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1752
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1753
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1754
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1755
    "ST-80 compatibility: return 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
    ^ self openErrorSignal
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
    "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
  1760
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1761
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1762
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1763
    "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
  1764
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1765
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1766
    ^ InvalidModeSignal
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1767
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1768
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1769
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1770
    "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
  1771
     I/O operation is attempted"
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
    ^ InvalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1774
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1775
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1776
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1777
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1778
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1779
    ^ InvalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1780
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1781
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1782
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1783
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1784
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1785
    ^ InvalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1786
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1787
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1788
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1789
    "return the signal raised when a file open failed"
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
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1792
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1793
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1794
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1795
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1796
     (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
  1797
     which is no longer available and has been mounted soft)"
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
    ^ StreamIOErrorSignal
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
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1802
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1803
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1804
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1805
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1806
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1807
    ^ StreamNotOpenSignal
2
claus
parents: 1
diff changeset
  1808
! !
claus
parents: 1
diff changeset
  1809
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1810
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1811
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1812
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1813
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1814
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1815
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1816
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1817
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1818
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1819
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1820
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1821
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1822
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1823
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1824
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1825
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1826
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1827
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1828
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1829
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1830
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1831
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1832
!ExternalStream methodsFor:'Compatibility - Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1833
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1834
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1835
    "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
  1836
     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
  1837
     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
  1838
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1839
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1840
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1841
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1842
    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
  1843
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1844
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1845
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1846
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1847
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1848
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1849
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1850
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1851
     Squeak compatibility."
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
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1854
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1855
    elementSize := aContainer class elementByteSize.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1856
    n := self nextBytes:nElements*elementSize into:aContainer startingAt:1.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1857
    ^ n // elementSize
3872
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
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1860
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1861
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1862
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1863
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1864
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1865
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1866
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1867
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1868
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1869
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1870
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1871
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1872
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1873
    ^ self class invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1874
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1875
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1876
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1877
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1878
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1879
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1880
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1881
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1882
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1883
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1884
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1885
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1886
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1887
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1888
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1889
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1890
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1891
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1892
buffered:aBoolean
10
claus
parents: 5
diff changeset
  1893
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1894
10
claus
parents: 5
diff changeset
  1895
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1896
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1897
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1898
contents
2
claus
parents: 1
diff changeset
  1899
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  1900
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  1901
     the byte values is returned.
claus
parents: 1
diff changeset
  1902
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  1903
     is returned."
claus
parents: 1
diff changeset
  1904
claus
parents: 1
diff changeset
  1905
    |text l chunks sizes chunk byteCount cnt bytes offset|
claus
parents: 1
diff changeset
  1906
claus
parents: 1
diff changeset
  1907
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1908
	"adding to a ByteArray produces quadratic time-space
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1909
	 behavior - therefore we allocate chunks, and concatenate them
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1910
	 at the end."
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1911
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1912
	chunks := OrderedCollection new.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1913
	sizes := OrderedCollection new.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1914
	byteCount := 0.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1915
	[self atEnd] whileFalse:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1916
	    chunk := ByteArray uninitializedNew:4096.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1917
	    cnt := self nextBytes:(chunk size) into:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1918
	    cnt notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1919
		chunks add:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1920
		sizes add:cnt.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1921
		byteCount := byteCount + cnt
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
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1924
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1925
	"now, create one big ByteArray"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1926
	bytes := ByteArray uninitializedNew:byteCount.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1927
	offset := 1.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1928
	1 to:chunks size do:[:index |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1929
	    chunk := chunks at:index.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1930
	    cnt := sizes at:index. 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1931
	    bytes replaceFrom:offset to:(offset + cnt - 1) with:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1932
	    offset := offset + cnt
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1933
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1934
	^ bytes
2
claus
parents: 1
diff changeset
  1935
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1936
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  1937
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1938
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1939
	l := self nextLine.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1940
	l isNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1941
	    ^ text
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1942
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1943
	text add:l
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1944
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1945
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1946
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1947
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1948
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1949
    "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
  1950
     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
  1951
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1952
    |data|
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1953
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1954
    data := self contents.
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1955
    binary ifFalse:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1956
	^ data asString.
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1957
    ].
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  1958
    ^ data
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1959
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  1960
    "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
  1961
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  1962
!
claus
parents: 1
diff changeset
  1963
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1964
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1965
    "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
  1966
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1967
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1968
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1969
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1970
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1971
    ^ String
2
claus
parents: 1
diff changeset
  1972
!
claus
parents: 1
diff changeset
  1973
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1974
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1975
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1976
     The argument may be one of:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1977
	#crlf         -> add a CR-NL, as in MSDOS
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1978
	#cr           -> add a CR, as in VMS
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1979
	#nl           -> add a NL, as in Unix
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1980
	anyOther      -> like #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1981
    "
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
    eolMode := aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1984
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1985
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1986
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1987
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1988
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1989
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1990
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  1991
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1992
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1993
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  1994
    if ((fp = __INST(filePointer)) != nil) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1995
	FILEPOINTER f;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1996
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1997
	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
  1998
	RETURN ( __MKINT(fileno(f)) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1999
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2000
%}.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2001
    ^ self errorNotOpen
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2002
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2003
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2004
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2005
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2006
     notice: for portability stdio is used; this means you will get
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2007
     a FILE * - not a fileDescriptor. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2008
     (what you really get is a corresponding integer).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2009
     You cannot do much with the returned value 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2010
     - except passing it to a primitive, for example."
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
    ^ filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2013
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2014
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2015
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2016
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2017
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2018
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2019
lineEndTransparent
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2020
    eolMode := #cr
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2021
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2022
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2023
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2024
    "set access mode to readonly"
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 := #readonly
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
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2030
    "set access mode to readwrite"
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
    mode := #readwrite
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
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2036
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2037
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2038
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2039
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2040
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2041
useCRLF:aBoolean
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2042
    "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
  2043
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2044
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2045
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2046
    aBoolean ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2047
	eolMode := #crlf
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2048
    ] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2049
	eolMode := #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2050
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2051
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2052
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2053
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2054
    "set access mode to writeonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2055
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2056
    mode := #writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2057
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2058
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2059
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2060
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2061
argumentMustBeCharacter
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2062
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2063
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2064
    "report an error, that the argument must be a character"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2065
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2066
    ^ self error:'argument must be a character'
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2069
argumentMustBeInteger
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2070
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2071
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2072
    "report an error, that the argument must be an integer"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2073
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2074
    ^ self error:'argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2075
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2076
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2077
argumentMustBeString
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2078
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2079
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2080
    "report an error, that the argument must be a string"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2081
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2082
    ^ self error:'argument must be a string'
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2083
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2084
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2085
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2086
    "{ Pragma: +optSpace }"
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
    "report an error, that the stream is already opened"
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
    ^ self class openErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2091
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2092
	errorString:(self class name , ' is already open')
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2093
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2094
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2095
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2096
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2097
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2098
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2099
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2100
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2101
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2102
    ^ self invalidModeSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2103
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2104
	     errorString:(self class name , ' is in binary mode')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2105
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2106
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2107
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2108
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2109
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2110
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2111
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2112
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2113
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2114
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2115
    ^ self invalidModeSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2116
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2117
	     errorString:(self class name , ' is not in binary mode')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2118
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2119
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2120
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2121
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2122
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2123
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2124
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2125
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2126
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2127
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2128
    ^ StreamErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2129
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2130
	     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
  2131
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2132
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2133
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2134
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2135
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2136
errorNotOpen
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2137
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2138
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2139
    "report an error, that the stream has not been opened"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2140
3467
54ccb6f7d886 oops - streamNotOpenSignal
Claus Gittinger <cg@exept.de>
parents: 3456
diff changeset
  2141
    ^ StreamNotOpenSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2142
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2143
	     errorString:(self class name , ' not open')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2144
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2145
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2146
    "Modified: / 8.5.1999 / 20:12:33 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2147
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2148
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2149
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2150
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2151
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2152
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2153
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2154
    ^ self invalidWriteSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2155
	  raiseWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2156
	  errorString:(self class name , ' is readonly')
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2157
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2158
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2159
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2160
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2161
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2162
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2163
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2164
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2165
    "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
  2166
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2167
    ^ self invalidOperationSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2168
	raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2169
	errorString:'unsupported operation'
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2170
		 "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2171
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2172
    "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
  2173
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2174
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2175
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2176
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2177
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2178
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2179
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2180
    ^ self invalidReadSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2181
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2182
	     errorString:(self class name , ' is writeonly')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2183
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2184
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2185
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2186
!
claus
parents: 1
diff changeset
  2187
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2188
ioError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2189
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2190
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2191
    "report an error, that some I/O error occured.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2192
     (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
  2193
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2194
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2195
    ^ StreamIOErrorSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2196
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2197
	     errorString:('I/O error: ' , self lastErrorString)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2198
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2199
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2200
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
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
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2204
    "return 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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2207
!
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
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2210
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2211
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2212
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2213
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2214
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2215
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2216
!
claus
parents: 1
diff changeset
  2217
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2218
openError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2219
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2220
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2221
    "report an error, that the open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2222
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2223
    ^ self class openErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2224
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2225
	     errorString:('error on open: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2226
		      "/ in:thisContext sender
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2227
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2228
    "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
  2229
    "Modified: / 8.5.1999 / 20:12:12 / cg"
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2232
readError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2233
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2234
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2235
    "report an error, that some read error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2236
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2237
    ^ ReadErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2238
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2239
	     errorString:('read error: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2240
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2241
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2242
    "Modified: / 8.5.1999 / 20:12:00 / cg"
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2245
writeError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2246
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2247
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2248
    "report an error, that some write error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2249
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2250
    ^ WriteErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2251
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2252
	     errorString:('write error: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2253
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2254
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2255
    "Modified: / 8.5.1999 / 20:12:09 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2256
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2257
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2258
!ExternalStream methodsFor:'instance release'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2259
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2260
closeFile
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2261
    "low level close - may be redefined in subclasses"
2
claus
parents: 1
diff changeset
  2262
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2263
%{
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2264
    OBJ fp;
2
claus
parents: 1
diff changeset
  2265
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2266
    if ((fp = __INST(filePointer)) != nil) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2267
	FILEPOINTER f;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2268
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2269
	__INST(filePointer) = nil;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2270
	f = __FILEVal(fp);
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  2271
	if (@global(ExternalStream:FileOpenTrace) == true) {
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  2272
	    fprintf(stderr, "fclose [ExternalStream] %x\n", f);
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  2273
	}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2274
	__BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2275
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2276
	__STX_C_CALL1((void*)fclose, (void*)f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2277
#else
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  2278
	fclose(f);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2279
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2280
	__END_INTERRUPTABLE__
10
claus
parents: 5
diff changeset
  2281
    }
claus
parents: 5
diff changeset
  2282
%}
claus
parents: 5
diff changeset
  2283
!
claus
parents: 5
diff changeset
  2284
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2285
disposed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2286
    "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
  2287
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2288
    self closeFile
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2289
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2290
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2291
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
  2292
    "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
  2293
     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
  2294
     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
  2295
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  2296
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2297
    FILEPOINTER f;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2298
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  2299
    FILE *fdopen();
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2300
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2301
    if (__isSmallInteger(anInteger) &&
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2302
	__isString(openMode) &&
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2303
	(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
  2304
    ) {
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  2305
	if (@global(ExternalStream:FileOpenTrace) == true) {
5204
9e0445bc00ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5203
diff changeset
  2306
	    fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", __intVal(anInteger), f);
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  2307
	}
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2308
	__PROTECT__(self);
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
  2309
	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
  2310
	__UNPROTECT__(self);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2311
	__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
  2312
	RETURN (self);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2313
    }
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2314
%}.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2315
    ^ self primitiveFailed
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2316
!
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2317
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2318
setFilePointer:something
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2319
    "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
  2320
     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
  2321
     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
  2322
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2323
    filePointer := something
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2324
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2325
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2326
shallowCopyForFinalization
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2327
    "return a copy for finalization-registration;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2328
     since all we need at finalization time is the fileDescriptor,
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2329
     a cheaper copy is possible."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2330
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2331
    ^ self class basicNew setFilePointer:filePointer
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2332
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2333
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2334
shutDown
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2335
    "close the stream - added for protocol compatibility with PipeStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2336
     see comment there"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2337
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2338
    self isOpen ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2339
	Lobby unregister:self.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2340
	self closeFile
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2341
    ]
1642
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2342
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2343
    "Modified: 30.8.1996 / 00:39:21 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2344
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2345
2
claus
parents: 1
diff changeset
  2346
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2347
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2348
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2349
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2350
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2351
     If the previous-to-last character is a cr, this is also removed,
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2352
     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
  2353
     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
  2354
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2355
    |line|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2356
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2357
%{  /* STACK:34000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2358
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2359
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2360
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2361
    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
  2362
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2363
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2364
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2365
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2366
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2367
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2368
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2369
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2370
    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
  2371
	&& (__INST(mode) != @symbol(writeonly))
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2372
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2373
    ) {
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2374
	f = __FILEVal(fp);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2375
	buffer[0] = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2376
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2377
	_buffered = (__INST(buffered) == true);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2378
	if (_buffered) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2379
	    __READING__(f);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2380
	} 
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2381
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2382
	rslt = nextPtr = buffer;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2383
	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
  2384
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2385
	for (;;) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2386
	    __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
  2387
	    if (ret <= 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2388
		if (nextPtr == buffer)
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2389
		    rslt = NULL;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2390
		if (ret == 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2391
		    __INST(hitEOF) = true;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2392
		    break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2393
		} else {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2394
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2395
		    goto err;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2396
		}
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
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2399
	    if (*nextPtr == '\n') {
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
		break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2403
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2404
	    if (*nextPtr == '\r') {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2405
		char peekChar;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2406
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2407
		/*
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2408
		 * 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
  2409
		 */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2410
		__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
  2411
		if (ret <= 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2412
		    cutOff = 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2413
		    *nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2414
		    if (ret == 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2415
			__INST(hitEOF) = true;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2416
			break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2417
		    }
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2418
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2419
		    goto err;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2420
		}
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
		if (peekChar == '\n') {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2423
		    cutOff = 2;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2424
		    *nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2425
		    break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2426
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2427
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2428
		__UNGETC__(peekChar, f, _buffered);
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
		cutOff = 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2431
		*nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2432
		break;
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
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2435
	    nextPtr++;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2436
	    if (nextPtr >= limit) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2437
		*nextPtr = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2438
		lineTooLong = 1;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2439
		if (@global(InfoPrinting) == true) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2440
		    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
  2441
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2442
		break;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2443
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2444
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2445
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2446
	if (rslt != NULL) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2447
	    len = nextPtr-buffer;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2448
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2449
	    if (__INST(position) != nil) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2450
		int __p;
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
		__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
  2453
		__INST(position) = __MKSMALLINT(__p);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2454
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2455
	    /* remove any EOL character */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2456
	    if (len != 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2457
		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
  2458
		    buffer[--len] = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2459
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2460
		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
  2461
		    buffer[--len] = '\0';
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2462
		}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2463
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2464
	    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
  2465
	    if (! lineTooLong) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2466
		RETURN ( line );
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2467
	    }
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2468
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2469
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2470
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2471
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2472
    line notNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2473
	"/ 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
  2474
	"/ 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
  2475
	"/ 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
  2476
	"/ 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
  2477
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2478
	LineTooLongErrorSignal isHandled ifTrue:[
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2479
	    ^ LineTooLongErrorSignal
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2480
		raiseRequestWith:(Array with:self with:line)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2481
		     errorString:('line too long read error')
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2482
	].
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2483
	^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2484
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2485
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  2486
    hitEOF ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2487
    lastErrorNumber notNil ifTrue:[^ self readError].
2
claus
parents: 1
diff changeset
  2488
    filePointer isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2489
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2490
    ^ self errorBinary
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2491
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2492
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2493
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2494
    "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
  2495
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2496
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2497
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2498
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2499
    int len, cnt, len1, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2500
    OBJ pos, fp;
537
dc4dad8a5ddd many ExtStream rewrites - has to be reevaluated in all platforms
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  2501
    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
  2502
    int o_offs;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2503
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2504
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2505
    if (((fp = __INST(filePointer)) != nil) 
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2506
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2507
	&& (__INST(binary) != true)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2508
	&& __isString(aString)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2509
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2510
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2511
	len = __stringSize(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2512
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2513
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2514
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2515
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2516
#ifdef BUGGY
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2517
	__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
  2518
#else
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2519
	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
  2520
	__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
  2521
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2522
	if (cnt == len) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2523
	    OBJ mode = __INST(eolMode);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2524
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2525
	    len1 = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2526
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2527
	    if (mode == @symbol(cr)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2528
		cp = "\r"; len = 1;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2529
	    } else if (mode == @symbol(crlf)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2530
		cp = "\r\n"; len = 2;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2531
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2532
		cp = "\n"; len = 1;
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
	    __WRITEBYTES__(cnt, f, cp, len, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2535
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2536
	    if (cnt > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2537
		pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2538
		if (pos != nil) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2539
		    int __p;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2540
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2541
		    __p = __intVal(pos) + len1 + cnt;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2542
		    __INST(position) = __MKSMALLINT(__p);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2543
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2544
		RETURN ( self );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2545
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2546
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2547
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2548
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2549
%}.
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2550
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2551
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2552
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2553
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2554
    "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
  2555
     and append all lines to self. 
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2556
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2557
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2558
     If aStringOrNil is nil or not matched, copy preceeds to the end.
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2559
     (this allows for example to read a Socket and transfer the data quickly
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2560
      into a file - without creating zillions of temporary strings)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2561
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2562
    |srcFilePointer readError line|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2563
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2564
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2565
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2566
    srcFilePointer := aStream filePointer.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2567
    srcFilePointer isNil ifTrue:[aStream errorNotOpen. ^ self].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2568
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2569
%{  /* STACK:2000 */
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2570
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2571
#ifndef NO_STDIO
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2572
    FILEPOINTER dst;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2573
    FILEPOINTER src;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2574
    char *matchString;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2575
    int matchLen = 0;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2576
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2577
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2578
    __INST(lastErrorNumber) = nil;
249
claus
parents: 244
diff changeset
  2579
    if (__isSmallInteger(srcFilePointer)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2580
	if ((aStringOrNil == nil) || __isString(aStringOrNil)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2581
	    if (aStringOrNil != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2582
		matchString = (char *) __stringVal(aStringOrNil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2583
		matchLen = __stringSize(aStringOrNil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2584
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2585
	    dst = __FILEVal(__INST(filePointer));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2586
	    src = __FILEVal(srcFilePointer);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2587
	    __BEGIN_INTERRUPTABLE__
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2588
	    __threadErrno = 0;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2589
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2590
	    __WRITING__(dst)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2591
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2592
	    for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2593
		if (fgets(buffer, sizeof(buffer)-1, src) == NULL) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2594
		    if (ferror(src)) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2595
			readError = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2596
			__END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2597
			goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2598
		    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2599
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2600
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2601
		if (fputs(buffer, dst) == EOF) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2602
		    if (ferror(dst)) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2603
			__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2604
			__END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2605
			goto err;
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
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2608
		}
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2609
#ifndef OLD
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2610
		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
  2611
		    FFLUSH(dst);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2612
		}
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2613
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2614
		if (matchLen) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2615
		    if (strncmp(matchString, buffer, matchLen) == 0) 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2616
			break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2617
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2618
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2619
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2620
	    __INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2621
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2622
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2623
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2624
err: ;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2625
#endif /* ! NO_STDIO */
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2626
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2627
    readError ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2628
	aStream setLastErrorNumber:readError.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2629
	aStream readError.
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2630
	^ self
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2631
    ].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2632
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2633
    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
  2634
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2635
    "
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2636
     argument error or unimplemented; try it linewise
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2637
    "
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2638
    [aStream atEnd] whileFalse:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2639
	line := aStream nextLine.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2640
	line isNil ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2641
	    ^ self.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2642
	].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2643
	self nextPutLine:line.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2644
	(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
  2645
	    ^ self
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2646
	]
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2647
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2648
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2649
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2650
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2651
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2652
     return the line-string if found, or nil if EOF is encountered.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2653
     If matched, not advance position behond that line
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2654
     i.e. nextLine will read the matched line.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2655
     If not matched, reposition to original position for firther reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2656
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2657
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2658
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2659
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2660
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2661
    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
  2662
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2663
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2664
%{  /* STACK: 2000 */
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2665
#ifndef NO_STDIO
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2666
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2667
    FILEPOINTER f;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2668
    int l;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2669
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2670
    char *cp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2671
    char *matchString;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2672
    int gotFirst = 0;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2673
#ifdef __VMS__
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2674
    fpos_t firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2675
#   define FTELL(__f__, __pos__)        fgetpos(__f__, &(__pos__))
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2676
#   define FSEEK(__f__, __pos__)        fsetpos(__f__, &(__pos__))
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2677
#else
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2678
    long firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2679
#   define FTELL(__f__, __pos__)        __pos__ = ftell(__f__)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2680
#   define FSEEK(__f__, __pos__)        fseek(__f__, __pos__, SEEK_SET)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2681
#endif
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2682
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2683
    __INST(lastErrorNumber) = nil;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
  2684
    if (__isString(aString)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2685
	matchString = (char *) __stringVal(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2686
	l = __stringSize(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2687
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2688
	f = __FILEVal(__INST(filePointer));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2689
	__READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2690
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2691
	for (;;) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2692
	    FTELL(f, lastpos);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2693
	    if (!gotFirst) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2694
		firstpos = lastpos;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2695
		gotFirst = 1;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2696
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2697
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2698
	    __BEGIN_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2699
	    do {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2700
		cp = fgets(buffer, sizeof(buffer)-1, f);
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2701
	    } while ((cp == NULL) && ferror(f) && (__threadErrno == EINTR) && (clearerr(f), 1));
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2702
	    buffer[sizeof(buffer)-1] = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2703
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2704
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2705
	    if (cp == NULL) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2706
		if (ferror(f)) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2707
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2708
		    goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2709
		} else {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2710
		    FSEEK(f, firstpos);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2711
		    RETURN (nil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2712
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2713
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2714
	    if (strncmp(cp, matchString, l) == 0) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2715
		FSEEK(f, lastpos);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2716
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2717
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2718
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2719
	/* remove EOL character */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2720
	cp = buffer;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2721
	while (*cp && (*cp != '\n') && (*cp != '\r')) cp++;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2722
	*cp = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2723
	RETURN ( __MKSTRING(buffer) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2724
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2725
err: ;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2726
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2727
# undef FTELL
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2728
# undef FSEEK
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2729
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2730
#endif
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2731
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2732
    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
  2733
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2734
    "/ 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
  2735
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2736
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2737
    [self atEnd] whileFalse:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2738
	lastPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2739
	line := self nextLine.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2740
	line isNil ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2741
	    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2742
	    ^ nil
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2743
	].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2744
	(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
  2745
	    self position:lastPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2746
	    ^ line
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2747
	]
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2748
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2749
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2750
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2751
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2752
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2753
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2754
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2755
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2756
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2757
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2758
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2759
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2760
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2761
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2762
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2763
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2764
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2765
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2766
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2767
	linePos := self position.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2768
	line := self nextLine.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2769
	line notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2770
	    index := 1.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2771
	    aCollectionOfStrings do:[:prefix |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2772
		(line startsWith:prefix) ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2773
		    self position:linePos.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2774
		    ^ index
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2775
		].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2776
		index := index + 1
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2777
	    ]
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2778
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2779
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2780
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2781
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2782
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2783
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2784
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2785
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2786
async:aBoolean
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2787
    "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
  2788
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2789
     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
  2790
     Notice: 
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2791
	not every OS supports this 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2792
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2793
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2794
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2795
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2796
    filePointer isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2797
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2798
    OperatingSystem supportsIOInterrupts ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2799
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2800
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2801
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2802
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2803
    aBoolean ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2804
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2805
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2806
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2807
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2808
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2809
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2810
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2811
backStep
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2812
    "step back one element -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2813
     redefined, since position is redefined here"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2814
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2815
    self position:(self position - 1)
362
claus
parents: 360
diff changeset
  2816
!
claus
parents: 360
diff changeset
  2817
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2818
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2819
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2820
     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
  2821
     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
  2822
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2823
     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
  2824
     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
  2825
     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
  2826
     methods, in order to avoid other (pastEnd) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2827
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2828
    filePointer isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2829
    ^ 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
  2830
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2831
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2832
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2833
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2834
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2835
close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2836
    "close the stream - tell operating system"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2837
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2838
    self isOpen ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2839
	Lobby unregister:self.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2840
	self closeFile.
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2841
    ]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2842
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2843
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2844
create
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2845
    "create the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2846
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2847
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2848
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2849
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2850
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2851
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2852
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2853
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2854
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2855
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2856
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2857
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2858
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2859
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2860
     on the underlying file; the argument is passed as argument.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2861
     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
  2862
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2863
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2864
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2865
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2866
     If the argument is nil, an ioctl without argument is performed.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2867
     If the argument is an integral number, its directly passed; 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2868
     if its a kind of ByteArray (ByteArray, String or Structure),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2869
     or external data (ExternalBytes or ExternalAddress),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2870
     a pointer to the data is passed. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2871
     This allows performing most ioctls 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2872
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2873
     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
  2874
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2875
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2876
#if !defined(MSDOS_LIKE)
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2877
# 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
  2878
    FILEPOINTER f;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2879
    int ret, ioNum;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2880
    OBJ fp;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2881
    INT ioArg;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2882
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2883
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2884
    if ((fp = __INST(filePointer)) != nil) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2885
	if (__isSmallInteger(ioctlNumber) 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2886
	 && (__isSmallInteger(arg) 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2887
	     || (arg == nil)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2888
	     || __isBytes(arg)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2889
	     || __isExternalBytes(arg)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2890
	     || __isExternalAddress(arg))) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2891
	    f = __FILEVal(fp);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2892
	    ioNum = __intVal(ioctlNumber);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2893
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2894
	    __BEGIN_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2895
	    do {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2896
		__threadErrno = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2897
		if (arg == nil) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2898
		    ioArg = 0;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2899
		} else if (__isSmallInteger(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2900
		    ioArg = __intVal(arg);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2901
		} else if (__isExternalBytes(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2902
		    ioArg = (INT)(__externalBytesAddress(arg));
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2903
		} else if (__isExternalAddress(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2904
		    ioArg = (INT)(__externalAddressVal(arg));
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2905
		} else {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2906
		    ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2907
		}
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2908
		ret = ioctl(fileno(f), ioNum, ioArg);
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2909
	    } while ((ret < 0) && (__threadErrno == EINTR));
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2910
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2911
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2912
	    if (ret >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2913
		RETURN ( __MKSMALLINT(ret) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2914
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2915
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2916
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2917
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2918
    }
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  2919
# endif
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  2920
#endif
612
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
    lastErrorNumber notNil ifTrue:[^ self ioError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2923
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2924
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2925
     argument is not an integer
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2926
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2927
    (ioctlNumber isMemberOf:SmallInteger) ifFalse:[^ self primitiveFailed].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2928
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2929
     the system does not support ioctl (MSDOS or VMS)
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2930
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2931
    ^ self errorUnsupportedOperation
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2934
open
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2935
    "open the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2936
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2937
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2938
    ^ self subclassResponsibility
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2941
position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2942
    "return the position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2943
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2944
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2945
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2946
!
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
position:anInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2949
    "set the position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2950
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2951
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2952
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2953
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2954
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2955
reset
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2956
    "set the read position to the beginning of the collection"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2957
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2958
    self position:"0" 1
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2959
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2960
1044
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2961
setToEnd
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2962
    "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
  2963
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2964
    ^ self subclassResponsibility
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2965
!
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2966
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2967
truncateTo:newSize
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2968
    "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
  2969
     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
  2970
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2971
%{
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2972
#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
  2973
    FILEPOINTER f;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2974
    OBJ fp;
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2975
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2976
    if (((fp = __INST(filePointer)) != nil)
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2977
     && (__INST(mode) != @symbol(readonly))) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2978
	if (__isSmallInteger(newSize)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2979
	    f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2980
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2981
	    if (__INST(buffered) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2982
		__READING__(f)
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2983
		FFLUSH(f);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2984
		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
  2985
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2986
	    ftruncate(fileno(f), __intVal(newSize));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2987
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2988
	}
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2989
    }
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2990
#endif
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2991
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2992
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2993
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2994
    self errorUnsupportedOperation
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2995
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2996
    "
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2997
     |s|
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2998
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2999
     s := 'test' asFilename writeStream.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3000
     s next:1000 put:$a.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3001
     s truncateTo:100.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3002
     s close.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3003
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3004
     ('test' asFilename fileSize) printNL
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3005
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3006
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3007
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3008
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3009
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3010
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3011
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3012
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3013
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3014
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3015
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3016
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3017
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3018
    binary ifTrue:[
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3019
        buffer := ByteArray new:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3020
    ] ifFalse:[
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3021
        buffer := String new:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3022
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3023
    n := self nextAvailableBytes:count into:buffer startingAt:1.
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3024
    n == 0 ifTrue:[
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3025
        binary ifTrue:[
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3026
            ^ #[] 
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3027
        ].
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3028
        ^ ''
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3029
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3030
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3031
    n ~~ count ifTrue:[
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3032
        ^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3033
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3034
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3035
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3036
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3037
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:3 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3038
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3039
     (ReadStream on:'hello') nextAvailable:3
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3040
     (ReadStream on:'hello') nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3041
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3042
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3043
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3044
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3045
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3046
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3047
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3048
    "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
  3049
     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
  3050
     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
  3051
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3052
     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
  3053
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3054
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3055
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3056
     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
  3057
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3058
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3059
     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
  3060
     (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
  3061
     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
  3062
     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
  3063
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3064
     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
  3065
     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
  3066
     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
  3067
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3068
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3069
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3070
    int cnt, offs, ret, _buffered;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3071
    int objSize, nInstVars, nInstBytes;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3072
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3073
    char *extPtr;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3074
    OBJ pos, fp, oClass;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3075
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3076
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3077
    __INST(lastErrorNumber) = nil;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3078
    if (((fp = __INST(filePointer)) != nil)
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3079
        && (__INST(mode) != @symbol(writeonly))
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3080
        && __bothSmallInteger(count, start)
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3081
    ) {
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3082
        f = __FILEVal(fp);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3083
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3084
        cnt = __intVal(count);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3085
        offs = __intVal(start) - 1;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3086
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3087
        oClass = __Class(anObject);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3088
        if (oClass == ExternalBytes) {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3089
            OBJ sz;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3090
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3091
            nInstBytes = 0;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3092
            extPtr = (char *)(__externalBytesAddress(anObject));
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3093
            sz = __externalBytesSize(anObject);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3094
            if (__isSmallInteger(sz)) {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3095
                objSize = __intVal(sz);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3096
            } else {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3097
                objSize = 0; /* unknown */
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3098
            }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3099
        } else {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3100
            switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3101
                case BYTEARRAY:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3102
                case WORDARRAY:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3103
                case LONGARRAY:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3104
                case SWORDARRAY:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3105
                case SLONGARRAY:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3106
                case FLOATARRAY:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3107
                case DOUBLEARRAY:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3108
                    break;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3109
                default:
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3110
                    goto bad;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3111
            }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3112
            extPtr = (char *)0;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3113
            nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3114
            nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3115
            objSize = __Size(anObject) - nInstBytes;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3116
        }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3117
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3118
        if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3119
            _buffered = (__INST(buffered) == true);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3120
            if (_buffered) {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3121
                __READING__(f);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3122
            }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3123
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3124
            if (extPtr) {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3125
                __READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3126
            } else {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3127
                /*
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3128
                 * on interrupt, anObject may be moved to another location.
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3129
                 * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3130
                 * to get a new address.
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3131
                 */
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3132
                offs += nInstBytes;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3133
                __READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3134
            }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3135
#ifdef PRE_22_jan_2000
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3136
            if (ret > 0) 
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3137
#else
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3138
            /* 0 is NOT an EOF condition here ... */
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3139
            if (ret >= 0) 
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3140
#endif
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3141
            {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3142
                pos = __INST(position);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3143
                if (pos != nil) {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3144
                    __INST(position) = __MKSMALLINT(__intVal(pos) + ret);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3145
                }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3146
                RETURN (__MKSMALLINT(ret));
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3147
            }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3148
            if (ret == 0) { 
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3149
                __INST(hitEOF) = true;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3150
            } else /* ret < 0 */ {
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3151
                __INST(position) = nil;
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3152
                __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3153
            }
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3154
        }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3155
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3156
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3157
%}.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3158
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3159
    lastErrorNumber notNil ifTrue:[^ self readError].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3160
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3161
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3162
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3163
     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
  3164
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3165
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3166
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3167
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3168
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3169
    "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
  3170
     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
  3171
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3172
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3173
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3174
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3175
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3176
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3177
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3178
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3179
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3180
    if (((fp = __INST(filePointer)) != nil)
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3181
     && (__INST(mode) != @symbol(writeonly))) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3182
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3183
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3184
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3185
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3186
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3187
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3188
	__READBYTE__(ret, f, &byte, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3189
	if (ret > 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3190
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3191
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3192
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3193
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3194
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3195
	    RETURN (__MKSMALLINT(byte));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3196
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3197
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3198
	if (ret == 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3199
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3200
	} else /* ret < 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3201
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3202
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3203
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3204
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3205
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3206
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3207
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3208
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3209
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3210
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3211
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3212
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3213
    "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
  3214
     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
  3215
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3216
     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
  3217
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3218
     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
  3219
     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
  3220
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3221
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3222
     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
  3223
     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
  3224
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3225
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3226
     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
  3227
     (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
  3228
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3229
     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
  3230
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3231
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3232
     Use with care - non object oriented I/O.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3233
     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
  3234
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3235
     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
  3236
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3237
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3238
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3239
    int cnt, offs, ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3240
    int objSize, nInstVars, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3241
    char *extPtr;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3242
    OBJ pos, fp, oClass;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3243
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3244
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3245
    if (((fp = __INST(filePointer)) != nil)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3246
	&& (__INST(mode) != @symbol(writeonly))
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3247
	&& __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3248
    ) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3249
	f = __FILEVal(fp);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3250
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3251
	cnt = __intVal(count);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3252
	offs = __intVal(start) - 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3253
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3254
	oClass = __Class(anObject);
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3255
	if (oClass == ExternalBytes) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3256
	    OBJ sz;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3257
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3258
	    nInstBytes = 0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3259
	    extPtr = (char *)(__externalBytesAddress(anObject));
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3260
	    sz = __externalBytesSize(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3261
	    if (__isSmallInteger(sz)) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3262
		objSize = __intVal(sz);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3263
	    } else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3264
		objSize = 0; /* unknown */
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3265
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3266
	} else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3267
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3268
		case BYTEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3269
		case WORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3270
		case LONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3271
		case SWORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3272
		case SLONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3273
		case FLOATARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3274
		case DOUBLEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3275
		    break;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3276
		default:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3277
		    goto bad;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3278
	    }
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3279
	    extPtr = (char *)0;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3280
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3281
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3282
	    objSize = __Size(anObject) - nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3283
	}
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3284
	if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3285
	    _buffered = (__INST(buffered) == true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3286
	    if (_buffered) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3287
		__READING__(f);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3288
	    }
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  3289
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3290
	    if (extPtr) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3291
		__READBYTES__(ret, f, extPtr+offs, cnt, _buffered);
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3292
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3293
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3294
		 * on interrupt, anObject may be moved to another location.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3295
		 * 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
  3296
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3297
		offs += nInstBytes;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3298
		__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
  3299
	    }
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  3300
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3301
	    if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3302
		pos = __INST(position);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3303
		if (pos != nil) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3304
		    __INST(position) = __MKSMALLINT(__intVal(pos) + ret);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3305
		}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3306
		RETURN (__MKSMALLINT(ret));
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3307
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3308
	    if (ret == 0) { 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3309
		__INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3310
	    } else /* ret < 0 */ {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3311
		__INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3312
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3313
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3314
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3315
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3316
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3317
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3318
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3319
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3320
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3321
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3322
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3323
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3324
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3325
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3326
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3327
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3328
nextLong
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3329
    "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
  3330
     The returned value may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3331
     (msb-first for compatibility with other smalltalks)"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3332
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3333
    ^ self nextUnsignedLongMSB:true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3334
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3335
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3336
nextLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3337
    "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
  3338
     which may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3339
     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
  3340
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3341
     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
  3342
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3343
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3344
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3345
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3346
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3347
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3348
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3349
	&& (__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
  3350
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3351
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3352
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3353
	int value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3354
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3355
	    unsigned char buffer[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3356
	    int intVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3357
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3358
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3359
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3360
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3361
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3362
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3363
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3364
	__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
  3365
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3366
	if (ret == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3367
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3368
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3369
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3370
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3371
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3372
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3373
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3374
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3375
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3376
		value = (u.buffer[0] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3377
		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
  3378
		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
  3379
		value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3380
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3381
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3382
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3383
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3384
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3385
		value = (u.buffer[3] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3386
		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
  3387
		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
  3388
		value = (value << 8) | (u.buffer[0] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3389
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3390
	    }
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3391
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3392
	    RETURN ( __MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3393
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3394
	    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
  3395
		RETURN ( __MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3396
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3397
	    RETURN ( __MKLARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3398
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3399
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3400
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3401
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3402
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3403
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3404
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3405
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3406
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3407
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3408
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3409
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3410
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3411
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3412
    ^ self readError.
1079
d47cd86b487b Make methods signal-proof.
Stefan Vogel <sv@exept.de>
parents: 1068
diff changeset
  3413
362
claus
parents: 360
diff changeset
  3414
!
claus
parents: 360
diff changeset
  3415
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3416
nextShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3417
    "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
  3418
     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
  3419
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3420
     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
  3421
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3422
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3423
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3424
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3425
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3426
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3427
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3428
	&& (__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
  3429
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3430
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3431
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3432
	short value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3433
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3434
	    unsigned char buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3435
	    short shortVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3436
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3437
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3438
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3439
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3440
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3441
	    __READING__(f)
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
	__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
  3444
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3445
	if (ret == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3446
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3447
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3448
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3449
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3450
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3451
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3452
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3453
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3454
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3455
		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
  3456
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3457
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3458
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3459
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3460
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3461
		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
  3462
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3463
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3464
	    RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3465
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3466
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3467
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3468
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3469
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3470
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3471
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3472
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3473
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3474
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3475
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3476
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3477
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3478
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3479
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3480
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3481
nextUnsignedLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3482
    "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
  3483
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3484
     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
  3485
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3486
     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
  3487
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3488
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3489
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3490
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3491
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3492
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3493
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3494
	&& (__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
  3495
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3496
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3497
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3498
	unsigned INT value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3499
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3500
	    unsigned char buffer[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3501
	    unsigned int intVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3502
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3503
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3504
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3505
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3506
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3507
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3508
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3509
	__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
  3510
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3511
	if (ret == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3512
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3513
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3514
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3515
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3516
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3517
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3518
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3519
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3520
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3521
		value = u.buffer[0];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3522
		value = (value << 8) | u.buffer[1];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3523
		value = (value << 8) | u.buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3524
		value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3525
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3526
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3527
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3528
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3529
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3530
		value = u.buffer[3];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3531
		value = (value << 8) | u.buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3532
		value = (value << 8) | u.buffer[1];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3533
		value = (value << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3534
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3535
	    }
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3536
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3537
	    value &= 0xFFFFFFFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3538
	    RETURN (__MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3539
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3540
	    if (value <= _MAX_INT) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3541
		RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3542
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3543
	    RETURN (__MKULARGEINT(value) );
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3544
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3545
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3546
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3547
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3548
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3549
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3550
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3551
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3552
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3553
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3554
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3555
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3556
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3557
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3558
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3559
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3560
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3561
nextUnsignedShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3562
    "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
  3563
     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
  3564
     otherwise least-significant byte comes first.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3565
     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
  3566
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3567
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3568
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3569
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3570
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3571
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3572
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3573
	&& (__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
  3574
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3575
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3576
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3577
	unsigned int value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3578
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3579
	    unsigned char buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3580
	    unsigned short shortVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3581
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3582
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3583
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3584
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3585
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3586
	    __READING__(f)
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
	__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
  3589
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3590
	if (ret == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3591
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3592
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3593
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3594
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3595
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3596
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3597
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3598
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3599
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3600
		value = (u.buffer[0] << 8) | u.buffer[1];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3601
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3602
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3603
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3604
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3605
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3606
		value = (u.buffer[1] << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3607
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3608
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3609
	    RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3610
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3611
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3612
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3613
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3614
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3615
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3616
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3617
	}
612
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
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3620
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3621
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3622
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3623
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3624
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3625
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3626
nextWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3627
    "in text-mode:
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3628
	 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
  3629
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3630
     in binary-mode:
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3631
	 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
  3632
	 unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3633
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3634
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3635
	^ self nextUnsignedShortMSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3636
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3637
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3638
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3639
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3640
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3641
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3642
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3643
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3644
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3645
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3646
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3647
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3648
    char c;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3649
    OBJ pos, fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3650
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3651
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3652
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3653
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3654
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3655
	&& __isSmallInteger(aByteValue)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3656
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3657
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3658
	c = __intVal(aByteValue);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3659
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3660
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3661
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3662
	} 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3663
	__WRITEBYTE__(cnt, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3664
	if (cnt == 1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3665
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3666
	    if (pos != nil)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3667
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3668
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3669
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3670
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3671
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3672
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3673
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3674
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3675
    self writeError.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3676
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3677
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3678
nextPutBytes:count from:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3679
    "write count bytes from an object starting at index start.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3680
     return the number of bytes written - which could be 0.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3681
     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
  3682
     (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
  3683
     or an externalBytes object (with known size).
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3684
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3685
     Use with care - non object oriented i/o.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3686
     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
  3687
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3688
     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
  3689
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3690
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3691
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3692
    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
  3693
    int objSize, nInstVars, nInstBytes, _buffered;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3694
    char *extPtr;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3695
    OBJ oClass, pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3696
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3697
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3698
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3699
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3700
	&& __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3701
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3702
	len = __intVal(count);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3703
	offs = __intVal(start) - 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3704
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3705
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3706
	oClass = __Class(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3707
	if (oClass == ExternalBytes) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3708
	    OBJ sz;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3709
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3710
	    nInstBytes = 0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3711
	    extPtr = (char *)__externalBytesAddress(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3712
	    sz = __externalBytesSize(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3713
	    if (__isSmallInteger(sz)) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3714
		objSize = __intVal(sz);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3715
	    } else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3716
		objSize = 0; /* unknown */
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
	} else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3719
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3720
		case BYTEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3721
		case WORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3722
		case LONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3723
		case SWORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3724
		case SLONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3725
		case FLOATARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3726
		case DOUBLEARRAY:
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3727
		    break;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3728
		default:
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3729
		    goto bad;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3730
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3731
	    extPtr = (char *)0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3732
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3733
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3734
	    objSize = __Size(anObject) - nInstBytes;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3735
	}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3736
	if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3737
	    if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3738
		__WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3739
	    }
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3740
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3741
	    if (extPtr) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3742
		__WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered); 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3743
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3744
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3745
		 * on interrupt, anObject may be moved to another location.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3746
		 * 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
  3747
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3748
		offs += nInstBytes;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3749
		__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
  3750
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3751
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3752
	    if (cnt >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3753
		pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3754
		if (pos != nil)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3755
		    __INST(position) = __MKSMALLINT(__intVal(pos) + cnt);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3756
		RETURN ( __MKSMALLINT(cnt) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3757
	    }
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3758
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3759
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3760
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3761
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3762
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3763
    lastErrorNumber notNil ifTrue:[^ self writeError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3764
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3765
    (mode == #readonly) ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3766
    ^ self primitiveFailed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3767
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3768
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3769
nextPutLong:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3770
    "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
  3771
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3772
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3773
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3774
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3775
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3776
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3777
    union {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3778
	char bytes[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3779
	int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3780
    } u;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3781
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3782
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3783
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3784
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3785
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3786
    if (__isSmallInteger(aNumber)) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3787
	num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3788
    } else {
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3789
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3790
	goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3791
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3792
	num = __longIntVal(aNumber);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3793
	if (num == 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3794
	    num = __signedLongIntVal(aNumber);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3795
	    if (num == 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3796
		/* 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
  3797
		 * (handled by the fallBack code)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3798
		 */
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3799
		goto badArg;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3800
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3801
	}
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3802
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3803
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3804
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3805
    if (((fp = __INST(filePointer)) != nil)
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3806
     && (__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
  3807
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3808
	if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3809
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3810
	    u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3811
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3812
	    u.bytes[0] = (num >> 24) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3813
	    u.bytes[1] = (num >> 16) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3814
	    u.bytes[2] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3815
	    u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3816
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3817
	} else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3818
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3819
	    u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3820
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3821
	    u.bytes[3] = (num >> 24) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3822
	    u.bytes[2] = (num >> 16) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3823
	    u.bytes[1] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3824
	    u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3825
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3826
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3827
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3828
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3829
	if (_buffered = (__INST(buffered) == true)) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3830
	    __WRITING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3831
	} 
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3832
	__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
  3833
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3834
	if (cnt == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3835
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3836
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3837
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3838
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3839
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3840
	    RETURN ( self );
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3841
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3842
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3843
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3844
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3845
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3846
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3847
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3848
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3849
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3850
    aNumber isInteger ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3851
	^ super nextPutLong:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3852
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3853
    self argumentMustBeInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3854
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3855
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3856
nextPutShort:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3857
    "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
  3858
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3859
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3860
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3861
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3862
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3863
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3864
    union {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3865
	char bytes[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3866
	short shortVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3867
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3868
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3869
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3870
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3871
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3872
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3873
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3874
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3875
	&& (__INST(mode) != @symbol(readonly))
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3876
	&& __isSmallInteger(aNumber)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3877
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3878
	num = __intVal(aNumber);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3879
	if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3880
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3881
	    u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3882
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3883
	    u.bytes[0] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3884
	    u.bytes[1] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3885
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3886
	} else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3887
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3888
	    u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3889
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3890
	    u.bytes[1] = (num >> 8) & 0xFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3891
	    u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3892
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3893
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3894
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3895
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3896
	if (_buffered = (__INST(buffered) == true)) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3897
	    __WRITING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3898
	} 
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3899
	__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
  3900
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3901
	if (cnt == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3902
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3903
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3904
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3905
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3906
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3907
	    RETURN ( self );
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3908
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3909
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3910
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3911
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3912
    lastErrorNumber notNil ifTrue:[^ self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3913
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3914
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3915
    self argumentMustBeInteger
10
claus
parents: 5
diff changeset
  3916
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3917
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3918
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3919
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3920
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3921
    hitEOF := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3922
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3923
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3924
connectTo:aFileDescriptor withMode:openmode
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3925
    "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
  3926
     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
  3927
     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
  3928
     a Stream object. 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3929
     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
  3930
     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
  3931
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3932
    |retVal|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3933
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  3934
    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
  3935
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3936
    FILEPOINTER f;
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3937
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  3938
    FILE *fdopen();
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
    if (__isSmallInteger(aFileDescriptor) 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3941
     && (__qClass(openmode)== @global(String))) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3942
	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
  3943
	if (f == NULL) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3944
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3945
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3946
	} else {
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  3947
            if (@global(ExternalStream:FileOpenTrace) == true) {
5204
9e0445bc00ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5203
diff changeset
  3948
                fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", __intVal(aFileDescriptor), f);
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  3949
            }
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  3950
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3951
	    __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
  3952
	    __INST(position) = __MKSMALLINT(1);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3953
	    retVal = self;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3954
	}
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3955
    }
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3956
%}.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3957
    retVal notNil ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3958
	buffered := true.       "default is buffered"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3959
	Lobby register:self
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3960
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3961
    lastErrorNumber notNil ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3962
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3963
	 the open failed for some reason ...
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3964
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3965
	^ self openError
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3966
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3967
    ^ retVal
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3968
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  3969
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3970
open:aPath withMode:mode
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3971
    "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
  3972
     variable. Careful: this does not care for any other state."
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3973
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3974
    |ok|
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3975
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3976
    ok := false.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3977
%{
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3978
    FILE *f; 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3979
    OBJ fp;
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
    if (__isString(aPath)) { 
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  3982
	__BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3983
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3984
	f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3985
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3986
	do {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3987
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3988
	} while ((f == NULL) && (__threadErrno == EINTR));
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  3989
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3990
	__END_INTERRUPTABLE__
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3991
	if (f == NULL) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3992
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3993
	} else {
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  3994
            if (@global(ExternalStream:FileOpenTrace) == true) {
5204
9e0445bc00ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5203
diff changeset
  3995
                fprintf(stderr, "fopen %s [ExternalStream] -> %x\n", __stringVal(aPath), f);
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  3996
            }
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3997
	    __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
  3998
	    ok = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3999
	}
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4000
    }
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4001
%}.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4002
    ok ifFalse:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4003
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4004
	 the open failed for some reason ...
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4005
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4006
	^ self openError
4456
914ce6ac4052 initialize position
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
  4007
    ].
914ce6ac4052 initialize position
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
  4008
    position := 1.
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4009
    Lobby register:self. 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4010
!
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4011
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4012
reOpen
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4013
    "sent after snapin to reopen streams.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4014
     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
  4015
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4016
    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
  4017
    filePointer := nil.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4018
    Lobby unregister:self.
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4019
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4020
    "Modified: 10.1.1997 / 17:50:44 / cg"
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4023
setLastError:aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4024
    lastErrorNumber := aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4025
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4026
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4027
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4028
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4029
isBinary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4030
    "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
  4031
     The default when created is false."
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
    ^ binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4034
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4035
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4036
isExternalStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4037
    "return true, if the receiver is some kind of externalStream;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4038
     true is returned here - the method redefined from Object."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4039
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4040
    ^ true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4041
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4042
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4043
isOpen 
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4044
    "return true, if this stream is open"
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4045
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4046
    ^ filePointer notNil
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4047
!
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4048
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4049
isReadable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4050
    "return true, if this stream can be read from"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4051
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4052
    ^ (mode ~~ #writeonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4053
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4054
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4055
isWritable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4056
    "return true, if this stream can be written to"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4057
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4058
    ^ (mode ~~ #readonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4059
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4060
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4061
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4062
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4063
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4064
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4065
     In binary mode, an integer is returned, otherwise a character.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4066
     If there are no more elements, nil is returned."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4067
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4068
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4069
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4070
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4071
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4072
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4073
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4074
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4075
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4076
	&& (__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
  4077
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4078
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4079
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4080
	_buffered = (__INST(buffered) == true);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4081
	if (_buffered) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4082
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4083
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4084
	__READBYTE__(ret, f, &ch, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4085
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4086
	if (ret > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4087
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4088
	    if (__isSmallInteger(pos)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4089
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4090
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4091
		__INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4092
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4093
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4094
		RETURN ( __MKSMALLINT(ch) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4095
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4096
	    RETURN ( __MKCHARACTER(ch) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4097
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4098
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4099
	__INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4100
	if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4101
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4102
	} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4103
	    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4104
	}
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
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4107
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4108
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4109
    filePointer isNil ifTrue:[^ self errorNotOpen].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4110
    ^ self errorWriteOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4111
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4112
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4113
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4114
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4115
     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
  4116
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4117
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4118
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4119
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4120
	coll := ByteArray uninitializedNew:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4121
    ] ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4122
	coll := String new:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4123
    ].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4124
    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
  4125
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4126
    "/ for readStream protocol compatibility, 
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4127
    "/ we must raise an exception here.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4128
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4129
    nRead < count ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4130
	^ self pastEnd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4131
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4132
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4133
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4134
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4135
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4136
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4137
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4138
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4139
     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
  4140
     If there are no more elements, nil is returned."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4141
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4142
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4143
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4144
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4145
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4146
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4147
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4148
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4149
    if ((ra = __INST(readAhead)) != nil) {
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4150
	if (__INST(binary) == true) {
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4151
	    RETURN ( ra );
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4152
	}
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4153
	c = __intVal(ra);
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4154
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4155
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4156
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4157
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4158
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4159
    if (((fp = __INST(filePointer)) != nil)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4160
	&& (__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
  4161
    ) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4162
	f = __FILEVal(fp);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4163
	_buffered = (__INST(buffered) == true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4164
	if (_buffered) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4165
	    __READING__(f)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4166
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4167
	__READBYTE__(ret, f, &c, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4168
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4169
	if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4170
	    __UNGETC__(c, f, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4171
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4172
	    if (__INST(binary) == true) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4173
		RETURN ( __MKSMALLINT(c) );
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4174
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4175
	    RETURN ( __MKCHARACTER(c) );
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4176
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4177
	if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4178
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4179
	} else /* ret == 0 */ {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4180
	    __INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4181
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4182
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4183
%}.
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4184
    hitEOF ifTrue:[^ self pastEnd]. 
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4185
    lastErrorNumber notNil ifTrue:[^ self readError].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4186
    filePointer isNil ifTrue:[^ self errorNotOpen].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4187
    ^ self errorWriteOnly
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4188
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4189
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4190
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4191
    "return a collection of the elements up-to the end.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4192
     Return nil if the stream-end is reached before."
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4193
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4194
    |answerStream ch|
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4195
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4196
    answerStream := WriteStream on:(self contentsSpecies new).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4197
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4198
	ch := self next.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4199
	ch notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4200
	    answerStream nextPut:ch
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4201
	]
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4202
    ].
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4203
    ^ answerStream contents
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4204
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4205
    "Created: 25.4.1996 / 14:40:31 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4206
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4207
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4208
!ExternalStream methodsFor:'reimplemented for speed'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4209
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4210
nextAlphaNumericWord
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4211
    "read the next word (i.e. up to non letter-or-digit) after first
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4212
     skipping any whiteSpace.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4213
     Return a string containing those characters.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4214
     There is a limit of 1023 characters in the word - if longer,
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4215
     it is truncated."
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4216
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4217
%{  /* STACK: 2000 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4218
    FILEPOINTER f;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4219
    int len;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4220
    char buffer[1024];
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4221
    unsigned char ch;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4222
    int cnt = 0;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4223
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4224
    OBJ fp;
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4225
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4226
    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
  4227
     && (__INST(mode) != @symbol(writeonly))
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4228
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4229
	f = __FILEVal(fp);
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4230
	_buffered = (__INST(buffered) == true);
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4231
	if (_buffered) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4232
	    __READING__(f)
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4233
	}
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  4234
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4235
	/*
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4236
	 * skip whiteSpace first ...
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
	do {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4239
	    __READBYTE__(ret, f, &ch, _buffered);
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
		cnt++;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4242
	    else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4243
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4244
	} while (
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4245
#ifndef NON_ASCII
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4246
		 (ch < ' ') ||
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4247
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4248
		 (ch == ' ' ) || (ch == '\t') || (ch == '\r')
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4249
	      || (ch == '\n') || (ch == 0x0b));
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
	len = 0;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4252
	while (ret > 0 && 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4253
	       (((ch >= 'a') && (ch <= 'z')) ||
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4254
		((ch >= 'A') && (ch <= 'Z')) ||
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4255
		((ch >= '0') && (ch <= '9')))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4256
	) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4257
	    buffer[len++] = ch;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4258
	    if (len >= (sizeof(buffer)-1)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4259
		/* emergency */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4260
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4261
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4262
	    __READBYTE__(ret, f, &ch, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4263
	    if (ret > 0)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4264
		cnt++;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4265
	    else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4266
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4267
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4268
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4269
	if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4270
	    if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4271
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4272
		goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4273
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4274
	    else if (ret == 0)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4275
		__INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4276
	} else {
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4277
	    __UNGETC__(ch, f, _buffered);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4278
	    cnt--;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4279
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4280
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4281
	if (__INST(position) != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4282
	    __INST(position) = __MKSMALLINT(__intVal(__INST(position)) + cnt);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4283
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4284
	if (len != 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4285
	    buffer[len] = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4286
	    RETURN ( __MKSTRING_L(buffer, len) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4287
	}
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4288
    }
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4289
err: ;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4290
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4291
    hitEOF ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4292
    lastErrorNumber notNil ifTrue:[^ self readError].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4293
    filePointer isNil ifTrue:[^ self errorNotOpen].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4294
    ^ self errorWriteOnly
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4295
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4296
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4297
nextChunk
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4298
    "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
  4299
     exclamation mark. Within the chunk, exclamation marks have to be doubled -
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4300
     except within primitive code (this exception was added to make it easier
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4301
     to edit primitive code with external editors). This means, that other
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4302
     Smalltalks cannot always read chunks containing primitive code - but that
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4303
     doesnt really matter, since C-primitives are an ST/X feature anyway.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4304
     Reimplemented here for more speed."
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4305
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4306
    |retVal outOfMemory buffer|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4307
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4308
    filePointer isNil ifTrue:[^ self errorNotOpen].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4309
    binary ifTrue:[^ self errorBinary].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4310
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4311
2854
3c8bf66e4e7d give nextChunk a bit more stack
Claus Gittinger <cg@exept.de>
parents: 2766
diff changeset
  4312
%{  /* 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
  4313
    /*
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4314
     * 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
  4315
     * 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
  4316
     * 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
  4317
     * 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
  4318
     */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4319
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4320
    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
  4321
    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
  4322
    int ret;
1823
51ffb7231437 type casts
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4323
    unsigned char *bufferPtr = (unsigned char *)0;
2874
020627074c9e oops - nextChunk could access invalid memory due
Claus Gittinger <cg@exept.de>
parents: 2861
diff changeset
  4324
    unsigned char fastBuffer[8000];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4325
    REGISTER int index;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4326
    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
  4327
    int atBeginOfLine = 1, inPrimitive = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4328
    int haveCR = 0, haveNL = 0;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4329
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4330
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4331
    f = __FILEVal(__INST(filePointer));
668
73165201a9da nextChunk: %{ is only recognized if at begin-of-line
Claus Gittinger <cg@exept.de>
parents: 665
diff changeset
  4332
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4333
    _buffered = (__INST(buffered) == true);
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4334
    if (_buffered) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4335
	__READING__(f)
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4336
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4337
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4338
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4339
     * skip spaces
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4340
     */
673
2c3a4a536cd1 oops - handling of exclas within primitives was wrong
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  4341
    c = '\n';
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4342
    while (! done) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4343
	lastC = c;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4344
	__READBYTE__(ret, f, &c, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4345
	if (ret <= 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4346
	    goto err;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4347
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4348
	nread++;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4349
	atBeginOfLine = 0;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4350
	switch (c) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4351
	    case '\n':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4352
	    case ' ':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4353
	    case '\t':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4354
	    case '\r':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4355
	    case '\b':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4356
	    case '\014':
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4357
		break;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4358
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4359
	    default:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4360
		atBeginOfLine = (lastC == '\n');
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4361
		done = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4362
		break;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4363
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4364
    }
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4365
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4366
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4367
     * read chunk into a buffer
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4368
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4369
    bufferPtr = fastBuffer; fastFlag = 1;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4370
    currSize = sizeof(fastBuffer);
362
claus
parents: 360
diff changeset
  4371
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4372
    index = 0;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4373
    for (;;) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4374
	__READBYTE__(ret, f, &peekC, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4375
	if ((c == '%') && atBeginOfLine && ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4376
	    if (peekC == '{') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4377
		inPrimitive = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4378
	    } else if (peekC == '}') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4379
		inPrimitive = 0;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4380
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4381
	} else if (c == '!' && !inPrimitive) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4382
	    if (ret > 0 && peekC == '!') {
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
		 * convert double-! to a single !
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
		__READBYTE__(ret, f, &peekC, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4387
		if (ret > 0)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4388
		    nread++;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4389
	    } else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4390
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4391
		 * End of chunk, push back lookahead character
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4392
		 * and leave loop.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4393
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4394
		if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4395
		    __UNGETC__(peekC, f, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4396
		} else
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4397
		    ret = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4398
		break; 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4399
	    }
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
	/* 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4403
	 * do we have to resize the buffer ? 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4404
	 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4405
	if ((index+2) >= currSize) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4406
	    OBJ newBuffer;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4407
	    unsigned char *nbp;
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
	    newBuffer = __MKEMPTYSTRING(currSize * 2);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4410
	    if (!fastFlag) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4411
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4412
		 * refetch - buffer could be moved by GC
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4413
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4414
		bufferPtr = __stringVal(buffer);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4415
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4416
	    if (newBuffer == nil) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4417
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4418
		 * mhmh - chunk seems to be very big ....
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
		outOfMemory = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4421
		goto err;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4422
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4423
	    nbp = __stringVal(newBuffer);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4424
	    bcopy(bufferPtr, nbp, index);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4425
	    bufferPtr = nbp;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4426
	    bufferPtr[index] = '\0';
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4427
	    buffer = newBuffer;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4428
	    fastFlag = 0;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4429
	    currSize = currSize * 2;
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
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4432
	if (!fastFlag) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4433
	    /*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4434
	     * old buffer may have moved (interrupt while reading)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4435
	     * - refetch pointer
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4436
	     */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4437
	    bufferPtr = __stringVal(buffer);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4438
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4439
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4440
	/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4441
	 * filter out cr-nl; make it nl
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
	if (c == '\n') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4444
	    haveNL = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4445
	    if (index > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4446
		if (bufferPtr[index-1] == '\r') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4447
		    index--;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4448
		}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4449
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4450
	} else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4451
	    if (c == '\r') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4452
		haveCR = 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4453
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4454
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4455
	bufferPtr[index++] = c;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4456
	if (ret <= 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4457
	    if (ret == 0)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4458
		break;          /* End of chunk reached */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4459
	    goto err;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4460
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4461
	nread++;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4462
	atBeginOfLine = (c == '\n');
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4463
	c = peekC;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4464
    }
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4465
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4466
    /*
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4467
     * care for CR-limited files.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4468
     * Replace CR's by NL's
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4469
     */
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4470
    if (!haveNL && haveCR) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4471
	int i;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4472
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4473
	for (i=index-1; i>=0; i--) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4474
	    if (bufferPtr[i] == '\r') {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4475
		bufferPtr[i] = '\n';
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4476
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4477
	}
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4478
    }
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4479
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4480
    /*
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4481
     * 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
  4482
     * 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
  4483
     * 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
  4484
     * fast (C) buffer or from real (ST) buffer.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4485
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4486
    if (fastFlag) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4487
	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
  4488
    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4489
	retVal = __MKSTRING_ST_L(buffer, index);
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4490
    }
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4491
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  4492
err: ;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4493
    if (ret <= 0) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4494
	if (ret == 0)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4495
	    __INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4496
	else /* ret < 0 */
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4497
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4498
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4499
    if (__INST(position) != nil) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4500
	__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
  4501
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4502
%}.
370
claus
parents: 369
diff changeset
  4503
    retVal isNil ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4504
	"/
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4505
	"/ 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
  4506
	"/ or if running out of malloc-memory
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4507
	"/
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4508
	hitEOF ifTrue:[^ self pastEnd].
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4509
	lastErrorNumber notNil ifTrue:[^ self readError].
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4510
	outOfMemory == true ifTrue:[
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4511
	    "
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4512
	     buffer memory allocation failed.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4513
	     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
  4514
	     chunk. (seems to be too big of a chunk ...)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4515
	     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
  4516
	    "
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4517
	    ^ ObjectMemory allocationFailureSignal raise.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4518
	]
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4519
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4520
    ^ retVal
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4521
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4522
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4523
nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4524
    "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
  4525
     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
  4526
     the element after anObject.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4527
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4528
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4529
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4530
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4531
    int ret, peekValue;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4532
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4533
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4534
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4535
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4536
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4537
	&& (__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
  4538
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4539
	if ((__INST(binary) == true) && __isSmallInteger(anObject)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4540
	    peekValue = __intVal(anObject) & 0xFF;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4541
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4542
	    if ((__INST(binary) != true) && __isCharacter(anObject)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4543
		peekValue = __intVal(_characterVal(anObject)) & 0xFF;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4544
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4545
		peekValue = -1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4546
	    }   
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4547
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4548
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4549
	if (peekValue >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4550
	    int _buffered;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4551
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4552
	    __INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4553
	    f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4554
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4555
	    if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4556
		__READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4557
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4558
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4559
	    for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4560
		__READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4561
		if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4562
		    if (ret < 0)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4563
			__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4564
		    else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4565
			__INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4566
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4567
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4568
		if (c == peekValue) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4569
		    RETURN (anObject);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4570
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4571
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4572
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4573
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4574
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4575
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4576
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4577
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4578
    ^ super nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4579
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4580
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4581
peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4582
    "return true and move past next element, if next == something.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4583
     Otherwise, stay and return false. False is also returned
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4584
     when EOF is encountered.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4585
     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
  4586
     text mode; only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4587
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4588
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4589
    FILEPOINTER f;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4590
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4591
    int ret, peekValue, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4592
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4593
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4594
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4595
    if (((fp = __INST(filePointer)) != nil)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4596
	&& (__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
  4597
    ) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4598
	if (__INST(binary) == true) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4599
	    if (__isSmallInteger(anObject)) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4600
		peekValue = __intVal(anObject) & 0xFF;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4601
	    } else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4602
		goto bad;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4603
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4604
	} else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4605
	    if (__isCharacter(anObject)) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4606
		peekValue = __intVal(_characterVal(anObject)) & 0xFF;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4607
	    } else {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4608
		goto bad;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4609
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4610
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4611
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4612
	f = __FILEVal(fp);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4613
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4614
	_buffered = (__INST(buffered) == true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4615
	if (_buffered) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4616
	    __READING__(f)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4617
	}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4618
	__READBYTE__(ret, f, &c, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4619
	if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4620
	    if (c == peekValue) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4621
		OBJ pos;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4622
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4623
		if ((pos = __INST(position)) != nil) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4624
		    __INST(position) = __MKSMALLINT(__intVal(pos) + 1);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4625
		}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4626
		RETURN (true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4627
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4628
	    __UNGETC__(c, f, _buffered);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4629
	    RETURN (false);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4630
	} 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4631
	if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4632
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4633
	} else /* ret == 0 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4634
	    __INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4635
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4636
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4637
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4638
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4639
    hitEOF ifTrue:[self pastEnd. ^ false].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4640
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4641
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4642
    ^ super peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4643
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4644
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4645
skipLine
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4646
    "read the next line (characters up to newline) skip only;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4647
     return nil if EOF reached, self otherwise. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4648
     Not allowed in binary mode."
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
%{  /* STACK:2000 */
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4651
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4652
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4653
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4654
    int ret, _buffered;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4655
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4656
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4657
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4658
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4659
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4660
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4661
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4662
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4663
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4664
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4665
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4666
	for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4667
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4668
	    if (ret > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4669
		if (c == '\n')
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4670
		    RETURN(self) 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4671
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4672
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4673
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4674
	if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4675
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4676
	} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4677
	    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4678
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4679
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4680
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4681
    hitEOF ifTrue:[^ self pastEnd].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4682
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4683
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4684
    binary ifTrue:[self errorBinary. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4685
    self errorWriteOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4686
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4687
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4688
skipSeparators
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4689
    "skip all whitespace; next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4690
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4691
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4692
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4693
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4694
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4695
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4696
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4697
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4698
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4699
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4700
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4701
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4702
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4703
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4704
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4705
	_buffered = (__INST(buffered) == true);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4706
	if (_buffered) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4707
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4708
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4709
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4710
	while (1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4711
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4712
	    if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4713
		if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4714
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4715
		} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4716
		    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4717
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4718
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4719
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4720
	    switch (c) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4721
		case ' ':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4722
		case '\t':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4723
		case '\n':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4724
		case '\r':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4725
		case '\b':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4726
		case '\f':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4727
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4728
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4729
		default:
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4730
		    __UNGETC__(c, f, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4731
		    RETURN ( __MKCHARACTER(c & 0xFF) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4732
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4733
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4734
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4735
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4736
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4737
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4738
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4739
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4740
    ^ self errorBinary.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4741
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4742
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4743
skipSeparatorsExceptCR
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4744
    "skip all whitespace but no newlines;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4745
     next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4746
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4747
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4748
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4749
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4750
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4751
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4752
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4753
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4754
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4755
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4756
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4757
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4758
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4759
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4760
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4761
	_buffered = (__INST(buffered) == true);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4762
	if (_buffered) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4763
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4764
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4765
	while (1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4766
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4767
	    if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4768
		if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4769
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4770
		} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4771
		    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4772
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4773
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4774
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4775
	    switch (c) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4776
		case ' ':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4777
		case '\t':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4778
		case '\b':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4779
		case '\f':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4780
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4781
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4782
		default:
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4783
		    __UNGETC__(c, f, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4784
		    RETURN ( __MKCHARACTER(c & 0xFF) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4785
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4786
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4787
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4788
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4789
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4790
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4791
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4792
    (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
  4793
    ^ self errorBinary.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4794
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4795
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4796
skipThrough:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4797
    "skip all characters up-to and including aCharacter. Return the receiver if
671
53de87163ad5 spelling
Claus Gittinger <cg@exept.de>
parents: 668
diff changeset
  4798
     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
  4799
     The next read operation will return the character after aCharacter.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4800
     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
  4801
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4802
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4803
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4804
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4805
    REGISTER int cSearch;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4806
    unsigned char c;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4807
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4808
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4809
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4810
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4811
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4812
	&& (__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
  4813
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4814
	if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4815
	    /* searched for object must be a smallInteger */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4816
	    if (! __isSmallInteger(aCharacter)) goto badArgument;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4817
	    cSearch = __intVal(aCharacter);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4818
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4819
	    /* searched for object must be a character */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4820
	    if (! __isCharacter(aCharacter)) goto badArgument;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4821
	    cSearch = __intVal(_characterVal(aCharacter));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4822
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4823
	/* Q: should we just say: "not found" ? */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4824
	if ((cSearch < 0) || (cSearch > 255)) goto badArgument;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4825
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4826
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4827
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4828
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4829
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4830
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4831
	while (1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4832
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4833
	    if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4834
		if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4835
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4836
		} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4837
		    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4838
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4839
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4840
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4841
	    if (c == cSearch) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4842
		RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4843
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4844
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4845
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4846
badArgument: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4847
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4848
    hitEOF ifTrue:[^ self pastEnd].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4849
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4850
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4851
    (mode == #writeonly) ifTrue:[self errorWriteOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4852
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4853
     argument must be integer/character in binary mode, 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4854
     character in text mode
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4855
    "
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4856
    self error:'invalid argument'.
612
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
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4859
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4860
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4861
     s skipThrough:$=.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4862
     s next:10
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4863
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4864
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4865
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4866
skipToAll:aString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4867
    "skip for the sequence given by the argument, aCollection;
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4868
     return nil if not found, self otherwise. 
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4869
     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
  4870
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4871
    |oldPos|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4872
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4873
    oldPos := self position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4874
    (self skipThroughAll:aString) isNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4875
	"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4876
	 restore position
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4877
	"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4878
	self position:oldPos.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4879
	^ nil
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4880
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4881
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4882
     position before match-string
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4883
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4884
    self position:(self position - aString size).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4885
    ^ self
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4886
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4887
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4888
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4889
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4890
     s skipToAll:'are'.
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4891
     s next:10 
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4892
    "
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4893
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  4894
    "Modified: 26.6.1996 / 09:22:05 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4895
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4896
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4897
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4898
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4899
atEnd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4900
    "return true, if position is at end"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4901
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4902
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4903
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4904
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4905
    char c;
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  4906
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4907
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4908
    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
  4909
	RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4910
    }
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4911
    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
  4912
	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
  4913
	    RETURN (true);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4914
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4915
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4916
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4917
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4918
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4919
    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
  4920
	f = __FILEVal(fp);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4921
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4922
	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
  4923
	    __READING__(f);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4924
	} else {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4925
	    if (__INST(readAhead) != nil) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4926
		RETURN (false);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4927
	    }
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
	/*
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4931
	 * read ahead ...
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4932
	 */
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4933
	do {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4934
	    __BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4935
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4936
#ifdef WIN32
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4937
	    __threadErrno = 0;
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  4938
#endif
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4939
	    __READBYTE__(ret, f, &c, _buffered);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4940
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4941
	    __END_INTERRUPTABLE__
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4942
	} while ((ret < 0) && (__threadErrno == EINTR));
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4943
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4944
#if defined(WIN32) && defined(EPIPE)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4945
	if ((ret < 0) && (__threadErrno == EPIPE)) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4946
	    ret = 0;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4947
	    __threadErrno = 0;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4948
	}
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4949
#endif
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4950
	if (ret > 0) {
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4951
	    __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
  4952
	    RETURN (false);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4953
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4954
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4955
	if (ret == 0) { 
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4956
	    __INST(hitEOF) = true;
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4957
	    RETURN (true);
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4958
	}
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4959
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4960
	/* ret < 0 */
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4961
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
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
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4964
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4965
    ^ self errorNotOpen
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4966
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4967
    "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
  4968
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4969
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4970
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4971
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4972
    "return true, if any data is available for reading (i.e.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4973
     a read operation will not block the smalltalk process), false otherwise."
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
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4976
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  4977
    readAhead notNil ifTrue:[^ true].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4978
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4979
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4980
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4981
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4982
    ^ OperatingSystem readCheck:fd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4983
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4984
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4985
     |pipe|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4986
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4987
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4988
     pipe canReadWithoutBlocking ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4989
	 Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4990
     ] ifFalse:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  4991
	 Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4992
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4993
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4994
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  4995
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  4996
    "Modified: 25.9.1997 / 13:08:45 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4997
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4998
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4999
canWriteWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5000
    "return true, if data can be written into the stream 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5001
     (i.e. a write operation will not block the smalltalk process)."
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
    |fd|
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
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5006
    mode == #readonly ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5007
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5008
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5009
    ^ OperatingSystem writeCheck:fd
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5010
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5011
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5012
numAvailable
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5013
    "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
  5014
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5015
    |fd|
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5016
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5017
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5018
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5019
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5020
    fd := self fileDescriptor.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5021
    ^ OperatingSystem numAvailableForReadOn:fd.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5022
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5023
"/    self atEnd ifTrue:[^ 0].
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5024
"/    self canReadWithoutBlocking ifTrue:[
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5025
"/        ^ 1
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5026
"/    ].
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5027
"/    ^ 0
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5028
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5029
    "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
  5030
    "Modified: / 4.2.1998 / 17:31:11 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5031
! !
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
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5034
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5035
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5036
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5037
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5038
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5039
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5040
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5041
readWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5042
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5043
     becomes ready for reading. If data is already available,
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5044
     return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5045
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5046
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5047
    self readWaitWithTimeoutMs:nil
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5048
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5049
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5050
readWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5051
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5052
    ^ self readWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5053
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5054
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5055
readWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5056
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5057
     becomes ready for reading or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5058
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5059
     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
  5060
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5061
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5062
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5063
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5064
    timeout notNil ifTrue:[
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5065
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5066
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5067
    ^ self readWaitWithTimeoutMs:ms
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5070
readWaitWithTimeoutMs:timeout 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5071
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5072
     becomes ready for reading or a timeout (in milliseconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5073
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5074
     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
  5075
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5076
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5077
    |fd inputSema hasData wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5078
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5079
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5080
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5081
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5082
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5083
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5084
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5085
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5086
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5087
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5088
    hasData := OperatingSystem readCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5089
    hasData ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5090
	inputSema := Semaphore new name:'readWait'.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5091
	[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5092
	    timeout notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5093
		Processor signal:inputSema afterMilliseconds:timeout 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5094
	    ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5095
	    Processor signal:inputSema onInput:fd.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5096
	    Processor activeProcess state:#ioWait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5097
	    inputSema wait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5098
	    Processor disableSemaphore:inputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5099
	    hasData := OperatingSystem readCheck:fd
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5100
	] valueOnUnwindDo:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5101
	    Processor disableSemaphore:inputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5102
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5103
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5104
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5105
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5106
    ^ hasData not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5107
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5108
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5109
readWriteWait
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5110
    "suspend the current process, until the receiver
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5111
     becomes ready for writing or reading.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5112
     Return immediate if the receiver is already ready. 
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5113
     The other threads are not affected by the wait.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5114
     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
  5115
     be finished."
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5116
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5117
    self readWriteWaitWithTimeoutMs:nil
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5118
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5119
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5120
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5121
    "suspend the current process, until the receiver
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5122
     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
  5123
     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
  5124
     Return immediate if the receiver is already ready. 
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5125
     The other threads are not affected by the wait.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5126
     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
  5127
     be finished."
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5128
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5129
    |fd sema canReadWrite wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5130
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5131
    filePointer isNil ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5132
	^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5133
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5134
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5135
    fd := self fileDescriptor.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5136
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5137
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5138
    wasBlocked := OperatingSystem blockInterrupts.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5139
    canReadWrite := OperatingSystem readWriteCheck:fd.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5140
    canReadWrite ifFalse:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5141
	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
  5142
	[
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5143
	    timeout notNil ifTrue:[
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5144
		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
  5145
	    ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5146
	    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
  5147
	    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
  5148
	    Processor activeProcess state:#ioWait.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5149
	    sema wait.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5150
	    Processor disableSemaphore:sema.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5151
	    canReadWrite := OperatingSystem readWriteCheck:fd
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5152
	] valueOnUnwindDo:[
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5153
	    Processor disableSemaphore:sema.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5154
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5155
	]
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5156
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5157
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5158
    ^ canReadWrite not
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5159
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5160
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5161
writeWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5162
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5163
     becomes ready for writing.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5164
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5165
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5166
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5167
    self writeWaitWithTimeoutMs:nil
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
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5170
writeWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5171
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5172
    ^ self writeWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5173
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5174
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5175
writeWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5176
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5177
     becomes ready for writing or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5178
     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
  5179
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5180
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5181
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5182
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5183
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5184
    timeout notNil ifTrue:[
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5185
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5186
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5187
    ^ self writeWaitWithTimeoutMs:ms
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5188
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5189
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5190
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5191
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5192
     becomes ready for writing or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5193
     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
  5194
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5195
     The other threads are not affected by the wait."
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
    |fd outputSema canWrite wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5198
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5199
    filePointer isNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5200
	^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5201
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5202
    mode == #readonly ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5203
	^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5204
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5205
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5206
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5207
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5208
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5209
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5210
    canWrite := OperatingSystem writeCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5211
    canWrite ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5212
	outputSema := Semaphore new name:'writeWait'.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5213
	[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5214
	    timeout notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5215
		Processor signal:outputSema afterMilliseconds:timeout
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5216
	    ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5217
	    Processor signal:outputSema onOutput:fd.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5218
	    Processor activeProcess state:#ioWait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5219
	    outputSema wait.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5220
	    Processor disableSemaphore:outputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5221
	    canWrite := OperatingSystem writeCheck:fd
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5222
	] valueOnUnwindDo:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5223
	    Processor disableSemaphore:outputSema.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5224
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5225
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5226
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5227
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5228
    ^ canWrite not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5229
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5230
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5231
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5232
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5233
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5234
    "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
  5235
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5236
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5237
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5238
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5239
    int len, cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5240
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5241
    char *cp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5242
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5243
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5244
    if (((fp = __INST(filePointer)) != nil)
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5245
	&& (__INST(mode) != @symbol(readonly))
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5246
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5247
    ) {
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5248
	f = __FILEVal(fp);
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5249
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5250
	if (_buffered = (__INST(buffered) == true)) { 
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5251
	    __WRITING__(f)
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5252
	}
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5253
	{
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5254
	    OBJ mode = __INST(eolMode);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5255
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5256
	    if (mode == @symbol(cr)) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5257
		cp = "\r"; len = 1;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5258
	    } else if (mode == @symbol(crlf)) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5259
		cp = "\r\n"; len = 2;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5260
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5261
		cp = "\n"; len = 1;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  5262
	    }
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5263
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5264
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5265
	if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5266
	    cnt = fwrite(cp, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5267
	} else 
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5268
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5269
	{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5270
	    __WRITEBYTES__(cnt, f, cp, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5271
	}
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5272
	if (cnt == len) {
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5273
	    if (__INST(position) != nil) {
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5274
		__INST(position) = __MKSMALLINT(__intVal(__INST(position)) + len);
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5275
	    }
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5276
	    RETURN ( self );
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5277
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  5278
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5279
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5280
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5281
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5282
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5283
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5284
    self errorBinary
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5285
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5286
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5287
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5288
    "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
  5289
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5290
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5291
    OBJ fp;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5292
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5293
    __INST(lastErrorNumber) = nil;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5294
    if ((fp = __INST(filePointer)) != nil) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5295
	if (__INST(mode) != @symbol(readonly)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5296
	    if (__INST(buffered) == true) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5297
		FILEPOINTER f = __FILEVal(fp);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5298
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5299
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5300
		    fflush(f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5301
		} else 
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5302
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5303
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5304
		    __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5305
		    FFLUSH(f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5306
		    __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5307
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5308
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5309
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5310
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5311
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5312
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5313
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5314
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5315
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5316
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5317
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5318
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5319
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5320
    char c;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5321
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5322
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5323
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5324
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5325
    if (((fp = __INST(filePointer)) != nil) 
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5326
	&& (__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
  5327
    ) {
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5328
	if (__INST(binary) != true) {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5329
	    if (__isCharacter(aCharacter)) {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5330
		c = __intVal(__characterVal(aCharacter)) & 0xFF;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5331
    doWrite:
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5332
		f = __FILEVal(fp);
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5333
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5334
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5335
		if (_buffered = (__INST(buffered) == true)) {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5336
		    __WRITING__(f)
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5337
		}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5338
#ifdef WIN32
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5339
		if ((f == stdout) || (f == stderr)) {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5340
		    cnt = fwrite(&c, 1, 1, f);
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5341
		} else 
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5342
#endif
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5343
		{
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5344
		    __WRITEBYTE__(cnt, f, &c, _buffered);
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5345
		}
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5346
		if (cnt == 1) {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5347
		    pos = __INST(position);
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5348
		    if (pos != nil) {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5349
			__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5350
		    }
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5351
		    RETURN ( self );
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5352
		}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  5353
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5354
	    }
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5355
	} else {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5356
	    if (__isSmallInteger(aCharacter)) {
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5357
		c = __intVal(aCharacter);
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5358
		goto doWrite;
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5359
	    }
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5360
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5361
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5362
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5363
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5364
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5365
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5366
    binary ifFalse:[self argumentMustBeCharacter. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5367
    self argumentMustBeInteger.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5368
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5369
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5370
nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5371
    "write all elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5372
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5373
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5374
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5375
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5376
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5377
    int len, cnt;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5378
    OBJ pos, fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5379
    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
  5380
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5381
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5382
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5383
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5384
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5385
	&& (__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
  5386
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5387
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5388
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5389
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5390
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5391
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5392
	if (__isString(aCollection) || __isSymbol(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5393
	    len = __stringSize(aCollection);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5394
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5395
	    if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5396
		cnt = fwrite(__stringVal(aCollection), 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5397
	    } else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5398
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5399
	    {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5400
		o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5401
		__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5402
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5403
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5404
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5405
		int offs;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5406
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5407
		if (__isByteArray(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5408
		    offs = 0;
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5409
		    len = __byteArraySize(aCollection);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5410
		} else if (__isBytes(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5411
		    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
  5412
		    len = __byteArraySize(aCollection) - offs;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5413
		} else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5414
		    goto out;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5415
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5416
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5417
		    cnt = fwrite(__stringVal(aCollection), 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5418
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5419
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5420
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5421
		    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
  5422
		    o_offs += offs;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5423
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5424
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5425
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5426
		goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5427
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5428
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5429
	if (cnt == len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5430
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5431
	    if (pos != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5432
		__INST(position) = __MKSMALLINT(__intVal(pos) + len);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5433
	    }
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
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  5436
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5437
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5438
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5439
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5440
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5441
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5442
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5443
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5444
    ^ super nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5445
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5446
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5447
nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5448
    "write a range of elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5449
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5450
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5451
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5452
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5453
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5454
    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
  5455
    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
  5456
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5457
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5458
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5459
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5460
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5461
	&& __bothSmallInteger(start, stop)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5462
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5463
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5464
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5465
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5466
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5467
	iStart = __intVal(start);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5468
	iStop = __intVal(stop);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5469
	if ((iStart < 1) || (iStop < iStart)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5470
	    RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5471
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5472
	if (__isString(aCollection) || __isSymbol(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5473
	    len = __stringSize(aCollection);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5474
	    if (iStop > len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5475
		RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5476
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5477
	    if (iStop > len)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5478
		iStop = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5479
	    len = iStop - iStart + 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5480
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5481
	    if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5482
		cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5483
	    } else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5484
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5485
	    {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5486
		o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5487
		__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
  5488
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5489
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5490
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5491
		int offs;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5492
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5493
		if (__isByteArray(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5494
		    offs = 0;
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5495
		    len = __byteArraySize(aCollection);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5496
		} else if (__isBytes(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5497
		    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
  5498
		    len = __byteArraySize(aCollection) - offs;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5499
		} else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5500
		    goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5501
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5502
		if (iStop > len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5503
		    RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5504
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5505
		if (iStop > len)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5506
		    iStop = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5507
		len = iStop - iStart + 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5508
		offs += iStart - 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5509
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5510
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5511
		    cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5512
		} else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5513
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5514
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5515
		    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
  5516
		    __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
  5517
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5518
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5519
		goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5520
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5521
	if (cnt == len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5522
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5523
	    if (pos != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5524
		__INST(position) = __MKSMALLINT(__intVal(pos) + len);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5525
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5526
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5527
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  5528
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5529
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5530
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5531
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5532
    lastErrorNumber notNil ifTrue:[^ self writeError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5533
    ^ super nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5534
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5535
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  5536
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5537
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5538
version
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  5539
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.211 2000-03-24 12:50:43 cg Exp $'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5540
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5541
ExternalStream initialize!