ExternalStream.st
author penk
Fri, 07 Feb 2003 12:28:02 +0100
changeset 7013 993d318775b7
parent 7002 7a5d55f87cd7
child 7017 03f1bd57c001
permissions -rw-r--r--
copyToEndTo: pushed to Stream
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
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    13
"{ Package: 'stx:libbasic' }"
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    14
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    15
ReadWriteStream subclass:#ExternalStream
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
    16
	instanceVariableNames:'filePointer mode buffered binary eolMode hitEOF didWrite
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    17
		lastErrorNumber readAhead'
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    18
	classVariableNames:'Lobby LastErrorNumber InvalidReadSignal InvalidWriteSignal
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    19
		InvalidModeSignal OpenErrorSignal StreamNotOpenSignal
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
    20
		InvalidOperationSignal DefaultEOLMode ReadMode ReadWriteMode
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
    21
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
    22
		FileOpenTrace'
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    23
	poolDictionaries:''
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
    24
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    25
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    26
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    27
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    28
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
    29
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
#include <stdio.h>
437
claus
parents: 436
diff changeset
    31
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    32
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
    33
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    34
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    35
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    36
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    37
#endif
437
claus
parents: 436
diff changeset
    38
10
claus
parents: 5
diff changeset
    39
#include <errno.h>
437
claus
parents: 436
diff changeset
    40
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    41
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    42
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    43
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    44
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    45
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    46
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    47
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    48
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    49
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    50
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    51
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    52
#ifndef SEEK_SET
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    53
# define SEEK_SET 0
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    54
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    55
#ifndef SEEK_CUR
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    56
# define SEEK_CUR 1
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    57
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    58
#ifndef SEEK_END
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    59
# define SEEK_END 2
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    60
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    61
4093
1821420b41d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    62
#if defined(__VMS__) || defined(sparc)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    63
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    64
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    65
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    66
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    67
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    68
#ifdef LATER
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    69
#define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    70
#define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    71
#define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    72
#else
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    73
#define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    74
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    75
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    76
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    77
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    78
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    79
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    80
#ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    81
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    82
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    83
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    84
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    85
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    87
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    88
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    89
# define __END_INTERRUPTABLE__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    90
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    91
# ifdef i386
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    92
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    93
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    94
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    95
# undef INT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    96
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    98
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   102
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# undef Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   104
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   105
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   106
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   107
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   108
# define NOMINMAX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   109
//#d efine NOOPENFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   110
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   111
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   112
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   113
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   114
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   115
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   118
# include <windows.h>
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   119
# include <winsock.h> /* */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   120
# if !defined(__BORLANDC__)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   121
#  define stat _stat
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   123
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   124
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
#  define Array __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   127
# ifdef __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
#  define Number __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
# ifdef __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
#  define Method __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
# ifdef __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
# endif
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
# define INT int
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   147
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   148
#else /* use STDIO */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   150
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   151
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   152
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   153
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   154
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   155
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   156
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   157
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   158
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   159
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   160
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   161
     && ((char *)(buf) < __survEndPtr)) { \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   162
        __fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   163
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   164
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   165
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   166
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   167
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   168
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   169
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   170
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   171
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   172
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   173
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   174
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   175
#ifdef STDIO_NEEDS_FSEEK
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)      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
   177
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   178
# 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
   179
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   180
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   181
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   182
//# define __HANDLEVal(o)         (HFILE)(__externalAddressVal(o))
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   183
int _rtl_read();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   184
int _rtl_write();
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   185
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   186
# ifdef __BORLANDC__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   187
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   188
      { int __res;\
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   189
        if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   190
          (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   191
        else \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   192
          (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
   193
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   194
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   195
      { int __res;\
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   196
        if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   197
          (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   198
        else \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   199
          (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
   200
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   201
# else /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   202
#  define READ(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   203
      { int __res;\
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   204
        if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   205
          (ret) = __STX_API_CALL4((void*)recv,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   206
        else { \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   207
          (ret) = __STX_API_CALL5((void*)ReadFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void *)0);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   208
          if (ret) \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   209
            ret = __res; \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   210
        } \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   211
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   212
#  define WRITE(ret,f, cp, n) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   213
      { int __res;\
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   214
        if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&__res)==0) \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   215
          (ret) = __STX_API_CALL4((void*)send,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n), (void *)0);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   216
        else {\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   217
          (ret) = __STX_API_CALL5((void*)WriteFile,(void *)_get_osfhandle(fileno(f)), (void *)(cp), (void *)(n),(void *)&__res,(void*)0);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   218
          if (ret) \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   219
            ret = __res; \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   220
        } \
4913
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
# endif /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   223
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   224
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   225
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   226
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   227
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   228
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   229
//#define __READING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   230
//#define __WRITING__(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   231
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   232
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   233
     && (__INST(mode) == @symbol(readwrite))) {  \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   234
        __INST(didWrite) = false;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   235
        OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   236
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   237
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   238
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   239
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   240
     && (__INST(mode) == @symbol(readwrite))) {  \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   241
        __INST(didWrite) = true;                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   242
        OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   243
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   244
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   245
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   246
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   247
        ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   248
    } else {                                            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   249
      __INST(readAhead) = __MKSMALLINT((c));            \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   250
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   251
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   252
# define __READBYTE__(ret, f, buf, isBuffered)          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   253
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   254
        for (;;) {                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   255
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   256
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   257
            if ((ret) >= 0) {                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   258
                *(buf) = (ret);                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   259
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   260
            } else if (ferror(f)) {                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   261
                if (__threadErrno == EINTR) {                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   262
                    clearerr(f);                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   263
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   264
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   265
            } else                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   266
                (ret) = 0;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   267
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   268
        }                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   269
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   270
        OBJ rA = __INST(readAhead);                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   271
        if (rA != nil) {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   272
            *(buf) = (char)__intVal(rA);                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   273
            __INST(readAhead) = nil;                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   274
            (ret) = 1;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   275
        } else {                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   276
            for (;;) {                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   277
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   278
                READ(ret,f, buf, 1);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   279
                if ((ret) >= 0 || __threadErrno != EINTR)       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   280
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   281
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   282
        }                                               \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   285
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   286
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   287
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   288
   */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   289
# define __READBYTES__(ret, f, buf, cnt, isBuffered)    \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   290
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   291
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   292
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   293
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   294
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   295
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   296
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   297
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   298
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   299
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   300
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   301
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   302
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   303
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   304
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   305
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   306
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   307
            (buf)[__offs++] = (ret);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   308
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   309
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   310
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   311
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   312
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   313
                                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   314
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   315
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   316
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   317
                (buf)[__offs] = __intVal(rA);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   318
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   319
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   320
            } else {                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   321
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   322
                READ(ret,f, (buf)+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   323
                if ((ret) <= 0) {                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   324
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   325
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   326
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   327
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   328
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   329
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   330
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   331
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   332
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   333
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   334
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   335
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   336
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   337
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   338
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   339
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   340
#define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   341
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   342
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   343
    int oldFlags;                                       \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   344
                                                        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   345
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   346
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   347
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   348
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   349
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   350
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   351
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   352
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   353
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   354
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   355
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   356
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   357
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   358
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   359
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   360
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   361
            (buf)[__offs++] = (ret);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   362
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   363
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   364
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   365
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   366
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   367
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   368
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   369
                (buf)[__offs] = __intVal(rA);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   370
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   371
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   372
                __offs += (ret);                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   373
                continue;                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   374
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   375
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   376
            {                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   377
              int res;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   378
              if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   379
                  if (res > 0) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   380
                      if (res > ((cnt)-__offs))         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   381
                        res = (cnt)-__offs;             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   382
                      READ(ret,f, (buf)+__offs, res);   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   383
                  } else {                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   384
                      (ret) = 0;                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   385
                  }                                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   386
              } else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   387
                  if (res > 0) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   388
                      if (res > ((cnt)-__offs))         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   389
                        res = (cnt)-__offs;             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   390
                      READ(ret,f, (buf)+__offs, res);   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   391
                  } else                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   392
                      ret = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   393
              } else {                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   394
                  READ(ret,f, (buf)+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   395
              }                                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   396
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   397
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   398
                if (__threadErrno == EINTR) {                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   399
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   400
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   401
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   402
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   403
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   404
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   405
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   406
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   407
            (ret) = __offs;                             \
4913
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
  }
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
# 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
   412
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   413
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   414
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   415
    char *buf = (char *)(obj);                          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   416
                                                        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   417
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   418
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   419
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   420
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   421
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   422
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   423
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   424
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   425
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   426
                        /* refetch */                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   427
                        buf = (char *)(obj);            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   428
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   429
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   430
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   431
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   432
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   433
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   434
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   435
            (buf)[__ooffs+__offs] = (ret);              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   436
            __offs++;                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   437
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   438
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   439
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   440
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   441
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   442
            char __buf[1024];                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   443
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   444
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   445
                (buf)[__ooffs+__offs] = __intVal(rA);   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   446
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   447
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   448
            } else {                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   449
                int l;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   450
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   451
                l = (cnt)-__offs;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   452
                if ( l > 1024)                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   453
                  l = 1024;                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   454
                READ(ret,f, __buf, l);                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   455
                if ((ret) <= 0) {                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   456
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   457
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   458
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   459
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   460
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   461
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   462
            /* refetch */                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   463
            buf = (volatile char *)(obj);               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   464
            memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   465
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   466
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   467
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   468
            (ret) = __offs;                             \
4913
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
  }
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
# 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
   473
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   474
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   475
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   476
    char *buf = (char *)(obj);                       \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   477
                                                     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   478
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   479
    if (isBuffered) {                                \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   480
        while (__offs < (cnt)) {                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   481
            CLEAR_ERRNO;                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   482
            (ret) = getc(f);                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   483
            if ((ret) < 0) {                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   484
                if (ferror(f)) {                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   485
                    if (__threadErrno == EINTR) {            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   486
                        clearerr(f);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   487
                        /* refetch */                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   488
                        buf = (char *)(obj);         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   489
                        continue;                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   490
                    }                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   491
                } else {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   492
                    (ret) = 0;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   493
                }                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   494
                break;                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   495
            }                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   496
            (buf)[__ooffs+__offs] = (ret);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   497
            __offs++;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   498
        }                                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   499
        if (__offs > 0)                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   500
            (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   501
    } else {                                         \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   502
        while (__offs < (cnt)) {                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   503
            char __buf[1024];                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   504
            OBJ rA = __INST(readAhead);              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   505
            if (rA != nil) {                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   506
                (buf)[__ooffs+__offs] = __intVal(rA);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   507
                __INST(readAhead) = nil;             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   508
                (ret) = 1;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   509
                __offs += (ret);                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   510
                continue;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   511
            }                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   512
            {                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   513
                int l;                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   514
                int res;                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   515
                CLEAR_ERRNO;                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   516
                l = (cnt)-__offs;                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   517
                if ( l > 1024)                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   518
                    l = 1024;                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   519
                if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   520
                if (res > 0) {                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   521
                        if (res > l)                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   522
                            res = l;                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   523
                        READ(ret,f, __buf, res);     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   524
                    } else {                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   525
                        (ret) = 0;                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   526
                    }                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   527
                } else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   528
                    if (res > 0) {                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   529
                        if (res > l)                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   530
                            res = l;                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   531
                        READ(ret,f, __buf, res);     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   532
                    } else                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   533
                        ret = 0;                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   534
                } else {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   535
                    READ(ret,f, __buf, l);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   536
                }                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   537
                if ((ret) < 0 && __threadErrno == EINTR) {   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   538
                    continue;                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   539
                }                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   540
            }                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   541
            /* refetch */                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   542
            buf = (volatile char *)(obj);               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   543
            memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   544
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   545
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   546
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   547
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   548
            (ret) = __offs;                             \
4913
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
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   551
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   552
# define __WRITEBYTE__(ret, f, buf, isBuffered)         \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   553
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   554
        for (;;) {                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   555
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   556
            ret = putc(*(buf), f);                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   557
            if ((ret) >= 0) {                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   558
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   559
            } else if (ferror(f)) {                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   560
                if (__threadErrno == EINTR) {                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   561
                    clearerr(f);                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   562
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   563
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   564
            } else                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   565
                (ret) = 0;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   566
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   567
        }                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   568
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   569
        for (;;) {                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   570
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   571
            WRITE(ret,f, buf, 1);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   572
            if ((ret) >= 0 || __threadErrno != EINTR)           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   573
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   574
        }                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   575
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   576
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   577
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   578
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   579
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   580
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   581
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   582
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   583
            ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   584
            if ((ret) <= 0) {                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   585
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   586
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   587
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   588
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   589
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   590
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   591
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   592
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   593
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   594
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   595
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   596
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   597
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   598
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   599
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   600
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   601
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   602
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   603
            WRITE(ret,f, (buf)+__offs, (cnt)-__offs);   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   604
            if (ret <= 0) {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   605
                if (ret < 0 && __threadErrno == EINTR) {        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   606
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   607
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   608
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   609
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   610
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   611
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   612
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   613
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   614
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   615
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   616
# 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
   617
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   618
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   619
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   620
    char *buf = (char *)(obj);                          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   621
                                                        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   622
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   623
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   624
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   625
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   626
            ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   627
            if ((ret) <= 0) {                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   628
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   629
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   630
                        /* refetch */                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   631
                        buf = (char *)(obj);            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   632
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   633
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   634
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   635
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   636
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   637
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   638
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   639
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   640
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   641
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   642
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   643
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   644
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   645
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   646
            char __buf[1024];                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   647
            int l;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   648
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   649
            l = (cnt)-__offs;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   650
            if ( l > 1024)                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   651
              l = 1024;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   652
            /* refetch */                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   653
            buf = (volatile char *)(obj);               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   654
            memcpy(__buf,(buf)+__ooffs+__offs,l);       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   655
            WRITE(ret,f, __buf, l);                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   656
            if (ret <= 0) {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   657
                if (ret < 0 && __threadErrno == EINTR) {        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   658
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   659
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   660
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   661
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   662
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   663
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   664
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   665
            (ret) = __offs;                             \
4913
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
  }
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
#else /* no WIN32 */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   670
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   671
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   672
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   673
     && (__INST(mode) == @symbol(readwrite))) {  \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   674
        __INST(didWrite) = false;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   675
        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
   676
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   677
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   678
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   679
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   680
     && (__INST(mode) == @symbol(readwrite))) {  \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   681
        __INST(didWrite) = true;                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   682
        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
   683
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   684
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   685
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   686
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   687
#  define __UNGETC__(c, f, isBuffered)                  \
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   688
    __INST(readAhead) = __MKSMALLINT((c));
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   689
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   690
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   691
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   692
        ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   693
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   694
        __INST(readAhead) = __MKSMALLINT((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   695
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   696
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   697
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   698
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   699
#  define __READBYTE__(ret, f, buf, isBuffered)         \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   700
    {                                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   701
        OBJ rA = __INST(readAhead);                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   702
        if (rA != nil) {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   703
            *(buf) = __intVal(rA);                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   704
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   705
            __INST(readAhead) = nil;                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   706
            (ret) = 1;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   707
        } else {                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   708
            for (;;) {                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   709
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   710
                (ret) = READ(f, buf, 1);                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   711
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   712
                if ((ret) >= 0 || __threadErrno != EINTR)       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   713
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   714
                __HANDLE_INTERRUPTS__;                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   715
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   716
        }                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   717
    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   718
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   719
#  define __READBYTE__(ret, f, buf, isBuffered)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   720
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   721
        for (;;) {                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   722
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   723
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   724
            if ((ret) >= 0) {                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   725
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   726
                *(buf) = (ret);                         \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   727
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   728
            } else if (ferror(f)) {                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   729
                if (__threadErrno == EINTR) {                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   730
                    __HANDLE_INTERRUPTS__;              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   731
                    clearerr(f);                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   732
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   733
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   734
            } else                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   735
                (ret) = 0;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   736
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   737
        }                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   738
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   739
        OBJ rA = __INST(readAhead);                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   740
        if (rA != nil) {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   741
            *(buf) = __intVal(rA);                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   742
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   743
            __INST(readAhead) = nil;                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   744
            (ret) = 1;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   745
        } else {                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   746
            for (;;) {                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   747
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   748
                (ret) = read(fileno(f), buf, 1);        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   749
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   750
                if ((ret) >= 0 || __threadErrno != EINTR)       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   751
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   752
                __HANDLE_INTERRUPTS__;                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   753
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   754
        }                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   755
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   756
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   757
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   758
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   759
 * 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
   760
 * (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
   761
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   762
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   763
#  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
   764
    {                                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   765
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   766
                                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   767
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   768
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   769
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   770
                (buf)[__offs] = __intVal(rA);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   771
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   772
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   773
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   774
            } else {                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   775
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   776
                (ret) = READ(f, (buf)+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   777
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   778
                if ((ret) <= 0) {                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   779
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   780
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   781
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   782
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   783
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   784
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   785
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   786
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   787
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   788
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   789
            (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   790
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   791
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   792
#  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
   793
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   794
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   795
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   796
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   797
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   798
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   799
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   800
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   801
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   802
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   803
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   804
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   805
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   806
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   807
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   808
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   809
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   810
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   811
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   812
            (buf)[__offs++] = (ret);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   813
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   814
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   815
            (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   816
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   817
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   818
        int fd = fileno(f);                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   819
                                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   820
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   821
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   822
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   823
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   824
                (buf)[__offs] = __intVal(rA);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   825
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   826
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   827
            } else {                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   828
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   829
                (ret) = read(fd, (buf)+__offs, (cnt)-__offs);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   830
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   831
                if ((ret) <= 0) {                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   832
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   833
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   834
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   835
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   836
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   837
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   838
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   839
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   840
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   841
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   842
            (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   843
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   844
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   845
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   846
/*
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   847
 * FNDELAY and O_NDELAY is deprecated, O_NONBLOCK is used in POSIX, XPG, etc...
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   848
 */
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   849
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   850
# if defined(F_GETFL) && defined(F_SETFL) && (defined(O_NONBLOCK) || defined(O_NDELAY) || defined(FNDELAY))
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   851
#  define GETFLAGS(fd) \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   852
        fcntl(fd, F_GETFL, 0);
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   853
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   854
#  define SETFLAGS(fd, flags) \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   855
        fcntl(fd, F_SETFL, flags)
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   856
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   857
# if defined(O_NONBLOCK)
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   858
#  define __STX_NONBLOCK_FLAG O_NONBLOCK
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   859
# else
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   860
#  if defined(O_NDELAY)
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   861
#   define __STX_NONBLOCK_FLAG O_NDELAY
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   862
#  else
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   863
#   define __STX_NONBLOCK_FLAG FNDELAY
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   864
#  endif
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   865
# endif
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   866
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   867
#  define SETNONBLOCKING(fd) \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   868
        { \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   869
            int flags; \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   870
            flags = fcntl(fd, F_GETFL, 0); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   871
            if (flags >= 0) { \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   872
                fcntl(fd, F_SETFL, flags | __STX_NONBLOCK_FLAG); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   873
            } \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   874
        }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   875
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   876
#  define GETFLAGS(fd) 0
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   877
#  define SETFLAGS(fd, flags) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   878
#  define SETNONBLOCKING(fd) /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   879
# endif                                                        
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   880
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   881
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   882
  {                                                     \
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   883
    int __offs = 0;                                     \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   884
    int oldFlags;                                       \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   885
                                                        \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   886
    (ret) = 0;                                          \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   887
    oldFlags = GETFLAGS(fileno(f));                     \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   888
    SETNONBLOCKING(fileno(f));                          \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   889
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   890
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   891
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   892
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   893
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   894
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   895
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   896
                        (ret) = 0;                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   897
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   898
                        break;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   899
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   900
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   901
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   902
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   903
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   904
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   905
            (buf)[__offs++] = (ret);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   906
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   907
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   908
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   909
            (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   910
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   911
        int fd = fileno(f);                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   912
                                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   913
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   914
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   915
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   916
                (buf)[__offs] = __intVal(rA);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   917
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   918
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   919
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   920
                __offs += (ret);                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   921
                continue;                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   922
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   923
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   924
            (ret) = read(fd, (buf)+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   925
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   926
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   927
                if (__threadErrno == EINTR) {                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   928
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   929
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   930
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   931
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   932
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   933
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   934
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   935
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   936
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   937
            (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   938
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   939
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   940
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   941
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   942
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   943
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   944
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   945
 * 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
   946
 * (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
   947
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   948
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   949
#  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
   950
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   951
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   952
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   953
    char *buf = (char *)(obj);                          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   954
                                                        \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   955
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   956
    {                                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   957
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   958
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   959
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   960
                (buf)[__ooffs+__offs] = __intVal(rA);   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   961
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   962
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   963
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   964
            } else {                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   965
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   966
                (ret) = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   967
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   968
                if ((ret) <= 0) {                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   969
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   970
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   971
                        /* refetch */                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   972
                        buf = (char *)(obj);            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   973
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   974
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   975
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   976
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   977
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   978
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   979
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   980
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   981
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   982
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   983
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   984
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   985
#  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
   986
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   987
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   988
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   989
    char *buf = (char *)(obj);                          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   990
                                                        \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   991
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   992
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   993
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   994
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   995
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   996
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   997
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   998
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   999
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1000
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1001
                        /* refetch */                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1002
                        buf = (char *)(obj);            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1003
                        DEBUGBUFFER(buf);               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1004
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1005
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1006
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1007
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1008
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1009
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1010
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1011
            (buf)[__ooffs+__offs] = (ret);              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1012
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1013
            __offs++;                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1014
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1015
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1016
            (ret) = __offs;                             \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1017
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1018
        int fd = fileno(f);                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1019
                                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1020
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1021
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1022
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1023
                (buf)[__ooffs+__offs] = __intVal(rA);   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1024
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1025
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1026
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1027
            } else {                                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1028
                CLEAR_ERRNO;                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1029
                (ret) = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1030
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1031
                if ((ret) <= 0) {                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1032
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1033
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1034
                        /* refetch */                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1035
                        buf = (char *)(obj);            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1036
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1037
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1038
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1039
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1040
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1041
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1042
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1043
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1044
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1045
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1046
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1047
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1048
# define __READAVAILBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered)     \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1049
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1050
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1051
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1052
    char *buf = (char *)(obj);                          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1053
                                                        \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1054
    (ret) = 0;                                          \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1055
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1056
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1057
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1058
            (ret) = getc(f);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1059
            if ((ret) < 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1060
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1061
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1062
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1063
                        /* refetch */                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1064
                        buf = (char *)(obj);            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1065
                        (ret) = 0;                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1066
                        break;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1067
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1068
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1069
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1070
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1071
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1072
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1073
            (buf)[__ooffs+__offs] = (ret);              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1074
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1075
            __offs++;                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1076
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1077
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1078
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1079
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1080
        int fd = fileno(f);                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1081
                                                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1082
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1083
            OBJ rA = __INST(readAhead);                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1084
            if (rA != nil) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1085
                (buf)[__ooffs+__offs] = __intVal(rA);   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1086
                DEBUGBUFFER(buf);                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1087
                __INST(readAhead) = nil;                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1088
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1089
                __offs += (ret);                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1090
                continue;                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1091
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1092
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1093
            (ret) = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1094
            DEBUGBUFFER(buf);                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1095
            if ((ret) < 0 && __threadErrno == EINTR) {          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1096
                /* refetch */                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1097
                (ret) = 0;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1098
                buf = (char *)(obj);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1099
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1100
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1101
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1102
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1103
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1104
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1105
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1106
    }                                                   \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1107
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1108
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1109
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1110
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1111
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1112
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1113
#  define __WRITEBYTE__(ret, f, buf, isBuffered)          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1114
        for (;;) {                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1115
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1116
            (ret) = WRITE(f, buf, 1);                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1117
            if ((ret) >= 0 || __threadErrno != EINTR)           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1118
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1119
            __HANDLE_INTERRUPTS__;                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1120
        }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1121
# else
4968
ff01ac91efa3 Fix buffered nexPut: for Solaris/Sparc
Stefan Vogel <sv@exept.de>
parents: 4914
diff changeset
  1122
#  define __WRITEBYTE__(ret, f, buf, isBuffered)        \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1123
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1124
        for (;;) {                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1125
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1126
            ret = putc(*(buf), f);                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1127
            if ((ret) >= 0) {                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1128
                (ret) = 1;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1129
            } else if (ferror(f)) {                     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1130
                /* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1131
                if (__threadErrno == EINTR || __threadErrno == 0) {     \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1132
                    __HANDLE_INTERRUPTS__;              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1133
                    clearerr(f);                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1134
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1135
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1136
            } else                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1137
                (ret) = 0;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1138
            break;                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1139
        }                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1140
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1141
        for (;;) {                                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1142
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1143
            (ret) = write(fileno(f), buf, 1);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1144
            if ((ret) >= 0 || __threadErrno != EINTR)           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1145
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1146
            __HANDLE_INTERRUPTS__;                      \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1147
        }                                               \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1148
   }                                                                          
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1149
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1150
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1151
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1152
 * 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
  1153
 * (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
  1154
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1155
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1156
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1157
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1158
    {                                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1159
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1160
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1161
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1162
            ret = WRITE(f, (buf)+__offs, (cnt)-__offs); \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1163
            if (ret <= 0) {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1164
                if (ret < 0 && __threadErrno == EINTR) {        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1165
                    __HANDLE_INTERRUPTS__;              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1166
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1167
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1168
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1169
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1170
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1171
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1172
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1173
            (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1174
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1175
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1176
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1177
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1178
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1179
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1180
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1181
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1182
            ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1183
            if ((ret) <= 0) {                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1184
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1185
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1186
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1187
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1188
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1189
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1190
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1191
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1192
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1193
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1194
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1195
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1196
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1197
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1198
            (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1199
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1200
        int __offs = 0;                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1201
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1202
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1203
            ret = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1204
            if (ret <= 0) {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1205
                if (ret < 0 && __threadErrno == EINTR) {        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1206
                    __HANDLE_INTERRUPTS__;              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1207
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1208
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1209
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1210
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1211
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1212
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1213
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1214
            (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1215
   }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1216
# endif
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1217
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1218
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1219
 * 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
  1220
 * (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
  1221
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1222
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1223
#  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
  1224
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1225
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1226
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1227
    char *buf = (char *)(obj);                          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1228
                                                        \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1229
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1230
    {                                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1231
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1232
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1233
            ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs);               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1234
            if (ret <= 0) {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1235
                if (ret < 0 && __threadErrno == EINTR) {        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1236
                    __HANDLE_INTERRUPTS__;              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1237
                    /* refetch */                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1238
                    buf = (char *)(obj);                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1239
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1240
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1241
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1242
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1243
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1244
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1245
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1246
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1247
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1248
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1249
# else
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1250
#  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
  1251
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1252
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1253
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1254
    char *buf = (char *)(obj);                          \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1255
                                                        \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1256
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1257
    if (isBuffered) {                                   \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1258
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1259
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1260
            ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1261
            if ((ret) <= 0) {                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1262
                if (ferror(f)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1263
                    if (__threadErrno == EINTR) {               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1264
                        __HANDLE_INTERRUPTS__;          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1265
                        /* refetch */                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1266
                        buf = (char *)(obj);            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1267
                        clearerr(f);                    \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1268
                        continue;                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1269
                    }                                   \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1270
                    break;                              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1271
                } else {                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1272
                    (ret) = 0;                          \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1273
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1274
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1275
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1276
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1277
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1278
            (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1279
    } else {                                            \
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1280
        while (__offs < (cnt)) {                        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1281
            CLEAR_ERRNO;                                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1282
            ret = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs);       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1283
            if (ret <= 0) {                             \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1284
                if (ret < 0 && __threadErrno == EINTR) {        \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1285
                    __HANDLE_INTERRUPTS__;              \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1286
                    /* refetch */                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1287
                    buf = (char *)(obj);                \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1288
                    continue;                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1289
                }                                       \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1290
                break;                                  \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1291
            }                                           \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1292
            __offs += (ret);                            \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1293
        }                                               \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1294
        if (__offs > 0)                                 \
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
  1295
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1296
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1297
  }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1298
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1299
#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
  1300
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1301
/*
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1302
 * on some systems errno is a macro ... check for it here
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1303
 */
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1304
#ifndef errno
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1305
 extern errno;
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1306
#endif
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1307
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1308
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1309
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1310
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1311
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1312
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1313
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1314
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1315
 COPYRIGHT (c) 1988 by Claus Gittinger
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1316
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1317
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1318
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1319
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1320
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1321
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1322
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1323
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1324
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1325
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1326
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1327
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1328
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1329
    ExternalStream defines protocol common to Streams which have a file-descriptor and 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1330
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1331
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1332
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1333
    ExternalStreams can be in two modes: text- (the default) and binary-mode.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1334
    In text-mode, the elements read/written are characters; 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1335
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers 
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1336
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1337
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1338
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1339
    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
  1340
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1341
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1342
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1343
    or just forgotten - in this case, the garbage collector will eventually collect the
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1344
    object AND a close will be performed automatically (but you will NOT know when this 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1345
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1346
    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
  1347
    some crash) the data will not be in the file, if unclosed. 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1348
    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
  1349
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1350
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1351
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1352
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1353
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1354
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1355
      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
  1356
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1357
      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
  1358
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1359
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1360
      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
  1361
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1362
      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
  1363
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1364
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1365
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1366
	filePointer     <Integer>       the unix FILE*; somehow mapped to an integer
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1367
					(notice: not the fd)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1368
					on Windows: the fileHandle
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1369
	mode            <Symbol>        #readwrite, #readonly or #writeonly
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1370
	buffered        <Boolean>       true, if buffered (i.e. collects characters - does
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1371
					not output immediately)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1372
	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
  1373
	eolMode         <Symbol>        one of nil, #cr or #crlf.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1374
					determines how lines should be terminated.
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1375
					nil -> newLine (as in Unix);
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1376
					#crlf -> with cr-lf (as in MSDOS)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1377
					#cr -> with cr (as in VMS)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1378
	hitEOF          <Boolean>       true, if EOF was reached
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1379
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1380
	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
  1381
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1382
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1383
    [Class variables:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1384
	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
  1385
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1386
	StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1387
	InvalidReadSignal       <Signal> raised on read from writeonly stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1388
	InvalidWriteSignal      <Signal> raised on write to readonly stream 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1389
	InvalidModeSignal       <Signal> raised on text I/O with binary-stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1390
					 or binary I/O with text-stream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1391
	OpenErrorSignal         <Signal> raised if open fails
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1392
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1393
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1394
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1395
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1396
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1397
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1398
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1399
      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
  1400
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1401
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1402
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1403
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1404
      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
  1405
      an error and errno is set to EINTR. 
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1406
      Thats what the ugly code around all getc-calls is for ...
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1407
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1408
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1409
claus
parents: 308
diff changeset
  1410
      Notice that typical stdio's use a single errno global variable to return an error code,
claus
parents: 308
diff changeset
  1411
      this was bad design in the stdio lib (right from the very beginning), since its much
claus
parents: 308
diff changeset
  1412
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1413
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1414
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1415
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1416
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1417
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1418
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1419
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1420
      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
  1421
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1422
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1423
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1424
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1425
    [author:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1426
	Claus Gittinger
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1427
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1428
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1429
    [see also:]
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1430
	FileStream Socket PipeStream
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1431
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1432
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1433
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1434
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1435
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1436
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1437
    open a file, read the contents and display it in a textView:
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1438
									[exBegin]
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1439
	|topView scrollPane textView fileStream text|
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1440
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1441
	topView := StandardSystemView new.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1442
	topView label:'contents of Makefile'.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1443
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1444
	scrollPane := HVScrollableView in:topView.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1445
	scrollPane origin:0.0@0.0 corner:1.0@1.0.
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1446
        
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1447
	textView := EditTextView new.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1448
	scrollPane scrolledView:textView.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1449
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1450
	fileStream := 'Makefile' asFilename readStream.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1451
	text := fileStream upToEnd.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1452
	fileStream close.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1453
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1454
	textView contents:text.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1455
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1456
	topView open.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1457
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1458
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1459
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1460
    Notice, all of the above can also be done (simply) as:
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1461
									[exBegin]
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1462
	EditTextView openOn:'Makefile'
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1463
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1464
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1465
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1466
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1467
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1468
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1469
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1470
    OperatingSystem isUNIXlike ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1471
	"/ unix EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1472
	DefaultEOLMode := #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1473
    ] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1474
	OperatingSystem isVMSlike ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1475
	    "/ vms EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1476
	    DefaultEOLMode := #cr
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1477
	] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1478
	    "/ msdos EOL conventions
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1479
	    DefaultEOLMode := #crlf
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1480
	]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1481
    ]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1482
!
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
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1485
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1486
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1487
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1488
    OperatingSystem isMSDOSlike ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1489
	ReadMode := 'rb'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1490
	ReadWriteMode := 'rb+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1491
	WriteMode := 'wb'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1492
	AppendMode := 'ab+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1493
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1494
    ] ifFalse:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1495
	ReadMode := 'r'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1496
	ReadWriteMode := 'r+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1497
	WriteMode := 'w'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1498
	AppendMode := 'a+'.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1499
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1500
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1501
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1502
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1503
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1504
    OpenErrorSignal isNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1505
	OpenErrorSignal := StreamErrorSignal newSignalMayProceed:true.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1506
	OpenErrorSignal nameClass:self message:#openErrorSignal.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1507
	OpenErrorSignal notifierString:'open error'.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1508
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1509
	InvalidReadSignal := ReadErrorSignal newSignalMayProceed:false.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1510
	InvalidReadSignal nameClass:self message:#invalidReadSignal.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1511
	InvalidReadSignal notifierString:'read error'.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1512
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1513
	InvalidWriteSignal := WriteErrorSignal newSignalMayProceed:false.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1514
	InvalidWriteSignal nameClass:self message:#invalidWriteSignal.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1515
	InvalidWriteSignal notifierString:'write error'.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1516
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1517
	InvalidModeSignal :=  StreamErrorSignal newSignalMayProceed:false.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1518
	InvalidModeSignal nameClass:self message:#invalidModeSignal.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1519
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1520
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1521
	InvalidOperationSignal :=  StreamErrorSignal newSignalMayProceed:false.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1522
	InvalidOperationSignal nameClass:self message:#invalidOperationSignal.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1523
	InvalidOperationSignal notifierString:'unsupported file operation'.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1524
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1525
	StreamNotOpenSignal := StreamErrorSignal newSignalMayProceed:false.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1526
	StreamNotOpenSignal nameClass:self message:#streamNotOpenSignal.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1527
	StreamNotOpenSignal notifierString:'stream is not open'.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1528
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1529
	StreamIOErrorSignal := StreamErrorSignal newSignalMayProceed:false.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1530
	StreamIOErrorSignal nameClass:self message:#streamIOErrorSignal.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1531
	StreamIOErrorSignal notifierString:'I/O error'.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1532
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1533
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1534
    Lobby isNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1535
	Lobby := Registry new.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1536
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1537
	"want to get informed when returning from snapshot"
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1538
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1539
    ].
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1540
    DefaultEOLMode isNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1541
	self initDefaultEOLMode.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1542
    ].
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1543
    ReadMode isNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  1544
	self initModeStrings.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1545
    ].
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1546
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1547
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1548
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1549
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1550
    "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
  1551
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1552
301
35e40a6fc72b *** empty log message ***
claus
parents: 269
diff changeset
  1553
    Lobby do:[:aFileStream |
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1554
	aFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1555
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1556
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1557
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1558
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1559
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1560
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1561
    something == #earlyRestart ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1562
	self reOpenFiles.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1563
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1564
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1565
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1566
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1567
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1568
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1569
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1570
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1571
forFileDescriptor:aFileDescriptor mode:modeString
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1572
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1573
     to operate on this fd. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1574
     The mode-argument is passed to the fdopen call.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1575
     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
  1576
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1577
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1578
    ^ self forFileDescriptor:aFileDescriptor mode:modeString buffered:true
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1579
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1580
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1581
     the example below will probably fail (15 is a random FD):
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1582
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1583
     |s|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1584
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1585
     s := ExternalStream forFileDescriptor:15 mode:'r'.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1586
     s next.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1587
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1588
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1589
    "Created: 29.2.1996 / 18:05:00 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1590
    "Modified: 29.2.1996 / 18:17:07 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1591
!
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1592
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1593
forFileDescriptor:aFileDescriptor mode:modeString buffered:buffered
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1594
    "given a fileDescriptor, create an ExternalStream object
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1595
     to operate on this fd. 
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1596
     The mode-argument is passed to the fdopen call.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1597
     This may be used to wrap fd's as returned by user 
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1598
     primitive code, or to wrap pipe-fds into externalStreams."
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1599
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1600
    |newStream|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1601
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1602
    newStream := self basicNew.
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1603
    newStream text; buffered:buffered; eolMode:DefaultEOLMode; clearEOF.
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1604
    ^ newStream connectTo:aFileDescriptor withMode:modeString
2920
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
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1607
     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
  1608
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1609
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1610
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1611
     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
  1612
     s next.
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
    "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
  1616
    "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
  1617
!
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
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1620
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1621
     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
  1622
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1623
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1624
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1625
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadWriteMode) readwrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1626
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1627
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1628
     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
  1629
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1630
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1631
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1632
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1633
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1634
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1635
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1636
    "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
  1637
    "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
  1638
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1639
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1640
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1641
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1642
     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
  1643
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1644
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1645
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1646
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadMode) readonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1647
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1648
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1649
     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
  1650
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1651
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1652
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1653
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1654
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1655
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1656
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1657
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1658
     |pipe readFd writeFd rs ws|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1659
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1660
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1661
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1662
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1663
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1664
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1665
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1666
     'connect Smalltalk streams ...'.
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
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1669
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
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
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1672
     [
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1673
	 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
  1674
	     Transcript showCR:rs nextLine
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1675
	 ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1676
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1677
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1678
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1679
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1680
     [
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1681
	 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
  1682
	     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
  1683
	 ].
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  1684
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1685
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1686
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1687
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1688
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1689
    "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
  1690
    "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
  1691
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1692
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1693
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1694
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1695
     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
  1696
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1697
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1698
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1699
    ^ (self forFileDescriptor:aFileDescriptor mode:WriteMode) writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1700
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1701
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1702
     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
  1703
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1704
     |s|
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
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1707
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1708
     s nextPut:1.
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
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1711
    "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
  1712
    "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
  1713
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1714
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1715
makePTYPair
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1716
    "return an array with two streams - the first one is the master, 
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1717
     the second the slave of a ptym/ptys pair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1718
     This is much like a bidirectional pipe, but allows signals &
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1719
     control chars to be passed through the connection.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1720
     This is needed to execute a shell in a view.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1721
     This is the higher level equivalent of OperatingSystem>>makePTYPair
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1722
     (which returns an array of file-descriptors)."
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1723
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1724
    |ptyPair master slave|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1725
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1726
    ptyPair := OperatingSystem makePTYPair.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1727
    ptyPair notNil ifTrue:[
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1728
        master := self forReadWriteToFileDescriptor:(ptyPair at:1).
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1729
        master buffered:false.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1730
        slave := self forReadWriteToFileDescriptor:(ptyPair at:2).
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1731
        slave buffered:false.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1732
        ptyPair at:1 put:master.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1733
        ptyPair at:2 put:slave.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1734
        ^ ptyPair
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1735
    ].
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1736
    ^ nil
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1737
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1738
    "
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1739
     ExternalStream makePTYPair.
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1740
    "
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1741
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1742
    "Modified: 29.2.1996 / 18:28:36 / cg"
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1743
!
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1744
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1745
makePipe
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1746
    "return an array with two streams - the first one for reading, 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1747
     the second for writing. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1748
     This is the higher level equivalent of OperatingSystem>>makePipe
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1749
     (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
  1750
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1751
     |pipe rs ws|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1752
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1753
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1754
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1755
     pipe notNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1756
	 rs := self forReadingFromFileDescriptor:(pipe at:1).
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1757
	 ws := self forWritingToFileDescriptor:(pipe at:2).
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1758
	 ^ 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
  1759
     ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1760
     ^ nil
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1761
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1762
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1763
     |pipe rs ws|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1764
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1765
     pipe := ExternalStream makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1766
     rs := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1767
     ws := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1768
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1769
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1770
     [
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1771
	 1 to:10 do:[:i |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1772
	     Transcript showCR:rs nextLine
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1773
	 ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1774
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1775
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1776
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1777
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1778
     [
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1779
	 1 to:10 do:[:i |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1780
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1781
	 ].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1782
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1783
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1784
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1785
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1786
    "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
  1787
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1788
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1789
new
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1790
    |newStream|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1791
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1792
    newStream := self basicNew.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1793
    newStream text; buffered:true; eolMode:DefaultEOLMode; clearEOF.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1794
    ^ newStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1795
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1796
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1797
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1798
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1799
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1800
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1801
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1802
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1803
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1804
    "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
  1805
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1806
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1807
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1808
    "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
  1809
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1810
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1811
    ^ InvalidModeSignal
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1812
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1813
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1814
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1815
    "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
  1816
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1817
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1818
    ^ InvalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1819
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1820
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1821
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1822
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1823
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1824
    ^ InvalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1825
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1826
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1827
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1828
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1829
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1830
    ^ InvalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1831
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1832
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1833
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1834
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1835
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1836
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1837
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1838
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1839
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1840
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1841
     (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
  1842
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1843
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1844
    ^ StreamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1845
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1846
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1847
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1848
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1849
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1850
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1851
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1852
    ^ StreamNotOpenSignal
2
claus
parents: 1
diff changeset
  1853
! !
claus
parents: 1
diff changeset
  1854
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1855
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1856
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1857
errorReporter
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1858
    "I know about error codes"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1859
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1860
    ^ self
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1861
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1862
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1863
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1864
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1865
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1866
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1867
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1868
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1869
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1870
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1871
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1872
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1873
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1874
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1875
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1876
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1877
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1878
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1879
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1880
    "
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1881
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1882
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1883
reportOn:anErrorSymbolOrNumber 
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1884
    "an error occured.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1885
     Report it via an Exception"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1886
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1887
    anErrorSymbolOrNumber isInteger ifTrue:[
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1888
        StreamErrorSignal raiseRequestWith:anErrorSymbolOrNumber
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1889
            errorString:' - os error:' 
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1890
                    , (OperatingSystem errorTextForNumber:anErrorSymbolOrNumber)
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1891
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1892
    (self respondsTo:anErrorSymbolOrNumber) ifTrue:[
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1893
        self perform:anErrorSymbolOrNumber
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1894
    ] ifFalse:[
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1895
        StreamErrorSignal raiseRequestWith:anErrorSymbolOrNumber
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1896
            errorString:' - ' , anErrorSymbolOrNumber printString
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1897
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1898
    ^ false
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1899
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1900
6474
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1901
!ExternalStream methodsFor:'Compatibility - Dolphin'!
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1902
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1903
beText
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1904
    self text
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1905
! !
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1906
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1907
!ExternalStream methodsFor:'Compatibility - Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1908
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1909
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1910
    "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
  1911
     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
  1912
     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
  1913
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1914
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1915
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1916
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1917
    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
  1918
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1919
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1920
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1921
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1922
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1923
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1924
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1925
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1926
     Squeak compatibility."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1927
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1928
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1929
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1930
    elementSize := aContainer class elementByteSize.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1931
    n := self nextBytes:nElements*elementSize into:aContainer startingAt:1.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1932
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1933
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1934
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1935
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1936
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1937
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1938
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1939
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1940
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1941
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1942
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1943
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1944
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1945
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1946
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1947
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1948
    ^ self class invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1949
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1950
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1951
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1952
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1953
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1954
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1955
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1956
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1957
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1958
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1959
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1960
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1961
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1962
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1963
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1964
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1965
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1966
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1967
buffered:aBoolean
10
claus
parents: 5
diff changeset
  1968
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1969
10
claus
parents: 5
diff changeset
  1970
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1971
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1972
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1973
contents
2
claus
parents: 1
diff changeset
  1974
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  1975
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  1976
     the byte values is returned.
claus
parents: 1
diff changeset
  1977
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  1978
     is returned."
claus
parents: 1
diff changeset
  1979
claus
parents: 1
diff changeset
  1980
    |text l chunks sizes chunk byteCount cnt bytes offset|
claus
parents: 1
diff changeset
  1981
claus
parents: 1
diff changeset
  1982
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1983
	"adding to a ByteArray produces quadratic time-space
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1984
	 behavior - therefore we allocate chunks, and concatenate them
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1985
	 at the end."
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1986
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1987
	chunks := OrderedCollection new.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1988
	sizes := OrderedCollection new.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1989
	byteCount := 0.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1990
	[self atEnd] whileFalse:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1991
	    chunk := ByteArray uninitializedNew:4096.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1992
	    cnt := self nextBytes:(chunk size) into:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1993
	    cnt notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1994
		chunks add:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1995
		sizes add:cnt.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1996
		byteCount := byteCount + cnt
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1997
	    ]
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1998
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  1999
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2000
	"now, create one big ByteArray"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2001
	bytes := ByteArray uninitializedNew:byteCount.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2002
	offset := 1.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2003
	1 to:chunks size do:[:index |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2004
	    chunk := chunks at:index.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2005
	    cnt := sizes at:index. 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2006
	    bytes replaceFrom:offset to:(offset + cnt - 1) with:chunk.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2007
	    offset := offset + cnt
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2008
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2009
	^ bytes
2
claus
parents: 1
diff changeset
  2010
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2011
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  2012
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2013
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2014
	l := self nextLine.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2015
	l isNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2016
	    ^ text
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2017
	].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2018
	text add:l
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2019
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2020
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2021
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2022
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2023
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2024
    "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
  2025
     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
  2026
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2027
    binary ifTrue:[
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2028
        ^ self contents.
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2029
    ].
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2030
    ^ self upToEnd
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  2031
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  2032
    "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
  2033
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  2034
!
claus
parents: 1
diff changeset
  2035
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2036
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2037
    "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
  2038
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2039
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5431
diff changeset
  2040
    binary == true ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2041
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2042
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2043
    ^ String
2
claus
parents: 1
diff changeset
  2044
!
claus
parents: 1
diff changeset
  2045
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2046
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2047
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2048
     The argument may be one of:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2049
	#crlf         -> add a CR-NL, as in MSDOS
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2050
	#cr           -> add a CR, as in VMS
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2051
	#nl           -> add a NL, as in Unix
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2052
	anyOther      -> like #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2053
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2054
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2055
    eolMode := aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2056
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2057
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2058
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2059
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2060
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2061
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2062
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  2063
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2064
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2065
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2066
    if ((fp = __INST(filePointer)) != nil) {
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2067
        FILEPOINTER f;
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2068
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2069
        f = __FILEVal(fp);
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2070
        RETURN ( __MKINT(fileno(f)) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2071
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2072
%}.
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2073
    filePointer isNil ifTrue:[^ self errorNotOpen].
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2074
    ^ self fileDescriptorOfFile:filePointer
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2075
!
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2076
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2077
fileDescriptorOfFile:filePointer
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2078
    "for migration to rel5 only:
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2079
     return the fileDescriptor of the argument filePointer -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2080
     notice: this one returns the underlying OSs fileDescriptor -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2081
     this may not be available on all platforms (i.e. non unix systems)."
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2082
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2083
    self primitiveFailed
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2084
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2085
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2086
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2087
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2088
     notice: for portability stdio is used; this means you will get
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2089
     a FILE * - not a fileDescriptor. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2090
     (what you really get is a corresponding integer).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2091
     You cannot do much with the returned value 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2092
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2093
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2094
    ^ filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2095
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2096
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2097
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2098
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2099
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2100
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2101
lineEndTransparent
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2102
    eolMode := #cr
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2103
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2104
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2105
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2106
    "set access mode to readonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2107
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2108
    mode := #readonly
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2111
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2112
    "set access mode to readwrite"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2113
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2114
    mode := #readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2115
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2116
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2117
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2118
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2119
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2120
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2121
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2122
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2123
useCRLF:aBoolean
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2124
    "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
  2125
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2126
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2127
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2128
    aBoolean ifTrue:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2129
	eolMode := #crlf
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2130
    ] ifFalse:[
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2131
	eolMode := #nl
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2132
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2133
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2134
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2135
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2136
    "set access mode to writeonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2137
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2138
    mode := #writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2139
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2140
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2141
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2142
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2143
argumentMustBeCharacter
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2144
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2145
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2146
    "report an error, that the argument must be a character"
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
    ^ self error:'argument must be a character'
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2149
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2150
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2151
argumentMustBeInteger
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2152
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2153
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2154
    "report an error, that the argument must be an integer"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2155
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2156
    ^ self error:'argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2157
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2158
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2159
argumentMustBeString
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2160
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2161
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2162
    "report an error, that the argument must be a string"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2163
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2164
    ^ self error:'argument must be a string'
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2165
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2166
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2167
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2168
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2169
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2170
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2171
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2172
    ^ self class openErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2173
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2174
	errorString:(self class name , ' is already open')
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2175
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2176
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2177
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2178
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2179
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2180
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2181
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2182
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2183
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2184
    ^ self invalidModeSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2185
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2186
	     errorString:(self class name , ' is in binary mode')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2187
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2188
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2189
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2190
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2191
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2192
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2193
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2194
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2195
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2196
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2197
    ^ self invalidModeSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2198
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2199
	     errorString:(self class name , ' is not in binary mode')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2200
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2201
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2202
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2203
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2204
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2205
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2206
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2207
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2208
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2209
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2210
    ^ StreamErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2211
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2212
	     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
  2213
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2214
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2215
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2216
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2217
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2218
errorNotOpen
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 stream has not been opened"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2222
3467
54ccb6f7d886 oops - streamNotOpenSignal
Claus Gittinger <cg@exept.de>
parents: 3456
diff changeset
  2223
    ^ StreamNotOpenSignal
6661
cebbd4eca260 Do not raise non-proceedable errors proceedable
Stefan Vogel <sv@exept.de>
parents: 6603
diff changeset
  2224
        raiseWith:self
6583
e88f2c4ab2a7 raise StreamNotOpenError proceedable
Claus Gittinger <cg@exept.de>
parents: 6569
diff changeset
  2225
        errorString:(self class name , ' not open')
e88f2c4ab2a7 raise StreamNotOpenError proceedable
Claus Gittinger <cg@exept.de>
parents: 6569
diff changeset
  2226
                      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2227
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2228
    "Modified: / 8.5.1999 / 20:12:33 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2229
!
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
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2232
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2233
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2234
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2235
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2236
    ^ self invalidWriteSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2237
	  raiseWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2238
	  errorString:(self class name , ' is readonly')
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2239
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2240
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2241
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2242
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2243
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2244
errorReporter
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2245
    "ST-80 mimicry."
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2246
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  2247
    ^ self class
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2248
!
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2249
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2250
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2251
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2252
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2253
    "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
  2254
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2255
    ^ self invalidOperationSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2256
	raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2257
	errorString:'unsupported operation'
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2258
		 "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2259
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2260
    "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
  2261
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2262
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2263
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2264
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2265
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2266
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2267
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2268
    ^ self invalidReadSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2269
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2270
	     errorString:(self class name , ' is writeonly')
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2271
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2272
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2273
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2274
!
claus
parents: 1
diff changeset
  2275
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2276
ioError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2277
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2278
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2279
    "report an error, that some I/O error occured.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2280
     (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
  2281
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2282
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2283
    ^ StreamIOErrorSignal
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2284
	       raiseWith:self
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2285
	     errorString:('I/O error: ' , self lastErrorString)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2286
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2287
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2288
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2291
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2292
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2293
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2294
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2295
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2296
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2297
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2298
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2299
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2300
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2301
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2302
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2303
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2304
!
claus
parents: 1
diff changeset
  2305
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2306
openError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2307
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2308
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2309
    "report an error, that the open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2310
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2311
    ^ self class openErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2312
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2313
	     errorString:('error on open: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2314
		      "/ in:thisContext sender
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2315
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2316
    "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
  2317
    "Modified: / 8.5.1999 / 20:12:12 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2318
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2319
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2320
readError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2321
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2322
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2323
    "report an error, that some read error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2324
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2325
    ^ ReadErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2326
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2327
	     errorString:('read error: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2328
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2329
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2330
    "Modified: / 8.5.1999 / 20:12:00 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2331
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2332
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2333
writeError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2334
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2335
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2336
    "report an error, that some write error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2337
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2338
    ^ WriteErrorSignal
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2339
	raiseRequestWith:self
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2340
	     errorString:('write error: ' , self lastErrorString)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  2341
		      "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2342
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2343
    "Modified: / 8.5.1999 / 20:12:09 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2344
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2345
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2346
!ExternalStream methodsFor:'finalization'!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2347
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2348
finalizationLobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2349
    "answer the registry used for finalization.
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2350
     ExternalStreams have their own Registry"
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2351
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2352
    ^ Lobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2353
!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2354
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2355
finalize
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2356
    "some Stream has been collected - close the file if not already done"
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2357
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2358
    self closeFile
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2359
! !
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2360
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2361
!ExternalStream methodsFor:'instance release'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2362
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2363
closeFile
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2364
    "low level close - may be redefined in subclasses"
2
claus
parents: 1
diff changeset
  2365
5494
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2366
    |fp|
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2367
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2368
%{
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2369
    if ((fp = __INST(filePointer)) != nil) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2370
	FILEPOINTER f;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2371
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2372
	__INST(filePointer) = nil;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2373
	f = __FILEVal(fp);
6487
78c18e4cb6ff @global stuff for classvars
Stefan Vogel <sv@exept.de>
parents: 6474
diff changeset
  2374
	if (@global(FileOpenTrace) == true) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2375
	    fprintf(stderr, "fclose [ExternalStream] %x\n", f);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2376
	}
5620
c50610309c38 separated close from free (i.e. avoid using fclose);
Claus Gittinger <cg@exept.de>
parents: 5618
diff changeset
  2377
#ifdef WIN32
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2378
	__BEGIN_INTERRUPTABLE__
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2379
	__STX_C_CALL1((void*)fclose, (void*)f);
5620
c50610309c38 separated close from free (i.e. avoid using fclose);
Claus Gittinger <cg@exept.de>
parents: 5618
diff changeset
  2380
	__END_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2381
#else
5620
c50610309c38 separated close from free (i.e. avoid using fclose);
Claus Gittinger <cg@exept.de>
parents: 5618
diff changeset
  2382
	__BEGIN_INTERRUPTABLE__
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2383
	fclose(f);
5620
c50610309c38 separated close from free (i.e. avoid using fclose);
Claus Gittinger <cg@exept.de>
parents: 5618
diff changeset
  2384
	__END_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  2385
#endif
10
claus
parents: 5
diff changeset
  2386
    }
5494
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2387
    RETURN (self);
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2388
%}.
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2389
    "/ fallback for rel5
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2390
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2391
    fp := filePointer.
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2392
    fp notNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2393
	filePointer := nil.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2394
	self closeFile:fp
5494
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2395
    ]
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2396
!
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2397
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2398
closeFile:filePointer
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2399
    "for rel5 only"
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2400
35f624eaf060 rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5442
diff changeset
  2401
    self primitiveFailed
10
claus
parents: 5
diff changeset
  2402
!
claus
parents: 5
diff changeset
  2403
6441
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2404
executor
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2405
    "return a copy for finalization-registration;
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2406
     since all we need at finalization time is the fileDescriptor,
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2407
     a cheaper copy is possible."
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2408
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2409
    ^ self class basicNew setFilePointer:filePointer
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2410
!
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2411
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2412
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
  2413
    "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
  2414
     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
  2415
     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
  2416
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  2417
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2418
    FILEPOINTER f;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2419
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  2420
    FILE *fdopen();
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2421
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2422
    if (__isSmallInteger(anInteger) &&
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2423
	__isString(openMode) &&
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2424
	(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
  2425
    ) {
6487
78c18e4cb6ff @global stuff for classvars
Stefan Vogel <sv@exept.de>
parents: 6474
diff changeset
  2426
	if (@global(FileOpenTrace) == true) {
5204
9e0445bc00ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5203
diff changeset
  2427
	    fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", __intVal(anInteger), f);
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  2428
	}
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2429
	__PROTECT__(self);
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
  2430
	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
  2431
	__UNPROTECT__(self);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2432
	__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
  2433
	RETURN (self);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2434
    }
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2435
%}.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2436
    ^ self primitiveFailed
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2437
!
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2438
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2439
setFilePointer:something
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2440
    "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
  2441
     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
  2442
     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
  2443
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2444
    filePointer := something
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2445
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2446
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2447
shutDown
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2448
    "close the stream - added for protocol compatibility with PipeStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2449
     see comment there"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2450
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2451
    self isOpen ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2452
	Lobby unregister:self.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2453
	self closeFile
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2454
    ]
1642
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2455
91c6860f1c9d when shutting down, also tell the Lobby
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  2456
    "Modified: 30.8.1996 / 00:39:21 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2457
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2458
2
claus
parents: 1
diff changeset
  2459
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2460
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2461
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2462
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2463
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2464
     If the previous-to-last character is a cr, this is also removed,
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2465
     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
  2466
     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
  2467
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2468
    |line|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2469
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2470
%{  /* STACK:34000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2471
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2472
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2473
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2474
    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
  2475
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2476
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2477
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2478
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2479
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2480
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2481
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2482
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2483
    if (((fp = __INST(filePointer)) != nil)
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2484
	&& (__INST(mode) != @symbol(writeonly))
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2485
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2486
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2487
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2488
	buffer[0] = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2489
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2490
	_buffered = (__INST(buffered) == true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2491
	if (_buffered) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2492
	    __READING__(f);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2493
	} 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2494
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2495
	rslt = nextPtr = buffer;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2496
	limit = buffer + sizeof(buffer) - 2;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2497
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2498
	for (;;) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2499
	    __READBYTE__(ret, f, nextPtr, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2500
	    if (ret <= 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2501
		if (nextPtr == buffer)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2502
		    rslt = NULL;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2503
		if (ret == 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2504
		    __INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2505
		    break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2506
		} else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2507
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2508
		    goto err;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2509
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2510
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2511
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2512
	    if (*nextPtr == '\n') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2513
		cutOff = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2514
		*nextPtr = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2515
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2516
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2517
	    if (*nextPtr == '\r') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2518
		char peekChar;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2519
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2520
		/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2521
		 * peek ahead for a newLine ...
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2522
		 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2523
		__READBYTE__(ret, f, &peekChar, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2524
		if (ret <= 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2525
		    cutOff = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2526
		    *nextPtr = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2527
		    if (ret == 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2528
			__INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2529
			break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2530
		    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2531
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2532
		    goto err;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2533
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2534
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2535
		if (peekChar == '\n') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2536
		    cutOff = 2;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2537
		    *nextPtr = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2538
		    break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2539
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2540
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2541
		__UNGETC__(peekChar, f, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2542
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2543
		cutOff = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2544
		*nextPtr = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2545
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2546
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2547
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2548
	    nextPtr++;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2549
	    if (nextPtr >= limit) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2550
		*nextPtr = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2551
		lineTooLong = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2552
		if (@global(InfoPrinting) == true) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2553
		    fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2554
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2555
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2556
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2557
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2558
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2559
	if (rslt != NULL) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2560
	    len = nextPtr-buffer;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2561
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2562
	    if (__INST(position) != nil) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2563
		int __p;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2564
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2565
		__p = __intVal(__INST(position)) + len + cutOff;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2566
		__INST(position) = __MKSMALLINT(__p);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2567
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2568
	    /* remove any EOL character */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2569
	    if (len != 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2570
		if (buffer[len-1] == '\n') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2571
		    buffer[--len] = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2572
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2573
		if ((len != 0) && (buffer[len-1] == '\r')) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2574
		    buffer[--len] = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2575
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2576
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2577
	    line = __MKSTRING_L(buffer, len);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2578
	    if (! lineTooLong) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2579
		RETURN ( line );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2580
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2581
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2582
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2583
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2584
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2585
    line notNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2586
	"/ the line as read is longer than 32k characters (boy - what a line)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2587
	"/ The exception could be handled by reading more and returning the
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2588
	"/ concatenation in your exception handler (the receiver and the partial
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2589
	"/ line are passed as parameter)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2590
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2591
	LineTooLongErrorSignal isHandled ifTrue:[
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2592
	    ^ LineTooLongErrorSignal
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2593
		raiseRequestWith:(Array with:self with:line)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2594
		     errorString:('line too long read error')
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2595
	].
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  2596
	^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2597
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2598
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2599
    (hitEOF == true) ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2600
    lastErrorNumber notNil ifTrue:[^ self readError].
2
claus
parents: 1
diff changeset
  2601
    filePointer isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2602
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2603
    (binary == true) ifTrue:[^ self errorBinary].
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2604
    ^ super nextLine
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2605
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2606
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2607
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2608
    "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
  2609
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2610
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2611
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2612
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2613
    int len, cnt, len1, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2614
    OBJ pos, fp;
537
dc4dad8a5ddd many ExtStream rewrites - has to be reevaluated in all platforms
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  2615
    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
  2616
    int o_offs;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2617
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2618
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2619
    if (((fp = __INST(filePointer)) != nil) 
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2620
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2621
	&& (__INST(binary) != true)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2622
	&& __isString(aString)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2623
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2624
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2625
	len = __stringSize(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2626
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2627
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2628
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2629
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2630
#ifdef BUGGY
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2631
	__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
  2632
#else
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2633
	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
  2634
	__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
  2635
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2636
	if (cnt == len) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2637
	    OBJ mode = __INST(eolMode);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2638
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2639
	    len1 = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2640
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2641
	    if (mode == @symbol(cr)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2642
		cp = "\r"; len = 1;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2643
	    } else if (mode == @symbol(crlf)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2644
		cp = "\r\n"; len = 2;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2645
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2646
		cp = "\n"; len = 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2647
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2648
	    __WRITEBYTES__(cnt, f, cp, len, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2649
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2650
	    if (cnt > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2651
		pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2652
		if (pos != nil) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2653
		    int __p;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2654
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2655
		    __p = __intVal(pos) + len1 + cnt;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2656
		    __INST(position) = __MKSMALLINT(__p);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2657
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2658
		RETURN ( self );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2659
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2660
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2661
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2662
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2663
%}.
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2664
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2665
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2666
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2667
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2668
    "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
  2669
     and append all lines to self. 
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2670
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2671
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2672
     If aStringOrNil is nil or not matched, copy preceeds to the end.
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2673
     (this allows for example to read a Socket and transfer the data quickly
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2674
      into a file - without creating zillions of temporary strings)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2675
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2676
    |srcFilePointer readError line|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2677
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2678
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2679
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2680
    srcFilePointer := aStream filePointer.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2681
    srcFilePointer isNil ifTrue:[aStream errorNotOpen. ^ self].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2682
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2683
%{  /* STACK:2000 */
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2684
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2685
#ifndef NO_STDIO
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2686
    FILEPOINTER dst;
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2687
    FILEPOINTER src;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2688
    char *matchString;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2689
    int matchLen = 0;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2690
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2691
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2692
    __INST(lastErrorNumber) = nil;
249
claus
parents: 244
diff changeset
  2693
    if (__isSmallInteger(srcFilePointer)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2694
	if ((aStringOrNil == nil) || __isString(aStringOrNil)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2695
	    if (aStringOrNil != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2696
		matchString = (char *) __stringVal(aStringOrNil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2697
		matchLen = __stringSize(aStringOrNil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2698
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2699
	    dst = __FILEVal(__INST(filePointer));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2700
	    src = __FILEVal(srcFilePointer);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2701
	    __BEGIN_INTERRUPTABLE__
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2702
	    __threadErrno = 0;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2703
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2704
	    __WRITING__(dst)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2705
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2706
	    for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2707
		if (fgets(buffer, sizeof(buffer)-1, src) == NULL) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2708
		    if (ferror(src)) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2709
			readError = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2710
			__END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2711
			goto err;
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
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2714
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2715
		if (fputs(buffer, dst) == EOF) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2716
		    if (ferror(dst)) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2717
			__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2718
			__END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2719
			goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2720
		    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2721
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2722
		}
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2723
#ifndef OLD
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2724
		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
  2725
		    FFLUSH(dst);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2726
		}
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2727
#endif
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2728
		if (matchLen) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2729
		    if (strncmp(matchString, buffer, matchLen) == 0) 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2730
			break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2731
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2732
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2733
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2734
	    __INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2735
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2736
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2737
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2738
err: ;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2739
#endif /* ! NO_STDIO */
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2740
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2741
    readError ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2742
	aStream setLastErrorNumber:readError.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2743
	aStream readError.
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2744
	^ self
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2745
    ].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2746
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  2747
    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
  2748
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2749
    "
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2750
     argument error or unimplemented; try it linewise
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2751
    "
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2752
    [aStream atEnd] whileFalse:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2753
	line := aStream nextLine.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2754
	line isNil ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2755
	    ^ self.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2756
	].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2757
	self nextPutLine:line.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2758
	(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
  2759
	    ^ self
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2760
	]
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2761
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2762
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2763
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2764
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2765
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2766
     return the line-string if found, or nil if EOF is encountered.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2767
     If matched, not advance position behond that line
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2768
     i.e. nextLine will read the matched line.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2769
     If not matched, reposition to original position for firther reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2770
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2771
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2772
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2773
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2774
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2775
    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
  2776
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2777
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2778
%{  /* STACK: 2000 */
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2779
#ifndef NO_STDIO
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2780
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2781
    FILEPOINTER f;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2782
    int l;
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2783
    char buffer[1024];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2784
    char *cp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2785
    char *matchString;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2786
    int gotFirst = 0;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2787
#ifdef __VMS__
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2788
    fpos_t firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2789
#   define FTELL(__f__, __pos__)        fgetpos(__f__, &(__pos__))
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2790
#   define FSEEK(__f__, __pos__)        fsetpos(__f__, &(__pos__))
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2791
#else
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2792
    long firstpos, lastpos;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2793
#   define FTELL(__f__, __pos__)        __pos__ = ftell(__f__)
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2794
#   define FSEEK(__f__, __pos__)        fseek(__f__, __pos__, SEEK_SET)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2795
#endif
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2796
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2797
    __INST(lastErrorNumber) = nil;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
  2798
    if (__isString(aString)) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2799
	matchString = (char *) __stringVal(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2800
	l = __stringSize(aString);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2801
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2802
	f = __FILEVal(__INST(filePointer));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2803
	__READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2804
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2805
	for (;;) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2806
	    FTELL(f, lastpos);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2807
	    if (!gotFirst) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2808
		firstpos = lastpos;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2809
		gotFirst = 1;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2810
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2811
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2812
	    __BEGIN_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2813
	    do {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2814
		cp = fgets(buffer, sizeof(buffer)-1, f);
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2815
	    } while ((cp == NULL) && ferror(f) && (__threadErrno == EINTR) && (clearerr(f), 1));
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2816
	    buffer[sizeof(buffer)-1] = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2817
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2818
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2819
	    if (cp == NULL) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2820
		if (ferror(f)) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  2821
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2822
		    goto err;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2823
		} else {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2824
		    FSEEK(f, firstpos);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2825
		    RETURN (nil);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2826
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2827
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2828
	    if (strncmp(cp, matchString, l) == 0) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2829
		FSEEK(f, lastpos);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2830
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2831
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2832
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2833
	/* remove EOL character */
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2834
	cp = buffer;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2835
	while (*cp && (*cp != '\n') && (*cp != '\r')) cp++;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2836
	*cp = '\0';
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2837
	RETURN ( __MKSTRING(buffer) );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2838
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2839
err: ;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2840
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2841
# undef FTELL
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2842
# undef FSEEK
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2843
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2844
#endif
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2845
%}.
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2846
    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
  2847
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2848
    "/ 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
  2849
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2850
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2851
    [self atEnd] whileFalse:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2852
	lastPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2853
	line := self nextLine.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2854
	line isNil ifTrue:[
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2855
	    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2856
	    ^ nil
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2857
	].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2858
	(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
  2859
	    self position:lastPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2860
	    ^ line
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2861
	]
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2862
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2863
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2864
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2865
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2866
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2867
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2868
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2869
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2870
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2871
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2872
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2873
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2874
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2875
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2876
    filePointer isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2877
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2878
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2879
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2880
    [self atEnd] whileFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2881
	linePos := self position.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2882
	line := self nextLine.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2883
	line notNil ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2884
	    index := 1.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2885
	    aCollectionOfStrings do:[:prefix |
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2886
		(line startsWith:prefix) ifTrue:[
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2887
		    self position:linePos.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2888
		    ^ index
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2889
		].
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2890
		index := index + 1
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2891
	    ]
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2892
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2893
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2894
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2895
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2896
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2897
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2898
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2899
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2900
async:aBoolean
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2901
    "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
  2902
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2903
     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
  2904
     Notice: 
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2905
	not every OS supports this 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2906
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2907
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2908
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2909
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2910
    filePointer isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2911
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2912
    OperatingSystem supportsIOInterrupts ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2913
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2914
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2915
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2916
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2917
    aBoolean ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  2918
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2919
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2920
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2921
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2922
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2923
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2924
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2925
backStep
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2926
    "step back one element -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2927
     redefined, since position is redefined here"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2928
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2929
    self position:(self position - 1)
362
claus
parents: 360
diff changeset
  2930
!
claus
parents: 360
diff changeset
  2931
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2932
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2933
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2934
     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
  2935
     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
  2936
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2937
     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
  2938
     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
  2939
     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
  2940
     methods, in order to avoid other (pastEnd) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2941
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2942
    filePointer isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2943
    ^ 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
  2944
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2945
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2946
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2949
close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2950
    "close the stream - tell operating system"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2951
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2952
    self isOpen ifTrue:[
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2953
	Lobby unregister:self.
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  2954
	self closeFile.
3949
904575569fb4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
  2955
    ]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2956
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2957
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2958
copyToEndInto:outStream
7013
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2959
    "copy the data into another stream.
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2960
     For backward compatibility, this raises another signal
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2961
     Q: does anyone care ?"
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2962
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2963
    |bufferSize bytesWritten|
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2964
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2965
    OperatingSystem isMSDOSlike ifTrue:[
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2966
        "/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2967
        bufferSize := 1 * 1024.
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2968
    ] ifFalse:[
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2969
        bufferSize := 8 * 1024.
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2970
    ].
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2971
7013
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2972
    WriteErrorSignal handle:[:ex |
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2973
        OperatingSystem accessDeniedErrorSignal raiseRequest.
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2974
        ^ bytesWritten
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2975
    ] do:[
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  2976
        bytesWritten := self copyToEndInto:outStream bufferSize:bufferSize
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2977
    ].
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2978
    ^ bytesWritten
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2979
!
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2980
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2981
create
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2982
    "create the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2983
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2984
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2985
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2986
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2987
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2988
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2989
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2990
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2991
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2992
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2993
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2994
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2995
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2996
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2997
     on the underlying file; the argument is passed as argument.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2998
     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
  2999
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3000
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3001
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3002
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3003
     If the argument is nil, an ioctl without argument is performed.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3004
     If the argument is an integral number, its directly passed; 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3005
     if its a kind of ByteArray (ByteArray, String or Structure),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3006
     or external data (ExternalBytes or ExternalAddress),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3007
     a pointer to the data is passed. 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3008
     This allows performing most ioctls 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3009
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3010
     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
  3011
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3012
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  3013
#if !defined(MSDOS_LIKE)
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  3014
# 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
  3015
    FILEPOINTER f;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3016
    int ret, ioNum;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3017
    OBJ fp;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3018
    INT ioArg;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3019
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3020
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3021
    if ((fp = __INST(filePointer)) != nil) {
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3022
	if (__isSmallInteger(ioctlNumber) 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3023
	 && (__isSmallInteger(arg) 
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3024
	     || (arg == nil)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3025
	     || __isBytes(arg)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3026
	     || __isExternalBytes(arg)
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3027
	     || __isExternalAddress(arg))) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3028
	    f = __FILEVal(fp);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3029
	    ioNum = __intVal(ioctlNumber);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3030
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3031
	    __BEGIN_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3032
	    do {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3033
		__threadErrno = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3034
		if (arg == nil) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3035
		    ioArg = 0;
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3036
		} else if (__isSmallInteger(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3037
		    ioArg = __intVal(arg);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3038
		} else if (__isExternalBytes(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3039
		    ioArg = (INT)(__externalBytesAddress(arg));
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3040
		} else if (__isExternalAddress(arg)) {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3041
		    ioArg = (INT)(__externalAddressVal(arg));
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3042
		} else {
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3043
		    ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3044
		}
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3045
		ret = ioctl(fileno(f), ioNum, ioArg);
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3046
	    } while ((ret < 0) && (__threadErrno == EINTR));
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3047
	    __END_INTERRUPTABLE__
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3048
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3049
	    if (ret >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3050
		RETURN ( __MKSMALLINT(ret) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3051
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3052
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3053
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3054
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3055
    }
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  3056
# endif
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  3057
#endif
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3058
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3059
    lastErrorNumber notNil ifTrue:[^ self ioError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3060
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3061
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3062
     argument is not an integer
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3063
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3064
    (ioctlNumber isMemberOf:SmallInteger) ifFalse:[^ self primitiveFailed].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3065
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3066
     the system does not support ioctl (MSDOS or VMS)
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3067
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3068
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3069
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3070
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3071
open
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3072
    "open the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3073
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3074
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3075
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3076
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3077
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3078
position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3079
    "return the position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3080
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3081
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3082
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3083
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3084
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3085
position:anInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3086
    "set the position
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3087
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3088
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3089
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3090
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3091
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3092
reset
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3093
    "set the read position to the beginning of the collection"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3094
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3095
    self position:"0" 1
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3096
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3097
1044
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3098
setToEnd
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3099
    "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
  3100
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3101
    ^ self subclassResponsibility
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3102
!
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3103
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3104
truncateTo:newSize
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3105
    "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
  3106
     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
  3107
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  3108
%{
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3109
#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
  3110
    FILEPOINTER f;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3111
    OBJ fp;
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3112
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3113
    if (((fp = __INST(filePointer)) != nil)
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3114
     && (__INST(mode) != @symbol(readonly))) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3115
	if (__isSmallInteger(newSize)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3116
	    f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3117
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3118
	    if (__INST(buffered) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3119
		__READING__(f)
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3120
		FFLUSH(f);
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3121
		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
  3122
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3123
	    ftruncate(fileno(f), __intVal(newSize));
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3124
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3125
	}
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3126
    }
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3127
#endif
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3128
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3129
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3130
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3131
    self errorUnsupportedOperation
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3132
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3133
    "
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3134
     |s|
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3135
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3136
     s := 'test' asFilename writeStream.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3137
     s next:1000 put:$a.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3138
     s truncateTo:100.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3139
     s close.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3140
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3141
     ('test' asFilename fileSize) printNL
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3142
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3143
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3144
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3145
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3146
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3147
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3148
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3149
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3150
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3151
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3152
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3153
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3154
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3155
    binary ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3156
	buffer := ByteArray new:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3157
    ] ifFalse:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3158
	buffer := String new:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3159
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3160
    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
  3161
    n == 0 ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3162
	binary ifTrue:[
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3163
	    ^ #[] 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3164
	].
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3165
	^ ''
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3166
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3167
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3168
    n ~~ count ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3169
	^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3170
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3171
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3172
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3173
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3174
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:3 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3175
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3176
     (ReadStream on:'hello') nextAvailable:3
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3177
     (ReadStream on:'hello') nextAvailable:10 
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3178
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3179
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3180
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3181
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3182
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3183
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3184
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3185
    "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
  3186
     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
  3187
     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
  3188
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3189
     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
  3190
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3191
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3192
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3193
     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
  3194
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3195
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3196
     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
  3197
     (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
  3198
     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
  3199
     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
  3200
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3201
     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
  3202
     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
  3203
     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
  3204
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3205
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3206
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3207
    int cnt, offs, ret, _buffered;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3208
    int objSize, nInstVars, nInstBytes;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3209
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3210
    char *extPtr;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3211
    OBJ pos, fp, oClass;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3212
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3213
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3214
    __INST(lastErrorNumber) = nil;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3215
    if (((fp = __INST(filePointer)) != nil)
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3216
	&& (__INST(mode) != @symbol(writeonly))
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3217
	&& __bothSmallInteger(count, start)
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3218
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3219
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3220
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3221
	cnt = __intVal(count);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3222
	offs = __intVal(start) - 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3223
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3224
	oClass = __Class(anObject);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3225
	if (oClass == ExternalBytes) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3226
	    OBJ sz;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3227
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3228
	    nInstBytes = 0;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3229
	    extPtr = (char *)(__externalBytesAddress(anObject));
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3230
	    sz = __externalBytesSize(anObject);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3231
	    if (__isSmallInteger(sz)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3232
		objSize = __intVal(sz);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3233
	    } else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3234
		objSize = 0; /* unknown */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3235
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3236
	} else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3237
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3238
		case BYTEARRAY:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3239
		case WORDARRAY:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3240
		case LONGARRAY:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3241
		case SWORDARRAY:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3242
		case SLONGARRAY:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3243
		case FLOATARRAY:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3244
		case DOUBLEARRAY:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3245
		    break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3246
		default:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3247
		    goto bad;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3248
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3249
	    extPtr = (char *)0;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3250
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3251
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3252
	    objSize = __Size(anObject) - nInstBytes;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3253
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3254
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3255
	if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3256
	    _buffered = (__INST(buffered) == true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3257
	    if (_buffered) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3258
		__READING__(f);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3259
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3260
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3261
	    if (extPtr) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3262
		__READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3263
	    } else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3264
		/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3265
		 * on interrupt, anObject may be moved to another location.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3266
		 * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3267
		 * to get a new address.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3268
		 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3269
		offs += nInstBytes;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3270
		__READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3271
	    }
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3272
#ifdef PRE_22_jan_2000
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3273
	    if (ret > 0) 
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3274
#else
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3275
	    /* 0 is NOT an EOF condition here ... */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3276
	    if (ret >= 0) 
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3277
#endif
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3278
	    {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3279
		pos = __INST(position);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3280
		if (pos != nil) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3281
		    __INST(position) = __MKSMALLINT(__intVal(pos) + ret);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3282
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3283
		RETURN (__MKSMALLINT(ret));
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3284
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3285
	    if (ret == 0) { 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3286
		__INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3287
	    } else /* ret < 0 */ {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3288
		__INST(position) = nil;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3289
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3290
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  3291
	}
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3292
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3293
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3294
%}.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3295
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3296
    lastErrorNumber notNil ifTrue:[^ self readError].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3297
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3298
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3299
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3300
     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
  3301
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3302
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3303
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3304
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3305
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3306
    "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
  3307
     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
  3308
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3309
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3310
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3311
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3312
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3313
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3314
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3315
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3316
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3317
    if (((fp = __INST(filePointer)) != nil)
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3318
     && (__INST(mode) != @symbol(writeonly))) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3319
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3320
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3321
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3322
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3323
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3324
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3325
	__READBYTE__(ret, f, &byte, _buffered);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3326
	if (ret > 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3327
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3328
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3329
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3330
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3331
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3332
	    RETURN (__MKSMALLINT(byte));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3333
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3334
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3335
	if (ret == 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3336
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3337
	} else /* ret < 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3338
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3339
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3340
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3341
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3342
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3343
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3344
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3345
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3346
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3347
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3348
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3349
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3350
    "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
  3351
     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
  3352
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3353
     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
  3354
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3355
     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
  3356
     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
  3357
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3358
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3359
     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
  3360
     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
  3361
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3362
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3363
     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
  3364
     (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
  3365
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3366
     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
  3367
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3368
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3369
     Use with care - non object oriented I/O.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3370
     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
  3371
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3372
     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
  3373
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3374
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3375
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3376
    int cnt, offs, ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3377
    int objSize, nInstVars, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3378
    char *extPtr;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3379
    OBJ pos, fp, oClass;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3380
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3381
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3382
    if (((fp = __INST(filePointer)) != nil)
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3383
	&& (__INST(mode) != @symbol(writeonly))
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3384
	&& __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3385
    ) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3386
	f = __FILEVal(fp);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3387
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3388
	cnt = __intVal(count);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3389
	offs = __intVal(start) - 1;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3390
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3391
	oClass = __Class(anObject);
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3392
	if (oClass == ExternalBytes) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3393
	    OBJ sz;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3394
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3395
	    nInstBytes = 0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3396
	    extPtr = (char *)(__externalBytesAddress(anObject));
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3397
	    sz = __externalBytesSize(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3398
	    if (__isSmallInteger(sz)) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3399
		objSize = __intVal(sz);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3400
	    } else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3401
		objSize = 0; /* unknown */
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3402
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3403
	} else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3404
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3405
		case BYTEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3406
		case WORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3407
		case LONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3408
		case SWORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3409
		case SLONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3410
		case FLOATARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3411
		case DOUBLEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3412
		    break;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3413
		default:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3414
		    goto bad;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3415
	    }
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3416
	    extPtr = (char *)0;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3417
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3418
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3419
	    objSize = __Size(anObject) - nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3420
	}
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3421
	if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3422
	    _buffered = (__INST(buffered) == true);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3423
	    if (_buffered) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3424
		__READING__(f);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3425
	    }
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  3426
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3427
	    if (extPtr) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3428
		__READBYTES__(ret, f, extPtr+offs, cnt, _buffered);
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3429
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3430
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3431
		 * on interrupt, anObject may be moved to another location.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3432
		 * 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
  3433
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3434
		offs += nInstBytes;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3435
		__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
  3436
	    }
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  3437
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3438
	    if (ret > 0) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3439
		pos = __INST(position);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3440
		if (pos != nil) {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3441
		    __INST(position) = __MKSMALLINT(__intVal(pos) + ret);
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3442
		}
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3443
		RETURN (__MKSMALLINT(ret));
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3444
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3445
	    if (ret == 0) { 
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3446
		__INST(hitEOF) = true;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3447
	    } else /* ret < 0 */ {
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3448
		__INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3449
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3450
	    }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3451
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3452
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3453
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3454
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3455
    (hitEOF and:[self pastEnd isNil]) ifTrue:[^ 0].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3456
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3457
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3458
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3459
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3460
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3461
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3462
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3463
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3464
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3465
nextLong
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3466
    "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
  3467
     The returned value may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3468
     (msb-first for compatibility with other smalltalks)"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3469
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3470
    ^ self nextUnsignedLongMSB:true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3471
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3472
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3473
nextLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3474
    "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
  3475
     which may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3476
     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
  3477
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3478
     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
  3479
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3480
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3481
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3482
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3483
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3484
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3485
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3486
	&& (__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
  3487
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3488
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3489
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3490
	int value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3491
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3492
	    unsigned char buffer[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3493
	    int intVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3494
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3495
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3496
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3497
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3498
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3499
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3500
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3501
	__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
  3502
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3503
	if (ret == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3504
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3505
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3506
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3507
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
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
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3510
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3511
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3512
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3513
		value = (u.buffer[0] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3514
		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
  3515
		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
  3516
		value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3517
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3518
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3519
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3520
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3521
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3522
		value = (u.buffer[3] & 0xFF);
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] & 0xFF);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3524
		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
  3525
		value = (value << 8) | (u.buffer[0] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3526
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3527
	    }
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3528
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3529
	    RETURN ( __MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3530
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3531
	    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
  3532
		RETURN ( __MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3533
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3534
	    RETURN ( __MKLARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3535
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3536
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3537
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3538
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3539
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3540
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3541
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3542
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3543
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3544
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3545
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3546
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3547
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3548
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3549
    ^ self readError.
1079
d47cd86b487b Make methods signal-proof.
Stefan Vogel <sv@exept.de>
parents: 1068
diff changeset
  3550
362
claus
parents: 360
diff changeset
  3551
!
claus
parents: 360
diff changeset
  3552
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3553
nextShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3554
    "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
  3555
     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
  3556
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3557
     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
  3558
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3559
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3560
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3561
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3562
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3563
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3564
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3565
	&& (__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
  3566
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3567
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3568
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3569
	short value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3570
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3571
	    unsigned char buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3572
	    short shortVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3573
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3574
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3575
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3576
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3577
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3578
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3579
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3580
	__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
  3581
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3582
	if (ret == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3583
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3584
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3585
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3586
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
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
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3589
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3590
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3591
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3592
		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
  3593
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3594
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3595
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3596
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3597
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3598
		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
  3599
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3600
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3601
	    RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3602
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3603
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3604
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3605
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3606
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3607
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3608
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3609
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3610
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3611
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3612
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3613
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3614
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3615
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3616
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3617
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3618
nextUnsignedLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3619
    "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
  3620
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3621
     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
  3622
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3623
     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
  3624
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3625
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3626
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3627
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3628
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3629
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3630
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3631
	&& (__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
  3632
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3633
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3634
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3635
	unsigned INT value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3636
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3637
	    unsigned char buffer[4];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3638
	    unsigned int intVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3639
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3640
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3641
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3642
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3643
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3644
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3645
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3646
	__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
  3647
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3648
	if (ret == 4) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3649
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3650
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3651
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3652
		__INST(position) = __MKSMALLINT(__intVal(pos) + 4);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3653
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3654
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3655
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3656
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3657
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3658
		value = u.buffer[0];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3659
		value = (value << 8) | u.buffer[1];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3660
		value = (value << 8) | u.buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3661
		value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3662
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3663
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3664
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3665
		value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3666
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3667
		value = u.buffer[3];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3668
		value = (value << 8) | u.buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3669
		value = (value << 8) | u.buffer[1];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3670
		value = (value << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3671
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3672
	    }
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3673
#ifdef alpha64
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3674
	    value &= 0xFFFFFFFF;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3675
	    RETURN (__MKSMALLINT(value));
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3676
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3677
	    if (value <= _MAX_INT) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3678
		RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3679
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3680
	    RETURN (__MKULARGEINT(value) );
3456
0cdf451360b9 oops - nextUnsignedLong:MSB: on alpha.
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3681
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3682
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3683
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3684
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3685
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3686
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3687
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3688
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3689
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3690
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3691
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3692
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3693
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3694
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3695
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3696
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3697
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3698
nextUnsignedShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3699
    "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
  3700
     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
  3701
     otherwise least-significant byte comes first.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3702
     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
  3703
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3704
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3705
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3706
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3707
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3708
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3709
    if (((fp = __INST(filePointer)) != nil)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3710
	&& (__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
  3711
    ) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3712
	FILEPOINTER f;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3713
	int ret, _buffered;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3714
	unsigned int value;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3715
	union {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3716
	    unsigned char buffer[2];
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3717
	    unsigned short shortVal;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3718
	} u;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3719
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3720
	f = __FILEVal(fp);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3721
	_buffered = (__INST(buffered) == true);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3722
	if (_buffered) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3723
	    __READING__(f)
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3724
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3725
	__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
  3726
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3727
	if (ret == 2) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3728
	    OBJ pos;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3729
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3730
	    if ((pos = __INST(position)) != nil) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3731
		__INST(position) = __MKSMALLINT(__intVal(pos) + 2);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3732
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3733
	    if (msbFlag == true) {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3734
#if defined(__MSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3735
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3736
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3737
		value = (u.buffer[0] << 8) | u.buffer[1];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3738
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3739
	    } else {
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3740
#if defined(__LSBFIRST)
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3741
		value = u.shortVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3742
#else
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3743
		value = (u.buffer[1] << 8) | u.buffer[0];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3744
#endif
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3745
	    }
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3746
	    RETURN (__MKSMALLINT(value));
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3747
	}
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3748
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3749
	if (ret < 0) {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3750
	    __INST(position) = nil;
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3751
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3752
	} else /* ret == 0 */ {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3753
	    __INST(hitEOF) = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3754
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3755
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3756
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  3757
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3758
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3759
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3760
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3761
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3762
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3763
nextWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3764
    "in text-mode:
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3765
	 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
  3766
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3767
     in binary-mode:
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3768
	 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
  3769
	 unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3770
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3771
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3772
	^ self nextUnsignedShortMSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3773
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3774
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3775
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3776
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3777
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3778
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3779
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3780
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3781
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3782
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3783
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3784
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3785
    char c;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3786
    OBJ pos, fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3787
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3788
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3789
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3790
    if (((fp = __INST(filePointer)) != nil)
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3791
        && (__INST(mode) != @symbol(readonly))
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3792
        && __isSmallInteger(aByteValue)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3793
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3794
    ) {
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3795
        c = __intVal(aByteValue);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3796
        f = __FILEVal(fp);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3797
        if (_buffered = (__INST(buffered) == true)) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3798
            __WRITING__(f)
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3799
        } 
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3800
        __WRITEBYTE__(cnt, f, &c, _buffered);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3801
        if (cnt == 1) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3802
            pos = __INST(position);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3803
            if (pos != nil)
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3804
                __INST(position) = __MKSMALLINT(__intVal(pos) + 1);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3805
            RETURN (self);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3806
        }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3807
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3808
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3809
%}.
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3810
    filePointer isNil ifTrue:[^ self errorNotOpen.].
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3811
    (mode == #readonly) ifTrue:[^ self errorReadOnly.].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3812
    self writeError.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3813
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3814
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3815
nextPutBytes:count from:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3816
    "write count bytes from an object starting at index start.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3817
     return the number of bytes written - which could be 0.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3818
     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
  3819
     (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
  3820
     or an externalBytes object (with known size).
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3821
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3822
     Use with care - non object oriented i/o.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3823
     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
  3824
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3825
     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
  3826
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3827
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3828
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3829
    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
  3830
    int objSize, nInstVars, nInstBytes, _buffered;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3831
    char *extPtr;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3832
    OBJ oClass, pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3833
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3834
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3835
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3836
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3837
	&& __bothSmallInteger(count, start)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3838
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3839
	len = __intVal(count);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3840
	offs = __intVal(start) - 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3841
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3842
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3843
	oClass = __Class(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3844
	if (oClass == ExternalBytes) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3845
	    OBJ sz;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3846
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3847
	    nInstBytes = 0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3848
	    extPtr = (char *)__externalBytesAddress(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3849
	    sz = __externalBytesSize(anObject);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3850
	    if (__isSmallInteger(sz)) {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3851
		objSize = __intVal(sz);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3852
	    } else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3853
		objSize = 0; /* unknown */
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3854
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3855
	} else {
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3856
	    switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3857
		case BYTEARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3858
		case WORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3859
		case LONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3860
		case SWORDARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3861
		case SLONGARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3862
		case FLOATARRAY:
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3863
		case DOUBLEARRAY:
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3864
		    break;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3865
		default:
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3866
		    goto bad;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3867
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3868
	    extPtr = (char *)0;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3869
	    nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3870
	    nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3871
	    objSize = __Size(anObject) - nInstBytes;
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3872
	}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3873
	if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3874
	    if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3875
		__WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3876
	    }
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3877
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3878
	    if (extPtr) {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3879
		__WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered); 
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3880
	    } else {
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3881
		/*
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3882
		 * on interrupt, anObject may be moved to another location.
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3883
		 * 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
  3884
		 */
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3885
		offs += nInstBytes;
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3886
		__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
  3887
	    }
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3888
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3889
	    if (cnt >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3890
		pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3891
		if (pos != nil)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3892
		    __INST(position) = __MKSMALLINT(__intVal(pos) + cnt);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3893
		RETURN ( __MKSMALLINT(cnt) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3894
	    }
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  3895
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  3896
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3897
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3898
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3899
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3900
    lastErrorNumber notNil ifTrue:[^ self writeError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3901
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3902
    (mode == #readonly) ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3903
    ^ self primitiveFailed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3904
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3905
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3906
nextPutLong:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3907
    "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
  3908
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3909
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3910
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3911
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3912
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3913
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3914
    union {
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3915
        char bytes[4];
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3916
        int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3917
    } u;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3918
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3919
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3920
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3921
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3922
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3923
    if (__isSmallInteger(aNumber)) {
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3924
        num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3925
    } else {
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3926
#ifdef alpha64
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3927
        goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3928
#else
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3929
        num = __longIntVal(aNumber);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3930
        if (num == 0) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3931
            num = __signedLongIntVal(aNumber);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3932
            if (num == 0) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3933
                /* bad arg or out-of-range integer  
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3934
                 * (handled by the fallBack code)
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3935
                 */
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3936
                goto badArg;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3937
            }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3938
        }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3939
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3940
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3941
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3942
    if (((fp = __INST(filePointer)) != nil)
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3943
     && (__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
  3944
    ) {
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3945
        if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3946
#if defined(__MSBFIRST)
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3947
            u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3948
#else
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3949
            u.bytes[0] = (num >> 24) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3950
            u.bytes[1] = (num >> 16) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3951
            u.bytes[2] = (num >> 8) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3952
            u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3953
#endif
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3954
        } else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3955
#if defined(__LSBFIRST)
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3956
            u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3957
#else
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3958
            u.bytes[3] = (num >> 24) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3959
            u.bytes[2] = (num >> 16) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3960
            u.bytes[1] = (num >> 8) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3961
            u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3962
#endif
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3963
        }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3964
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3965
        f = __FILEVal(fp);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3966
        if (_buffered = (__INST(buffered) == true)) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3967
            __WRITING__(f)
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3968
        } 
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3969
        __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3970
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3971
        if (cnt == 4) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3972
            OBJ pos;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3973
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3974
            if ((pos = __INST(position)) != nil) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3975
                __INST(position) = __MKSMALLINT(__intVal(pos) + 4);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3976
            }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3977
            RETURN ( self );
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3978
        }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3979
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3980
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  3981
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3982
%}.
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3983
    filePointer isNil ifTrue:[^ self errorNotOpen.].
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3984
    (mode == #readonly) ifTrue:[^ self errorReadOnly.].
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3985
    lastErrorNumber notNil ifTrue:[^ self writeError.].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3986
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3987
    aNumber isInteger ifTrue:[
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  3988
        ^ super nextPutLong:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3989
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3990
    self argumentMustBeInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3991
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3992
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3993
nextPutShort:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3994
    "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
  3995
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3996
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3997
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3998
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3999
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4000
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4001
    union {
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4002
        char bytes[2];
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4003
        short shortVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4004
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4005
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4006
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4007
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4008
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4009
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4010
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4011
    if (((fp = __INST(filePointer)) != nil)
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4012
        && (__INST(mode) != @symbol(readonly))
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4013
        && __isSmallInteger(aNumber)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4014
    ) {
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4015
        num = __intVal(aNumber);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4016
        if (msbFlag == true) {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4017
#if defined(__MSBFIRST)
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4018
            u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4019
#else
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4020
            u.bytes[0] = (num >> 8) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4021
            u.bytes[1] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4022
#endif
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4023
        } else {
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4024
#if defined(__LSBFIRST)
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4025
            u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4026
#else
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4027
            u.bytes[1] = (num >> 8) & 0xFF;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4028
            u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4029
#endif
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4030
        }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4031
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4032
        f = __FILEVal(fp);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4033
        if (_buffered = (__INST(buffered) == true)) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4034
            __WRITING__(f)
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4035
        } 
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4036
        __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4037
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4038
        if (cnt == 2) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4039
            OBJ pos;
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4040
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4041
            if ((pos = __INST(position)) != nil) {
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4042
                __INST(position) = __MKSMALLINT(__intVal(pos) + 2);
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4043
            }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4044
            RETURN ( self );
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4045
        }
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4046
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4047
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4048
%}.
5961
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4049
    lastErrorNumber notNil ifTrue:[^ self writeError.].
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4050
    filePointer isNil ifTrue:[^ self errorNotOpen.].
5a6780b2afab statements after return
Claus Gittinger <cg@exept.de>
parents: 5852
diff changeset
  4051
    (mode == #readonly) ifTrue:[^ self errorReadOnly.].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4052
    self argumentMustBeInteger
10
claus
parents: 5
diff changeset
  4053
! !
612
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
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4056
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4057
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4058
    hitEOF := false
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
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4061
connectTo:aFileDescriptor withMode:openmode
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4062
    "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
  4063
     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
  4064
     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
  4065
     a Stream object. 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4066
     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
  4067
     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
  4068
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4069
    |retVal|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4070
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  4071
    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
  4072
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4073
    FILEPOINTER f;
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4074
    OBJ fp;
2765
a56668774ad7 more alpha64 fixes
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  4075
    FILE *fdopen();
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4076
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4077
    if (__isSmallInteger(aFileDescriptor) 
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4078
     && (__qClass(openmode)== @global(String))) {
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4079
	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
  4080
	if (f == NULL) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4081
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4082
	    __INST(position) = nil;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4083
	} else {
6487
78c18e4cb6ff @global stuff for classvars
Stefan Vogel <sv@exept.de>
parents: 6474
diff changeset
  4084
	    if (@global(FileOpenTrace) == true) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4085
		fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", __intVal(aFileDescriptor), f);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4086
	    }
5203
a1a9869b2d24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5202
diff changeset
  4087
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4088
	    __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
  4089
	    __INST(position) = __MKSMALLINT(1);
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4090
	    retVal = self;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4091
	}
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4092
    }
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4093
%}.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4094
    retVal notNil ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4095
	buffered := true.       "default is buffered"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4096
	Lobby register:self
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4097
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4098
    lastErrorNumber notNil ifTrue:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4099
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4100
	 the open failed for some reason ...
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4101
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4102
	^ self openError
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4103
    ].
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4104
    ^ retVal
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4105
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4106
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4107
open:aPath withMode:mode
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4108
    "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
  4109
     variable. Careful: this does not care for any other state."
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4110
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4111
    |ok|
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4112
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4113
    ok := false.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4114
%{
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4115
    FILE *f; 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4116
    OBJ fp;
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4117
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4118
    if (__isString(aPath)) { 
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4119
#ifdef WIN32
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  4120
	__BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4121
	f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4122
	__END_INTERRUPTABLE__
5623
ce4c02168253 removed fopen workaround (now have a better malloc)
Claus Gittinger <cg@exept.de>
parents: 5620
diff changeset
  4123
#else /* UNIX */
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4124
	__BEGIN_INTERRUPTABLE__
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4125
	do {
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4126
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(mode));
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4127
	} while ((f == NULL) && (__threadErrno == EINTR));
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4128
	__END_INTERRUPTABLE__
5623
ce4c02168253 removed fopen workaround (now have a better malloc)
Claus Gittinger <cg@exept.de>
parents: 5620
diff changeset
  4129
#endif /* UNIX */
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4130
	if (f == NULL) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4131
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4132
	} else {
6487
78c18e4cb6ff @global stuff for classvars
Stefan Vogel <sv@exept.de>
parents: 6474
diff changeset
  4133
	    if (@global(FileOpenTrace) == true) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4134
		fprintf(stderr, "fopen %s [ExternalStream] -> %x\n", __stringVal(aPath), f);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4135
	    }
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4136
	    __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
  4137
	    ok = true;
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4138
	}
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4139
    }
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4140
%}.
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4141
    ok ifFalse:[
4597
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4142
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4143
	 the open failed for some reason ...
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4144
	"
9628a80e23ec only raise LineTooLongError if handled; otherwise silently continue
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  4145
	^ self openError
4456
914ce6ac4052 initialize position
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
  4146
    ].
914ce6ac4052 initialize position
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
  4147
    position := 1.
2963
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4148
    Lobby register:self. 
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4149
!
17bd9be72f9b lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  4150
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4151
reOpen
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4152
    "sent after snapin to reopen streams.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4153
     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
  4154
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4155
    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
  4156
    filePointer := nil.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4157
    Lobby unregister:self.
2134
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4158
246a3bdab8b4 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
  4159
    "Modified: 10.1.1997 / 17:50:44 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4160
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4161
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4162
setLastError:aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4163
    lastErrorNumber := aNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4164
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4165
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4166
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4167
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4168
isBinary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4169
    "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
  4170
     The default when created is false."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4171
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4172
    ^ binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4173
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4174
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4175
isExternalStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4176
    "return true, if the receiver is some kind of externalStream;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4177
     true is returned here - the method redefined from Object."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4178
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4179
    ^ true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4180
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4181
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4182
isOpen 
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4183
    "return true, if this stream is open"
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4184
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4185
    ^ filePointer notNil
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4186
!
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4187
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4188
isReadable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4189
    "return true, if this stream can be read from"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4190
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4191
    ^ (mode ~~ #writeonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4192
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4193
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4194
isWritable 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4195
    "return true, if this stream can be written to"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4196
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4197
    ^ (mode ~~ #readonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4198
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4199
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4200
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4201
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4202
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4203
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4204
     In binary mode, an integer is returned, otherwise a character.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4205
     If there are no more elements, nil is returned."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4206
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4207
    |c|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4208
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4209
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4210
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4211
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4212
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4213
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4214
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4215
    if (((fp = __INST(filePointer)) != nil)
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4216
	&& (__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
  4217
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4218
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4219
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4220
	_buffered = (__INST(buffered) == true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4221
	if (_buffered) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4222
	    __READING__(f)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4223
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4224
	__READBYTE__(ret, f, &ch, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4225
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4226
	if (ret > 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4227
	    pos = __INST(position);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4228
	    if (__isSmallInteger(pos)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4229
		__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4230
	    } else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4231
		__INST(position) = nil;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4232
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4233
	    if (__INST(binary) == true) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4234
		RETURN ( __MKSMALLINT(ch) );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4235
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4236
	    RETURN ( __MKCHARACTER(ch) );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4237
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4238
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4239
	__INST(position) = nil;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4240
	if (ret < 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4241
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4242
	} else /* ret == 0 */ {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4243
	    __INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4244
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4245
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4246
%}.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4247
    hitEOF == true ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4248
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4249
    filePointer isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4250
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4251
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4252
    readAhead notNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4253
	c := readAhead.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4254
	readAhead := nil.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4255
	^ c.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4256
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4257
    c := self nextByteFromFile:filePointer.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4258
    c isNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4259
	^ self pastEnd.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4260
    ].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4261
    binary == true ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4262
	^ c
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4263
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4264
    ^ Character value:c
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4265
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4266
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4267
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4268
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4269
     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
  4270
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4271
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4272
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4273
    binary ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4274
	coll := ByteArray uninitializedNew:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4275
    ] ifFalse:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4276
	coll := String new:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4277
    ].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4278
    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
  4279
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4280
    "/ for readStream protocol compatibility, 
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4281
    "/ we must raise an exception here.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4282
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4283
    nRead < count ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4284
	^ self pastEnd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4285
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4286
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4287
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4288
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4289
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4290
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4291
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4292
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4293
     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
  4294
     If there are no more elements, nil is returned."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4295
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4296
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4297
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4298
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4299
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4300
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4301
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4302
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4303
    if ((ra = __INST(readAhead)) != nil) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4304
	if (__INST(binary) == true) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4305
	    RETURN ( ra );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4306
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4307
	c = __intVal(ra);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4308
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4309
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4310
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4311
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4312
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4313
    if (((fp = __INST(filePointer)) != nil)
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4314
	&& (__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
  4315
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4316
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4317
	_buffered = (__INST(buffered) == true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4318
	if (_buffered) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4319
	    __READING__(f)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4320
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4321
	__READBYTE__(ret, f, &c, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4322
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4323
	if (ret > 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4324
	    __UNGETC__(c, f, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4325
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4326
	    if (__INST(binary) == true) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4327
		RETURN ( __MKSMALLINT(c) );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4328
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4329
	    RETURN ( __MKCHARACTER(c) );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4330
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4331
	if (ret < 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4332
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4333
	} else /* ret == 0 */ {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4334
	    __INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4335
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4336
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4337
%}.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4338
    hitEOF == true ifTrue:[^ self pastEnd]. 
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4339
    lastErrorNumber notNil ifTrue:[^ self readError].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4340
    filePointer isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4341
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4342
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4343
    readAhead notNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4344
	^ readAhead
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4345
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4346
    self atEnd ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4347
	^ self pastEnd
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4348
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4349
    readAhead := self next.
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4350
    ^ readAhead
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4351
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4352
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4353
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4354
    "return a collection of the elements up-to the end.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4355
     Return nil if the stream-end is reached before."
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4356
6569
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4357
    |answerStream buffer count|
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4358
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4359
    buffer := self contentsSpecies new:4096.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4360
    [self atEnd] whileFalse:[
6569
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4361
        count := self nextAvailableBytes:4096 into:buffer startingAt:1.
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4362
        count ~~ 0 ifTrue:[
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4363
            answerStream isNil ifTrue:[
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4364
                answerStream := WriteStream with:buffer.
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4365
                answerStream position:count+1.
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4366
                buffer := self contentsSpecies new:4096.
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4367
            ] ifFalse:[
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4368
                answerStream nextPutAll:buffer startingAt:1 to:count.
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4369
            ].
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4370
        ].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4371
    ].
6758
bc933037a1dc oops - upToEnd failed if already at the end
Claus Gittinger <cg@exept.de>
parents: 6661
diff changeset
  4372
    answerStream isNil ifTrue:[^ self contentsSpecies new].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4373
    ^ answerStream contents
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4374
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4375
    "Created: 25.4.1996 / 14:40:31 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4376
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4377
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4378
!ExternalStream methodsFor:'reimplemented for speed'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4379
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4380
nextAlphaNumericWord
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4381
    "read the next word (i.e. up to non letter-or-digit) after first
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4382
     skipping any whiteSpace.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4383
     Return a string containing those characters.
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4384
     There is a limit of 1023 characters in the word - if longer,
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4385
     it is truncated."
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4386
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4387
%{  /* STACK: 2000 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4388
    FILEPOINTER f;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4389
    int len;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4390
    char buffer[1024];
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4391
    unsigned char ch;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4392
    int cnt = 0;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4393
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4394
    OBJ fp;
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4395
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4396
    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
  4397
     && (__INST(mode) != @symbol(writeonly))
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4398
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4399
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4400
	_buffered = (__INST(buffered) == true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4401
	if (_buffered) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4402
	    __READING__(f)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4403
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4404
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4405
	/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4406
	 * skip whiteSpace first ...
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4407
	 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4408
	do {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4409
	    __READBYTE__(ret, f, &ch, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4410
	    if (ret > 0)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4411
		cnt++;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4412
	    else
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4413
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4414
	} while (
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4415
#ifndef NON_ASCII
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4416
		 (ch < ' ') ||
379
5b5a130ccd09 revision added
claus
parents: 372
diff changeset
  4417
#endif
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4418
		 (ch == ' ' ) || (ch == '\t') || (ch == '\r')
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4419
	      || (ch == '\n') || (ch == 0x0b));
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4420
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4421
	len = 0;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4422
	while (ret > 0 && 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4423
	       (((ch >= 'a') && (ch <= 'z')) ||
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4424
		((ch >= 'A') && (ch <= 'Z')) ||
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4425
		((ch >= '0') && (ch <= '9')))
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4426
	) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4427
	    buffer[len++] = ch;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4428
	    if (len >= (sizeof(buffer)-1)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4429
		/* emergency */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4430
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4431
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4432
	    __READBYTE__(ret, f, &ch, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4433
	    if (ret > 0)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4434
		cnt++;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4435
	    else
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4436
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4437
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4438
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4439
	if (ret <= 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4440
	    if (ret < 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4441
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4442
		goto err;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4443
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4444
	    else if (ret == 0)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4445
		__INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4446
	} else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4447
	    __UNGETC__(ch, f, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4448
	    cnt--;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4449
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4450
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4451
	if (__INST(position) != nil) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4452
	    __INST(position) = __MKSMALLINT(__intVal(__INST(position)) + cnt);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4453
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4454
	if (len != 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4455
	    buffer[len] = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4456
	    RETURN ( __MKSTRING_L(buffer, len) );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4457
	}
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4458
    }
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4459
err: ;
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4460
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4461
    hitEOF ifTrue:[^ self pastEnd].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4462
    lastErrorNumber notNil ifTrue:[^ self readError].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4463
    filePointer isNil ifTrue:[^ self errorNotOpen].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  4464
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  4465
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  4466
    ^ super nextAlphaNumericWord
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  4467
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4468
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4469
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4470
nextChunk
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4471
    "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
  4472
     exclamation mark. Within the chunk, exclamation marks have to be doubled -
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4473
     except within primitive code (this exception was added to make it easier
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4474
     to edit primitive code with external editors). This means, that other
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4475
     Smalltalks cannot always read chunks containing primitive code - but that
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4476
     doesnt really matter, since C-primitives are an ST/X feature anyway.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4477
     Reimplemented here for more speed."
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4478
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4479
    |retVal outOfMemory buffer|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4480
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4481
    filePointer isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4482
    binary == true ifTrue:[^ self errorBinary].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4483
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4484
2854
3c8bf66e4e7d give nextChunk a bit more stack
Claus Gittinger <cg@exept.de>
parents: 2766
diff changeset
  4485
%{  /* 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
  4486
    /*
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4487
     * 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
  4488
     * 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
  4489
     * 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
  4490
     * 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
  4491
     */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4492
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4493
    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
  4494
    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
  4495
    int ret;
1823
51ffb7231437 type casts
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4496
    unsigned char *bufferPtr = (unsigned char *)0;
2874
020627074c9e oops - nextChunk could access invalid memory due
Claus Gittinger <cg@exept.de>
parents: 2861
diff changeset
  4497
    unsigned char fastBuffer[8000];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4498
    REGISTER int index;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4499
    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
  4500
    int atBeginOfLine = 1, inPrimitive = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4501
    int haveCR = 0, haveNL = 0;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4502
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4503
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4504
    f = __FILEVal(__INST(filePointer));
668
73165201a9da nextChunk: %{ is only recognized if at begin-of-line
Claus Gittinger <cg@exept.de>
parents: 665
diff changeset
  4505
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4506
    _buffered = (__INST(buffered) == true);
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4507
    if (_buffered) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4508
	__READING__(f)
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4509
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4510
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4511
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4512
     * skip spaces
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4513
     */
673
2c3a4a536cd1 oops - handling of exclas within primitives was wrong
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  4514
    c = '\n';
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4515
    while (! done) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4516
	lastC = c;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4517
	__READBYTE__(ret, f, &c, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4518
	if (ret <= 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4519
	    goto err;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4520
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4521
	nread++;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4522
	atBeginOfLine = 0;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4523
	switch (c) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4524
	    case '\n':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4525
	    case ' ':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4526
	    case '\t':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4527
	    case '\r':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4528
	    case '\b':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4529
	    case '\014':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4530
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4531
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4532
	    default:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4533
		atBeginOfLine = (lastC == '\n');
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4534
		done = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4535
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4536
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4537
    }
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4538
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4539
    /*
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4540
     * read chunk into a buffer
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4541
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4542
    bufferPtr = fastBuffer; fastFlag = 1;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4543
    currSize = sizeof(fastBuffer);
362
claus
parents: 360
diff changeset
  4544
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4545
    index = 0;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4546
    for (;;) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4547
	__READBYTE__(ret, f, &peekC, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4548
	if ((c == '%') && atBeginOfLine && ret > 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4549
	    if (peekC == '{') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4550
		inPrimitive = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4551
	    } else if (peekC == '}') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4552
		inPrimitive = 0;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4553
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4554
	} else if (c == '!' && !inPrimitive) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4555
	    if (ret > 0 && peekC == '!') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4556
		/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4557
		 * convert double-! to a single !
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4558
		 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4559
		__READBYTE__(ret, f, &peekC, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4560
		if (ret > 0)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4561
		    nread++;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4562
	    } else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4563
		/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4564
		 * End of chunk, push back lookahead character
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4565
		 * and leave loop.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4566
		 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4567
		if (ret > 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4568
		    __UNGETC__(peekC, f, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4569
		} else
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4570
		    ret = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4571
		break; 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4572
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4573
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4574
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4575
	/* 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4576
	 * do we have to resize the buffer ? 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4577
	 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4578
	if ((index+2) >= currSize) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4579
	    OBJ newBuffer;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4580
	    unsigned char *nbp;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4581
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4582
	    newBuffer = __MKEMPTYSTRING(currSize * 2);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4583
	    if (!fastFlag) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4584
		/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4585
		 * refetch - buffer could be moved by GC
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4586
		 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4587
		bufferPtr = __stringVal(buffer);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4588
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4589
	    if (newBuffer == nil) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4590
		/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4591
		 * mhmh - chunk seems to be very big ....
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4592
		 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4593
		outOfMemory = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4594
		goto err;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4595
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4596
	    nbp = __stringVal(newBuffer);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4597
	    bcopy(bufferPtr, nbp, index);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4598
	    bufferPtr = nbp;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4599
	    bufferPtr[index] = '\0';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4600
	    buffer = newBuffer;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4601
	    fastFlag = 0;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4602
	    currSize = currSize * 2;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4603
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4604
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4605
	if (!fastFlag) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4606
	    /*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4607
	     * old buffer may have moved (interrupt while reading)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4608
	     * - refetch pointer
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4609
	     */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4610
	    bufferPtr = __stringVal(buffer);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4611
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4612
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4613
	/*
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4614
	 * filter out cr-nl; make it nl
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4615
	 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4616
	if (c == '\n') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4617
	    haveNL = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4618
	    if (index > 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4619
		if (bufferPtr[index-1] == '\r') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4620
		    index--;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4621
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4622
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4623
	} else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4624
	    if (c == '\r') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4625
		haveCR = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4626
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4627
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4628
	bufferPtr[index++] = c;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4629
	if (ret <= 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4630
	    if (ret == 0)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4631
		break;          /* End of chunk reached */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4632
	    goto err;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4633
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4634
	nread++;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4635
	atBeginOfLine = (c == '\n');
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4636
	c = peekC;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4637
    }
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4638
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4639
    /*
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4640
     * care for CR-limited files.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4641
     * Replace CR's by NL's
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4642
     */
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4643
    if (!haveNL && haveCR) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4644
	int i;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4645
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4646
	for (i=index-1; i>=0; i--) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4647
	    if (bufferPtr[i] == '\r') {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4648
		bufferPtr[i] = '\n';
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4649
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4650
	}
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4651
    }
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4652
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  4653
    /*
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4654
     * 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
  4655
     * 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
  4656
     * 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
  4657
     * fast (C) buffer or from real (ST) buffer.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4658
     */
665
429936f8e6e7 fixed nextChunk; it was not reentrant due to freeing of the static
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
  4659
    if (fastFlag) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4660
	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
  4661
    } else {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4662
	retVal = __MKSTRING_ST_L(buffer, index);
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4663
    }
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4664
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  4665
err: ;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4666
    if (ret <= 0) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4667
	if (ret == 0)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4668
	    __INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4669
	else /* ret < 0 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4670
	    __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
  4671
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4672
    if (__INST(position) != nil) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4673
	__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
  4674
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4675
%}.
370
claus
parents: 369
diff changeset
  4676
    retVal isNil ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4677
	"/
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4678
	"/ arrive here with retVal==nil either on error or premature EOF
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4679
	"/ or if running out of malloc-memory
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4680
	"/
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4681
	hitEOF == true ifTrue:[^ self pastEnd].
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4682
	lastErrorNumber notNil ifTrue:[^ self readError].
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4683
	outOfMemory == true ifTrue:[
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4684
	    "
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4685
	     buffer memory allocation failed.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4686
	     When we arrive here, there was no memory available for the
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4687
	     chunk. (seems to be too big of a chunk ...)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4688
	     Bad luck - you should increase the ulimit and/or swap space on your machine.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4689
	    "
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4690
	    ^ ObjectMemory allocationFailureSignal raise.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4691
	].
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4692
	^ super nextChunk
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4693
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4694
    ^ retVal
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4695
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4696
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4697
nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4698
    "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
  4699
     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
  4700
     the element after anObject.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4701
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4702
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4703
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4704
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4705
    int ret, peekValue;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4706
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4707
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4708
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4709
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4710
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4711
	&& (__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
  4712
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4713
	if ((__INST(binary) == true) && __isSmallInteger(anObject)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4714
	    peekValue = __intVal(anObject) & 0xFF;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4715
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4716
	    if ((__INST(binary) != true) && __isCharacter(anObject)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4717
		peekValue = __intVal(_characterVal(anObject)) & 0xFF;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4718
	    } else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4719
		peekValue = -1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4720
	    }   
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4721
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4722
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4723
	if (peekValue >= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4724
	    int _buffered;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4725
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4726
	    __INST(position) = nil;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4727
	    f = __FILEVal(fp);
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
	    if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4730
		__READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4731
	    }
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
	    for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4734
		__READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4735
		if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4736
		    if (ret < 0)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4737
			__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4738
		    else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4739
			__INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4740
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4741
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4742
		if (c == peekValue) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4743
		    RETURN (anObject);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4744
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4745
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4746
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4747
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4748
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4749
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4750
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4751
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4752
    ^ super nextMatchFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4753
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4754
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4755
peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4756
    "return true and move past next element, if next == something.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4757
     Otherwise, stay and return false. False is also returned
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4758
     when EOF is encountered.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4759
     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
  4760
     text mode; only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4761
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4762
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4763
    FILEPOINTER f;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4764
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4765
    int ret, peekValue, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4766
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4767
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4768
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4769
    if (((fp = __INST(filePointer)) != nil)
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4770
	&& (__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
  4771
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4772
	if (__INST(binary) == true) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4773
	    if (__isSmallInteger(anObject)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4774
		peekValue = __intVal(anObject) & 0xFF;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4775
	    } else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4776
		goto bad;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4777
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4778
	} else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4779
	    if (__isCharacter(anObject)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4780
		peekValue = __intVal(_characterVal(anObject)) & 0xFF;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4781
	    } else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4782
		goto bad;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4783
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4784
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4785
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4786
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4787
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4788
	_buffered = (__INST(buffered) == true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4789
	if (_buffered) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4790
	    __READING__(f)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4791
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4792
	__READBYTE__(ret, f, &c, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4793
	if (ret > 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4794
	    if (c == peekValue) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4795
		OBJ pos;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4796
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4797
		if ((pos = __INST(position)) != nil) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4798
		    __INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4799
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4800
		RETURN (true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4801
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4802
	    __UNGETC__(c, f, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4803
	    RETURN (false);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4804
	} 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4805
	if (ret < 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4806
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4807
	} else /* ret == 0 */
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4808
	    __INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4809
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4810
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4811
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4812
    ^ super peekFor:anObject
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4813
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4814
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4815
skipLine
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4816
    "read the next line (characters up to newline) skip only;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4817
     return nil if EOF reached, self otherwise. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4818
     Not allowed in binary mode."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4819
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4820
%{  /* STACK:2000 */
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4821
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4822
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4823
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4824
    int ret, _buffered;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4825
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4826
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4827
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4828
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4829
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4830
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4831
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4832
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4833
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4834
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4835
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4836
	for (;;) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4837
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4838
	    if (ret > 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4839
		if (c == '\n')
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4840
		    RETURN(self) 
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4841
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4842
		break;
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
	if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4845
	    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4846
	} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4847
	    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4848
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4849
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4850
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4851
    hitEOF ifTrue:[^ self pastEnd].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4852
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4853
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4854
    binary ifTrue:[self errorBinary. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  4855
    self errorWriteOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4856
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4857
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4858
skipSeparators
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4859
    "skip all whitespace; next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4860
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4861
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4862
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4863
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4864
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4865
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4866
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4867
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4868
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4869
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4870
    if (((fp = __INST(filePointer)) != nil)
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4871
	&& (__INST(mode) != @symbol(writeonly))
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4872
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4873
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4874
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4875
	_buffered = (__INST(buffered) == true);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4876
	if (_buffered) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4877
	    __READING__(f)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4878
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4879
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4880
	while (1) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4881
	    __READBYTE__(ret, f, &c, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4882
	    if (ret <= 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4883
		if (ret < 0) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4884
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4885
		} else /* ret == 0 */ {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4886
		    __INST(hitEOF) = true;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4887
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4888
		break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4889
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4890
	    switch (c) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4891
		case ' ':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4892
		case '\t':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4893
		case '\n':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4894
		case '\r':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4895
		case '\b':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4896
		case '\f':
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4897
		    break;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4898
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4899
		default:
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4900
		    __UNGETC__(c, f, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4901
		    RETURN ( __MKCHARACTER(c & 0xFF) );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4902
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  4903
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4904
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4905
%}.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4906
    hitEOF == true ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4907
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4908
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4909
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4910
    (binary == true) ifTrue:[^ self errorBinary].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4911
    ^ super skipSeparators.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4912
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4913
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4914
skipSeparatorsExceptCR
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4915
    "skip all whitespace but no newlines;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4916
     next will return next non-white-space character
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4917
     or nil if endOfFile reached. Not allowed in binary mode.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4918
     - reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4919
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4920
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4921
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4922
    char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4923
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4924
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4925
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4926
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4927
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4928
	&& (__INST(mode) != @symbol(writeonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4929
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4930
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4931
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4932
	_buffered = (__INST(buffered) == true);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4933
	if (_buffered) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4934
	    __READING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4935
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4936
	while (1) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4937
	    __READBYTE__(ret, f, &c, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4938
	    if (ret <= 0) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4939
		if (ret < 0) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  4940
		    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4941
		} else /* ret == 0 */ {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4942
		    __INST(hitEOF) = true;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4943
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4944
		break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4945
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4946
	    switch (c) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4947
		case ' ':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4948
		case '\t':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4949
		case '\b':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4950
		case '\f':
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4951
		    break;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4952
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4953
		default:
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4954
		    __UNGETC__(c, f, _buffered);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4955
		    RETURN ( __MKCHARACTER(c & 0xFF) );
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4956
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  4957
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4958
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4959
%}.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1141
diff changeset
  4960
    hitEOF ifTrue:[^ self pastEnd].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4961
    lastErrorNumber notNil ifTrue:[^ self readError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4962
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4963
    (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
  4964
    ^ self errorBinary.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4965
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4966
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4967
skipThrough:aCharacter
6012
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4968
    "skip all characters up-to and including aCharacter. 
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4969
     Return the receiver if skip was successful, 
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4970
     otherwise (i.e. if not found) return nil and leave the stream positioned at the end.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4971
     The next read operation will return the character after aCharacter.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4972
     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
  4973
     Only single byte characters are currently supported."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4974
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4975
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4976
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4977
    REGISTER int cSearch;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4978
    unsigned char c;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4979
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4980
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4981
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4982
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4983
    if (((fp = __INST(filePointer)) != nil)
6012
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4984
        && (__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
  4985
    ) {
6012
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4986
        if (__INST(binary) == true) {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4987
            /* searched for object must be a smallInteger */
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4988
            if (! __isSmallInteger(aCharacter)) goto badArgument;
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4989
            cSearch = __intVal(aCharacter);
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4990
        } else {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4991
            /* searched for object must be a character */
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4992
            if (! __isCharacter(aCharacter)) goto badArgument;
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4993
            cSearch = __intVal(_characterVal(aCharacter));
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4994
        }
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4995
        /* Q: should we just say: "not found" ? */
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4996
        if ((cSearch < 0) || (cSearch > 255)) goto badArgument;
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4997
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4998
        f = __FILEVal(fp);
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  4999
        if (_buffered = (__INST(buffered) == true)) {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5000
            __READING__(f)
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5001
        }
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5002
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5003
        while (1) {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5004
            __READBYTE__(ret, f, &c, _buffered);
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5005
            if (ret <= 0) {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5006
                if (ret < 0) {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5007
                    __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5008
                } else /* ret == 0 */ {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5009
                    __INST(hitEOF) = true;
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5010
                }
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5011
                break;
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5012
            }
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5013
            if (c == cSearch) {
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5014
                RETURN (self);
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5015
            }
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5016
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5017
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5018
badArgument: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5019
%}.
6012
21eebe6e6997 fixed: return nil if skipThrough: hits EOF
Claus Gittinger <cg@exept.de>
parents: 5961
diff changeset
  5020
    hitEOF ifTrue:[^ nil].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5021
    lastErrorNumber notNil ifTrue:[self readError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5022
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5023
    (mode == #writeonly) ifTrue:[self errorWriteOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5024
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5025
     argument must be integer/character in binary mode, 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5026
     character in text mode
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5027
    "
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5028
    self error:'invalid argument'.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5029
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5030
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5031
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5032
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5033
     s skipThrough:$=.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5034
     s next:10
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5035
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5036
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5037
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5038
skipToAll:aString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5039
    "skip for the sequence given by the argument, aCollection;
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5040
     return nil if not found, self otherwise. 
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5041
     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
  5042
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5043
    |oldPos|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5044
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5045
    oldPos := self position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5046
    (self skipThroughAll:aString) isNil ifTrue:[
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5047
	"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5048
	 restore position
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5049
	"
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5050
	self position:oldPos.
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5051
	^ nil
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5052
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5053
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5054
     position before match-string
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5055
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5056
    self position:(self position - aString size).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5057
    ^ self
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5058
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5059
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5060
     |s|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5061
     s := 'Makefile' asFilename readStream.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5062
     s skipToAll:'are'.
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5063
     s next:10 
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5064
    "
1490
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5065
713852290c8b use skipThroughAll from superclass.
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  5066
    "Modified: 26.6.1996 / 09:22:05 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5067
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5068
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5069
!ExternalStream methodsFor:'rel5 protocol'!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5070
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5071
atEndFile:filePointer
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5072
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5073
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5074
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5075
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5076
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5077
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5078
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5079
nextByteFromFile:filePointer
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5080
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5081
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5082
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5083
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5084
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5085
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5086
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5087
nextPutByte:aByte toFile:filePointer
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5088
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5089
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5090
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5091
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5092
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5093
! !
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5094
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5095
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5096
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5097
atEnd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5098
    "return true, if position is at end"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5099
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5100
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5101
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5102
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5103
    char c;
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  5104
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5105
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5106
    if (__INST(hitEOF) == true) {
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5107
        RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5108
    }
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5109
    if (__bothSmallInteger(__INST(position), __INST(readLimit))) {
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5110
        if (__intVal(__INST(position)) > __intVal(__INST(readLimit))) {
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5111
            RETURN (true);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5112
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5113
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5114
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5115
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5116
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5117
    if ((fp = __INST(filePointer)) != nil) {
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5118
        f = __FILEVal(fp);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5119
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5120
        if (_buffered = (__INST(buffered) == true)) {
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5121
            __READING__(f);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5122
        } else {
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5123
            if (__INST(readAhead) != nil) {
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5124
                RETURN (false);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5125
            }
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5126
        }
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5127
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5128
        /*
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5129
         * read ahead ...
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5130
         */
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5131
        do {
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5132
            __BEGIN_INTERRUPTABLE__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5133
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5134
#ifdef WIN32
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5135
            __threadErrno = 0;
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  5136
#endif
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5137
            __READBYTE__(ret, f, &c, _buffered);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5138
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5139
            __END_INTERRUPTABLE__
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5140
        } 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
  5141
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5142
#if defined(WIN32) && defined(EPIPE)
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5143
        if ((ret < 0) && (__threadErrno == EPIPE)) {
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5144
            ret = 0;
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5145
            __threadErrno = 0;
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5146
        }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5147
#endif
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5148
        if (ret > 0) {
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5149
            __UNGETC__(c&0xff, f, _buffered);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5150
            RETURN (false);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5151
        }
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5152
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5153
        if (ret == 0) { 
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5154
            __INST(hitEOF) = true;
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5155
            RETURN (true);
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5156
        }
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5157
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5158
        /* ret < 0 */
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5159
        __INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5160
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5161
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5162
    lastErrorNumber notNil ifTrue:[^ self readError].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5163
    filePointer isNil ifTrue:[^ self errorNotOpen].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5164
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5165
    readAhead notNil ifTrue:[^ false].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5166
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5167
    "/ migration support
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5168
    ^ self 
5809
9d1d1bf71a1d Do not block on atEnd on Sockets ore Pipes
Stefan Vogel <sv@exept.de>
parents: 5623
diff changeset
  5169
        atEndFile:filePointer
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5170
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5171
    "Modified: / 30.10.1998 / 20:16:06 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5172
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5173
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5174
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5175
    "return true, if any data is available for reading (i.e.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5176
     a read operation will not block the smalltalk process), false otherwise."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5177
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5178
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5179
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5180
    readAhead notNil ifTrue:[^ true].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5181
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5182
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5183
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5184
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5185
    ^ OperatingSystem readCheck:fd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5186
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5187
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5188
     |pipe|
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
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5191
     pipe canReadWithoutBlocking ifTrue:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5192
	 Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5193
     ] ifFalse:[
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  5194
	 Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5195
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5196
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5197
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5198
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5199
    "Modified: 25.9.1997 / 13:08:45 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5200
!
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
canWriteWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5203
    "return true, if data can be written into the stream 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5204
     (i.e. a write operation will not block the smalltalk process)."
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|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5207
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5208
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5209
    mode == #readonly ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5210
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5211
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5212
    ^ OperatingSystem writeCheck:fd
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5213
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5214
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5215
nextError
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5216
    "return the error by trying to read something.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5217
     Should only be used, when we know, that a read operation
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5218
     will return an error (otherwise a character may be lost).
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5219
     Return an integer (error number), 0 (EOF) or nil (no error)"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5220
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5221
%{ /*NOCONTEXT*/                                  
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5222
    FILEPOINTER f;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5223
    int ret, _buffered;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5224
    OBJ fp;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5225
    unsigned char ch;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5226
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5227
    if (((fp = __INST(filePointer)) != nil)
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5228
        && (__INST(mode) != @symbol(writeonly))
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5229
    ) {
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5230
        f = __FILEVal(fp);
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5231
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5232
        _buffered = (__INST(buffered) == true);
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5233
        if (_buffered) {
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5234
            __READING__(f)
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5235
        }
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5236
        __READBYTE__(ret, f, &ch, _buffered);
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5237
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5238
        if (ret > 0) {
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5239
            RETURN(nil)
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5240
        }
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5241
        if (ret < 0) {
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5242
            RETURN(__MKSMALLINT(__threadErrno));
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5243
        } else /* ret == 0 */ {
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5244
            RETURN(__MKSMALLINT(0)); /* EOF */
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5245
        }
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5246
    }
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5247
%}.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5248
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5249
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5250
numAvailable
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5251
    "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
  5252
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5253
    |fd|
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5254
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5255
    filePointer isNil ifTrue:[^ self errorNotOpen].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5256
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5257
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5258
    fd := self fileDescriptor.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5259
    ^ OperatingSystem numAvailableForReadOn:fd.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5260
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5261
"/    self atEnd ifTrue:[^ 0].
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5262
"/    self canReadWithoutBlocking ifTrue:[
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5263
"/        ^ 1
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5264
"/    ].
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5265
"/    ^ 0
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5266
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5267
    "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
  5268
    "Modified: / 4.2.1998 / 17:31:11 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5269
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5270
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5271
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5272
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5273
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5274
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5275
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5276
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5277
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5278
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5279
readWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5280
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5281
     becomes ready for reading. If data is already available,
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5282
     return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5283
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5284
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5285
    self readWaitWithTimeoutMs:nil
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5286
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5287
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5288
readWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5289
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5290
    ^ self readWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5291
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5292
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5293
readWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5294
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5295
     becomes ready for reading or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5296
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5297
     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
  5298
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5299
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5300
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5301
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5302
    timeout notNil ifTrue:[
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5303
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5304
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5305
    ^ self readWaitWithTimeoutMs:ms
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5306
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5307
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5308
readWaitWithTimeoutMs:timeout 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5309
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5310
     becomes ready for reading or a timeout (in milliseconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5311
     If data is already available, return immediate. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5312
     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
  5313
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5314
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5315
    |fd inputSema hasData wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5316
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5317
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5318
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5319
    filePointer isNil ifTrue:[^ self errorNotOpen].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5320
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5321
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5322
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5323
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5324
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5325
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5326
    hasData := OperatingSystem readCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5327
    hasData ifFalse:[
6603
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5328
        inputSema := Semaphore new name:'readWait'.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5329
        [
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5330
            timeout notNil ifTrue:[
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5331
                Processor signal:inputSema afterMilliseconds:timeout 
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5332
            ].
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5333
            Processor signal:inputSema onInput:fd.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5334
            Processor activeProcess state:#ioWait.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5335
            inputSema wait.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5336
            Processor disableSemaphore:inputSema.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5337
            hasData := OperatingSystem readCheck:fd
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5338
        ] ifCurtailed:[
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5339
            Processor disableSemaphore:inputSema.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5340
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5341
        ]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5342
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5343
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5344
    ^ hasData not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5345
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5346
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5347
readWriteWait
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5348
    "suspend the current process, until the receiver
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5349
     becomes ready for writing or reading.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5350
     Return immediate if the receiver is already ready. 
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5351
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5352
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5353
    self readWriteWaitWithTimeoutMs:nil
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5354
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5355
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5356
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5357
    "suspend the current process, until the receiver
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5358
     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
  5359
     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
  5360
     Return immediate if the receiver is already ready. 
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5361
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5362
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5363
    |fd sema canReadWrite wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5364
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5365
    filePointer isNil ifTrue:[
6603
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5366
        ^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5367
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5368
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5369
    fd := self fileDescriptor.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5370
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5371
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5372
    wasBlocked := OperatingSystem blockInterrupts.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5373
    canReadWrite := OperatingSystem readWriteCheck:fd.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5374
    canReadWrite ifFalse:[
6603
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5375
        sema := Semaphore new name:'readWriteWait'.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5376
        [
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5377
            timeout notNil ifTrue:[
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5378
                Processor signal:sema afterMilliseconds:timeout
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5379
            ].
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5380
            Processor signal:sema onOutput:fd.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5381
            Processor signal:sema onInput:fd.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5382
            Processor activeProcess state:#ioWait.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5383
            sema wait.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5384
            Processor disableSemaphore:sema.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5385
            canReadWrite := OperatingSystem readWriteCheck:fd
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5386
        ] ifCurtailed:[
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5387
            Processor disableSemaphore:sema.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5388
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5389
        ]
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5390
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5391
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5392
    ^ canReadWrite not
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5393
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5394
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5395
writeWait
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5396
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5397
     becomes ready for writing.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5398
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5399
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5400
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5401
    self writeWaitWithTimeoutMs:nil
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5402
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5403
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5404
writeWaitTimeoutMs:timeout
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5405
    "ST-80 compatibility"
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5406
    ^ self writeWaitWithTimeoutMs:timeout 
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5407
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  5408
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5409
writeWaitWithTimeout:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5410
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5411
     becomes ready for writing or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5412
     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
  5413
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5414
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5415
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5416
    |ms|
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5417
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5418
    timeout notNil ifTrue:[
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5419
	ms := timeout * 1000
4640
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5420
    ].
034c028a5463 care for nil arg in readWaitWithTimeout / writeWaitWithTimeout
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
  5421
    ^ self writeWaitWithTimeoutMs:ms
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5422
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5423
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5424
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5425
    "suspend the current process, until the receiver
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5426
     becomes ready for writing or a timeout (in seconds) expired. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5427
     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
  5428
     Return immediate if the receiver is already ready. 
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5429
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5430
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5431
    |fd outputSema canWrite wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5432
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5433
    filePointer isNil ifTrue:[
6603
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5434
        ^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5435
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5436
    mode == #readonly ifTrue:[
6603
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5437
        ^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5438
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5439
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5440
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5441
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5442
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5443
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5444
    canWrite := OperatingSystem writeCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5445
    canWrite ifFalse:[
6603
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5446
        outputSema := Semaphore new name:'writeWait'.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5447
        [
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5448
            timeout notNil ifTrue:[
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5449
                Processor signal:outputSema afterMilliseconds:timeout
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5450
            ].
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5451
            Processor signal:outputSema onOutput:fd.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5452
            Processor activeProcess state:#ioWait.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5453
            outputSema wait.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5454
            Processor disableSemaphore:outputSema.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5455
            canWrite := OperatingSystem writeCheck:fd
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5456
        ] ifCurtailed:[
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5457
            Processor disableSemaphore:outputSema.
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5458
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
bf9b8a0d489b Use #ifCurtailed: instead of #valueOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6583
diff changeset
  5459
        ]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5460
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5461
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5462
    ^ canWrite not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5463
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5464
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5465
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5466
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5467
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5468
    "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
  5469
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5470
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5471
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5472
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5473
    int len, cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5474
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5475
    char *cp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5476
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5477
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5478
    if (((fp = __INST(filePointer)) != nil)
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5479
	&& (__INST(mode) != @symbol(readonly))
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5480
	&& (__INST(binary) != true)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5481
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5482
	f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5483
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5484
	if (_buffered = (__INST(buffered) == true)) { 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5485
	    __WRITING__(f)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5486
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5487
	{
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5488
	    OBJ mode = __INST(eolMode);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5489
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5490
	    if (mode == @symbol(cr)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5491
		cp = "\r"; len = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5492
	    } else if (mode == @symbol(crlf)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5493
		cp = "\r\n"; len = 2;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5494
	    } else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5495
		cp = "\n"; len = 1;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5496
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5497
	}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5498
#ifdef WIN32
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5499
	if ((f == stdout) || (f == stderr)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5500
	    cnt = fwrite(cp, 1, len, f);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5501
	} else 
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5502
#endif
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5503
	{
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5504
	    __WRITEBYTES__(cnt, f, cp, len, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5505
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5506
	if (cnt == len) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5507
	    if (__INST(position) != nil) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5508
		__INST(position) = __MKSMALLINT(__intVal(__INST(position)) + len);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5509
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5510
	    RETURN ( self );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5511
	}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5512
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5513
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5514
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5515
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5516
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5517
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5518
    (binary==true) ifTrue:[self errorBinary. ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5519
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5520
    (eolMode == #cr) ifTrue:[self nextPut:(Character return). ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5521
    (eolMode ~~ #crlf) ifTrue:[self nextPut:(Character nl). ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5522
    self nextPut:(Character return). 
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5523
    self nextPut:(Character nl). 
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5524
    ^ self
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5525
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5526
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5527
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5528
    "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
  5529
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5530
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5531
    OBJ fp;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5532
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5533
    __INST(lastErrorNumber) = nil;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5534
    if ((fp = __INST(filePointer)) != nil) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5535
	if (__INST(mode) != @symbol(readonly)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5536
	    if (__INST(buffered) == true) {
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5537
		FILEPOINTER f = __FILEVal(fp);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5538
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5539
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5540
		    fflush(f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5541
		} else 
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5542
#endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5543
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5544
		    __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5545
		    FFLUSH(f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5546
		    __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5547
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5548
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5549
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5550
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5551
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5552
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5553
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5554
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5555
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5556
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5557
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5558
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5559
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5560
    char c;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5561
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5562
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5563
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5564
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5565
    if (((fp = __INST(filePointer)) != nil) 
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5566
	&& (__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
  5567
    ) {
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5568
	if (__INST(binary) != true) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5569
	    if (__isCharacter(aCharacter)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5570
		c = __intVal(__characterVal(aCharacter)) & 0xFF;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5571
    doWrite:
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5572
		f = __FILEVal(fp);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5573
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5574
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5575
		if (_buffered = (__INST(buffered) == true)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5576
		    __WRITING__(f)
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5577
		}
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5578
#ifdef WIN32
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5579
		if ((f == stdout) || (f == stderr)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5580
		    cnt = fwrite(&c, 1, 1, f);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5581
		} else 
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5582
#endif
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5583
		{
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5584
		    __WRITEBYTE__(cnt, f, &c, _buffered);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5585
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5586
		if (cnt == 1) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5587
		    pos = __INST(position);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5588
		    if (pos != nil) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5589
			__INST(position) = __MKSMALLINT(__intVal(pos) + 1);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5590
		    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5591
		    RETURN ( self );
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5592
		}
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5593
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5594
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5595
	} else {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5596
	    if (__isSmallInteger(aCharacter)) {
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5597
		c = __intVal(aCharacter);
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5598
		goto doWrite;
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5599
	    }
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5600
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5601
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5602
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5603
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5604
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5605
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5606
    binary == true ifFalse:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5607
	aCharacter isCharacter ifFalse:[
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5608
	    self argumentMustBeCharacter. 
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5609
	    ^ self.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5610
	]
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5611
    ] ifTrue:[
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5612
	aCharacter isInteger ifFalse:[
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5613
	    self argumentMustBeInteger.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5614
	    ^ self.
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5615
	].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5616
    ].
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5617
    "/ migration support
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5618
    self 
5618
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5619
	nextPutByte:aCharacter asInteger
ad60afc06d7c separated open from memory allocation (i.e. avoid fopen; do it as open+fdopen),
Claus Gittinger <cg@exept.de>
parents: 5577
diff changeset
  5620
	toFile:filePointer
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5621
        
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5622
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5623
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5624
nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5625
    "write all elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5626
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5627
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5628
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5629
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5630
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5631
    int len, cnt;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5632
    OBJ pos, fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5633
    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
  5634
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5635
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5636
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5637
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5638
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5639
	&& (__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
  5640
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5641
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5642
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5643
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5644
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5645
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5646
	if (__isString(aCollection) || __isSymbol(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5647
	    len = __stringSize(aCollection);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5648
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5649
	    if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5650
		cnt = fwrite(__stringVal(aCollection), 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5651
	    } else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5652
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5653
	    {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5654
		o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5655
		__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5656
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5657
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5658
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5659
		int offs;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5660
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5661
		if (__isByteArray(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5662
		    offs = 0;
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5663
		    len = __byteArraySize(aCollection);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5664
		} else if (__isBytes(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5665
		    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
  5666
		    len = __byteArraySize(aCollection) - offs;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5667
		} else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5668
		    goto out;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5669
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5670
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5671
		    cnt = fwrite(__stringVal(aCollection), 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5672
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5673
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5674
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5675
		    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
  5676
		    o_offs += offs;
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5677
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5678
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5679
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5680
		goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5681
	}
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5682
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5683
	if (cnt == len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5684
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5685
	    if (pos != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5686
		__INST(position) = __MKSMALLINT(__intVal(pos) + len);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5687
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5688
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5689
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  5690
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5691
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5692
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5693
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5694
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5695
    filePointer isNil ifTrue:[self errorNotOpen. ^ self].
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5696
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5697
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5698
    ^ super nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5699
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5700
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5701
nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5702
    "write a range of elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5703
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5704
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5705
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5706
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5707
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5708
    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
  5709
    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
  5710
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5711
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5712
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5713
    if (((fp = __INST(filePointer)) != nil)
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5714
	&& (__INST(mode) != @symbol(readonly))
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5715
	&& __bothSmallInteger(start, stop)
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5716
    ) {
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5717
	f = __FILEVal(fp);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5718
	if (_buffered = (__INST(buffered) == true)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5719
	    __WRITING__(f)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5720
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5721
	iStart = __intVal(start);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5722
	iStop = __intVal(stop);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5723
	if ((iStart < 1) || (iStop < iStart)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5724
	    RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5725
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5726
	if (__isString(aCollection) || __isSymbol(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5727
	    len = __stringSize(aCollection);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5728
	    if (iStop > len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5729
		RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5730
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5731
	    if (iStop > len)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5732
		iStop = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5733
	    len = iStop - iStart + 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5734
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5735
	    if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5736
		cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5737
	    } else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5738
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5739
	    {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5740
		o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5741
		__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
  5742
	    }
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5743
	} else {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5744
	    if (__INST(binary) == true) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5745
		int offs;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5746
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5747
		if (__isByteArray(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5748
		    offs = 0;
3221
21085ae8e1be eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
  5749
		    len = __byteArraySize(aCollection);
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5750
		} else if (__isBytes(aCollection)) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5751
		    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
  5752
		    len = __byteArraySize(aCollection) - offs;
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5753
		} else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5754
		    goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5755
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5756
		if (iStop > len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5757
		    RETURN(self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5758
		}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5759
		if (iStop > len)
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5760
		    iStop = len;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5761
		len = iStop - iStart + 1;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5762
		offs += iStart - 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5763
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5764
		if ((f == stdout) || (f == stderr)) {
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5765
		    cnt = fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5766
		} else 
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5767
#endif
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5768
		{
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5769
		    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
  5770
		    __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
  5771
		}
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5772
	    } else
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5773
		goto out;
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5774
	}
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5775
	if (cnt == len) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5776
	    pos = __INST(position);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5777
	    if (pos != nil) {
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5778
		__INST(position) = __MKSMALLINT(__intVal(pos) + len);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5779
	    }
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5780
	    RETURN (self);
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
  5781
	}
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
  5782
	__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5783
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5784
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5785
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5786
    lastErrorNumber notNil ifTrue:[^ self writeError].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5787
    ^ super nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5788
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5789
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  5790
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5791
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5792
version
7013
993d318775b7 copyToEndTo: pushed to Stream
penk
parents: 7002
diff changeset
  5793
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.246 2003-02-07 11:28:02 penk Exp $'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5794
! !
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  5795
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5796
ExternalStream initialize!