ExternalStream.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Nov 2009 16:46:56 +0100
changeset 12552 2c4fd3d0b31b
parent 12548 6a2abe88a7a2
child 12553 301348f23939
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    12
"{ Package: 'stx:libbasic' }"
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    13
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    14
ReadWriteStream subclass:#ExternalStream
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    15
	instanceVariableNames:'handleType handle mode buffered binary eolMode hitEOF didWrite
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    16
		lastErrorNumber readAhead'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    17
	classVariableNames:'Lobby LastErrorNumber InvalidReadSignal InvalidWriteSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    18
		InvalidModeSignal OpenErrorSignal StreamNotOpenSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    19
		InvalidOperationSignal DefaultEOLMode ReadMode ReadWriteMode
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    20
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    21
		FileOpenTrace'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    22
	poolDictionaries:''
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    23
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    24
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    25
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    26
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    27
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
    28
10328
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    29
#undef fwrite
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    30
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    31
#include <stdio.h>
437
claus
parents: 436
diff changeset
    32
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    33
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
    34
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    35
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    36
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    37
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    38
#endif
437
claus
parents: 436
diff changeset
    39
10
claus
parents: 5
diff changeset
    40
#include <errno.h>
437
claus
parents: 436
diff changeset
    41
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    42
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    43
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    44
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    45
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    46
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    47
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    48
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    49
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    50
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    51
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    52
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    53
#ifndef SEEK_SET
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    54
# define SEEK_SET 0
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    55
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    56
#ifndef SEEK_CUR
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    57
# define SEEK_CUR 1
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    58
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    59
#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
    60
# 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
    61
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    62
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
    63
#if defined(__VMS__) || defined(__sparc__) || defined(WIN32)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    64
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    65
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    66
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    67
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    68
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    69
#ifdef LATER
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    70
# define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    71
# define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    72
# define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    73
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    74
# define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    75
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    76
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    77
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    78
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    79
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    80
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    81
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    82
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    83
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    84
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    85
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    87
# define __END_INTERRUPTABLE__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    88
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    89
#endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    90
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
    91
# ifdef __i386__
4913
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
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    95
#ifdef WIN32
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    96
# undef INT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    98
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   102
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   104
# undef Date
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   105
# undef Delay
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   106
# undef Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   107
# undef Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   108
# undef Context
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   109
# undef Message
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   110
# undef Process
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   111
# undef Processor
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   112
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   113
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   114
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   115
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
# define NOMINMAX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
//#d efine NOOPENFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   118
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   119
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   120
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   121
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   123
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   124
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
# include <windows.h>
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   127
# include <winsock.h> /* */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
#  define Array __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
# ifdef __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
#  define Number __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
# ifdef __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
#  define Method __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
# ifdef __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   145
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   146
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   147
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   148
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   150
# ifdef __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   151
#  define Set __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   152
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   153
# ifdef __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   154
#  define Signal __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   155
# endif
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   156
# ifdef __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   157
#  define Delay __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   158
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   159
# ifdef __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   160
#  define Context __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   161
# endif
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   162
# ifdef __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   163
#  define Message __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   164
# endif
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   165
# ifdef __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   166
#  define Process __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   167
# endif
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   168
# ifdef __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   169
#  define Processor __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   170
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   171
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   172
# define INT    int
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   173
# define UINT   uint
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   174
# define off_t  long
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   175
#endif /* WIN32 */
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   176
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   177
#ifndef NO_STDIO /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   178
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   179
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   180
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   181
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   182
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   183
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   184
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   185
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   186
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   187
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   188
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   189
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   190
     && ((char *)(buf) < __survEndPtr)) { \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   191
	__fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   192
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   193
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   194
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   195
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   196
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   197
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   198
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   199
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   200
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   201
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   202
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   203
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   204
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   205
# 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
   206
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   207
# 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
   208
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   209
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   210
#ifdef WIN32
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   211
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   212
# ifdef __BORLANDC__
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   213
   int _rtl_read();
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   214
   int _rtl_write();
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   215
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   216
#  define READ(ret,f, cp, n, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   217
      { int __res;\
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   218
	HANDLE h; \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   219
	h = _get_osfhandle(fileno(f)); \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   220
	if ((handleType == @symbol(socketFilePointer)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   221
	|| ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   222
	  (ret) = __STX_WSA_NOINT_CALL4("recv", recv, h, (cp), (n), 0);\
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   223
	} else { \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   224
	  (ret) = __STX_C_NOINT_CALL3("_rtl_read", _rtl_read, fileno(f), (cp), (n));\
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   225
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   226
      }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   227
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   228
#  define WRITE(ret,f, cp, n, handleType) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   229
      { int __res;\
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   230
	HANDLE h; \
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   231
	h = _get_osfhandle(fileno(f)); \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   232
	if ((handleType == @symbol(socketFilePointer)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   233
	|| ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   234
	  (ret) = __STX_WSA_NOINT_CALL4("send", send, h, (cp), (n), 0);\
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   235
	} else { \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   236
	  (ret) = __STX_C_NOINT_CALL3("_rtl_write", _rtl_write, fileno(f), (cp), (n));\
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   237
	} \
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   238
      }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   239
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   240
# else /* MSC */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   241
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   242
#  define READ(ret,f, cp, n, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   243
      { int __res;\
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   244
	int fd; \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   245
	HANDLE h; \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   246
	fd = fileno(f); \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   247
	if ((handleType == @symbol(socketFileDescriptor)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   248
	 || ((handleType == nil) && (ioctlsocket((SOCKET)fd,FIONREAD,&__res)==0))) { \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   249
	  (ret) = __STX_WSA_NOINT_CALL4("recv", recv, fd, (cp), (n), 0);\
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   250
	} else { \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   251
	  h = _get_osfhandle(fd); \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   252
	  if ((handleType == @symbol(socketFilePointer)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   253
	  || ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   254
	    (ret) = __STX_WSA_NOINT_CALL4("recv", recv, h, (cp), (n), 0);\
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   255
	  } else { \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   256
	    (ret) = __STX_API_NOINT_CALL5("ReadFile", ReadFile, h, (cp), (n), &__res, 0);\
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   257
	    if (ret) \
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   258
	      ret = __res; \
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   259
	  } \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   260
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   261
      }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   262
#  define WRITE(ret,f, cp, n, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   263
      { int __res;\
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   264
	int fd; \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   265
	HANDLE h; \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   266
	fd = fileno(f); \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   267
	if ((handleType == @symbol(socketFileDescriptor)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   268
	 || ((handleType == nil) && (ioctlsocket((SOCKET)fd,FIONREAD,&__res)==0))) { \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   269
	  (ret) = __STX_WSA_NOINT_CALL4("send", send, fd, (cp), (n), 0);\
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   270
	} else {\
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   271
	  h = _get_osfhandle(fd); \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   272
	  if ((handleType == @symbol(socketFilePointer)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   273
	  || ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   274
	    (ret) = __STX_WSA_NOINT_CALL4("send", send, h, (cp), (n), 0);\
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   275
	  } else {\
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   276
	    (ret) = __STX_API_NOINT_CALL5("WriteFile", WriteFile, h, (cp), (n), &__res, 0);\
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   277
	    if (ret) \
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   278
	      ret = __res; \
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   279
	  } \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   280
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   281
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   282
# endif /* MSC */
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
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   285
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   286
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   287
# define FILENO(f)              fileno(f)
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 __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   290
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   291
     && (__INST(mode) == @symbol(readwrite))) {  \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   292
	__INST(didWrite) = false;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   293
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   294
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   295
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   296
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   297
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   298
     && (__INST(mode) == @symbol(readwrite))) {  \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   299
	__INST(didWrite) = true;                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   300
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   301
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   302
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   303
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   304
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   305
	ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   306
    } else {                                            \
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   307
      __INST(readAhead) = __mkSmallInteger((c));            \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   308
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   309
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   310
# define __READBYTE__(ret, f, buf, isBuffered, handleType)          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   311
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   312
	for (;;) {                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   313
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   314
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   315
	    if ((ret) >= 0) {                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   316
		*(buf) = (ret);                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   317
		(ret) = 1;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   318
	    } else if (ferror(f)) {                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   319
		if (__threadErrno == EINTR) {           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   320
		    clearerr(f);                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   321
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   322
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   323
	    } else {                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   324
		(ret) = 0;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   325
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   326
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   327
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   328
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   329
	OBJ rA = __INST(readAhead);                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   330
	if (rA != nil) {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   331
	    *(buf) = (char)__intVal(rA);                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   332
	    __INST(readAhead) = nil;                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   333
	    (ret) = 1;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   334
	} else {                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   335
	    for (;;) {                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   336
		CLEAR_ERRNO;                            \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   337
		READ(ret,f, buf, 1, handleType);                    \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   338
		if ((ret) >= 0 || __threadErrno != EINTR)       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   339
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   340
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   341
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   342
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   343
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   344
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   345
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   346
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   347
   */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   348
# define __READBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   349
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   350
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   351
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   352
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   353
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   354
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   355
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   356
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   357
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   358
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   359
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   360
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   361
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   362
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   363
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   364
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   365
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   366
	    (buf)[__offs++] = (ret);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   367
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   368
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   369
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   370
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   371
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   372
							\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   373
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   374
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   375
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   376
		(buf)[__offs] = __intVal(rA);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   377
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   378
		(ret) = 1;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   379
	    } else {                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   380
		CLEAR_ERRNO;                            \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   381
		READ(ret,f, (buf)+__offs, (cnt)-__offs, handleType); \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   382
		if ((ret) <= 0) {                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   383
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   384
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   385
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   386
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   387
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   388
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   389
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   390
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   391
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   392
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   393
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   394
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   395
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   396
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   397
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   398
    int oldFlags;                                       \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   399
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   400
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   401
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   402
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   403
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   404
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   405
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   406
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   407
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   408
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   409
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   410
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   411
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   412
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   413
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   414
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   415
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   416
	    (buf)[__offs++] = (ret);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   417
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   418
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   419
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   420
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   421
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   422
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   423
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   424
		(buf)[__offs] = __intVal(rA);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   425
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   426
		(ret) = 1;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   427
		__offs += (ret);                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   428
		continue;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   429
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   430
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   431
	    {                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   432
	      int res;                                  \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   433
	      if ((handleType == @symbol(socketFilePointer)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   434
	       || ((handleType == nil) && (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0))) { \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   435
		  if (res > 0) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   436
		      if (res > ((cnt)-__offs))         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   437
			res = (cnt)-__offs;             \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   438
		      READ(ret,f, (buf)+__offs, res, handleType);   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   439
		  } else {                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   440
		      (ret) = 0;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   441
		  }                                     \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   442
	      } else if ((handleType == @symbol(pipeFilePointer)) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   443
			 || ((handleType == nil) && (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)))) { \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   444
		  if (res > 0) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   445
		      if (res > ((cnt)-__offs))         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   446
			res = (cnt)-__offs;             \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   447
		      READ(ret,f, (buf)+__offs, res, handleType);   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   448
		  } else                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   449
		      ret = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   450
	      } else {                                  \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   451
		  READ(ret,f, (buf)+__offs, (cnt)-__offs, handleType); \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   452
	      }                                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   453
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   454
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   455
		if (__threadErrno == EINTR) {                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   456
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   457
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   458
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   459
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   460
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   461
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   462
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   463
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   464
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   465
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   466
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   467
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   468
# define IO_BUFFER_SIZE        (8*1024)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   469
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   470
# define __READBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   471
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   472
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   473
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   474
    char *buf = (char *)(obj);                          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   475
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   476
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   477
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   478
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   479
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   480
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   481
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   482
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   483
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   484
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   485
			/* refetch */                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   486
			buf = (char *)(obj);            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   487
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   488
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   489
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   490
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   491
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   492
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   493
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   494
	    (buf)[__ooffs+__offs] = (ret);              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   495
	    __offs++;                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   496
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   497
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   498
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   499
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   500
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   501
	    char __buf[IO_BUFFER_SIZE];                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   502
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   503
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   504
		(buf)[__ooffs+__offs] = __intVal(rA);   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   505
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   506
		(ret) = 1;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   507
	    } else {                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   508
		int l;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   509
		CLEAR_ERRNO;                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   510
		l = (cnt)-__offs;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   511
		if ( l > IO_BUFFER_SIZE)                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   512
		  l = IO_BUFFER_SIZE;                   \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   513
		READ(ret,f, __buf, l, handleType);                  \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   514
		if ((ret) <= 0) {                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   515
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   516
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   517
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   518
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   519
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   520
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   521
	    if( (ret) > 0 ) {                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   522
		/* refetch */                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   523
		buf = (volatile char *)(obj);               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   524
		memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   525
		__offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   526
	    } else {                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   527
		(ret) = 0;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   528
	    }                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   529
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   530
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   531
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   532
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   533
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   534
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   535
# define __READAVAILBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType)\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   536
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   537
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   538
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   539
    char *buf = (char *)(obj);                       \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   540
						     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   541
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   542
    if (isBuffered) {                                \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   543
	while (__offs < (cnt)) {                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   544
	    CLEAR_ERRNO;                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   545
	    (ret) = getc(f);                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   546
	    if ((ret) < 0) {                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   547
		if (ferror(f)) {                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   548
		    if (__threadErrno == EINTR) {            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   549
			clearerr(f);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   550
			/* refetch */                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   551
			buf = (char *)(obj);         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   552
			continue;                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   553
		    }                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   554
		} else {                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   555
		    (ret) = 0;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   556
		}                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   557
		break;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   558
	    }                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   559
	    (buf)[__ooffs+__offs] = (ret);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   560
	    __offs++;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   561
	}                                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   562
	if (__offs > 0)                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   563
	    (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   564
    } else {                                         \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   565
	while (__offs < (cnt)) {                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   566
	    char __buf[IO_BUFFER_SIZE];              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   567
	    OBJ rA = __INST(readAhead);              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   568
	    if (rA != nil) {                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   569
		(buf)[__ooffs+__offs] = __intVal(rA);\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   570
		__INST(readAhead) = nil;             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   571
		(ret) = 1;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   572
		__offs += (ret);                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   573
		continue;                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   574
	    }                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   575
	    {                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   576
		int l;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   577
		int res;                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   578
		CLEAR_ERRNO;                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   579
		l = (cnt)-__offs;                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   580
		if ( l > IO_BUFFER_SIZE)             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   581
		    l = IO_BUFFER_SIZE;              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   582
		if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   583
		    if (res > 0) {                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   584
			if (res > l)                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   585
			    res = l;                 \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   586
			READ(ret,f, __buf, res, handleType);     \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   587
		    } else {                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   588
			(ret) = 0;                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   589
		    }                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   590
		} else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   591
		    if (res > 0) {                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   592
			if (res > l)                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   593
			    res = l;                 \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   594
			READ(ret,f, __buf, res, handleType);     \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   595
		    } else                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   596
			(ret) = 0;                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   597
		} else {                             \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   598
		    READ(ret,f, __buf, l, handleType);           \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   599
		}                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   600
		if ((ret) < 0 && __threadErrno == EINTR) {   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   601
		    continue;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   602
		}                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   603
	    }                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   604
	    if( (ret) > 0 ) {                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   605
		/* refetch */                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   606
		buf = (volatile char *)(obj);               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   607
		memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   608
		__offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   609
	    } else {                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   610
		(ret) = 0;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   611
	    }                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   612
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   613
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   614
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   615
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   616
    }                                                   \
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
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   619
# define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)         \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   620
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   621
	for (;;) {                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   622
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   623
	    ret = putc(*(buf), f);                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   624
	    if ((ret) >= 0) {                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   625
		(ret) = 1;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   626
	    } else if (ferror(f)) {                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   627
		if (__threadErrno == EINTR) {                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   628
		    clearerr(f);                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   629
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   630
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   631
	    } else                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   632
		(ret) = 0;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   633
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   634
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   635
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   636
	for (;;) {                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   637
	    CLEAR_ERRNO;                                \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   638
	    WRITE(ret,f, buf, 1, handleType);                       \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   639
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   640
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   641
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   642
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   643
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   644
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)   \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   645
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   646
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   647
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   648
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   649
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   650
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   651
	    if ((ret) <= 0) {                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   652
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   653
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   654
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   655
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   656
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   657
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   658
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   659
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   660
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   661
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   662
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   663
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   664
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   665
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   666
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   667
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   668
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   669
	    CLEAR_ERRNO;                                \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   670
	    WRITE(ret,f, (buf)+__offs, (cnt)-__offs, handleType);   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   671
	    if (ret <= 0) {                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   672
		if (ret < 0 && __threadErrno == EINTR) {        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   673
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   674
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   675
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   676
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   677
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   678
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   679
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   680
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   681
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   682
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   683
# define __WRITEBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType) \
4913
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
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   686
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   687
    char *buf = (char *)(obj);                          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   688
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   689
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   690
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   691
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   692
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   693
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   694
	    if ((ret) <= 0) {                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   695
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   696
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   697
			/* refetch */                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   698
			buf = (char *)(obj);            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   699
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   700
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   701
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   702
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   703
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   704
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   705
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   706
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   707
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   708
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   709
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   710
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   711
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   712
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   713
	    char __buf[IO_BUFFER_SIZE];                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   714
	    int l;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   715
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   716
	    l = (cnt)-__offs;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   717
	    if ( l > IO_BUFFER_SIZE)                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   718
	      l = IO_BUFFER_SIZE;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   719
	    /* refetch */                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   720
	    buf = (volatile char *)(obj);               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   721
	    memcpy(__buf,(buf)+__ooffs+__offs,l);       \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   722
	    WRITE(ret,f, __buf, l, handleType);                     \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   723
	    if (ret <= 0) {                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   724
		if (ret < 0 && __threadErrno == EINTR) {        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   725
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   726
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   727
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   728
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   729
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   730
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   731
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   732
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   733
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   734
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   735
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   736
#else /* no WIN32 */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   737
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   738
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   739
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   740
     && (__INST(mode) == @symbol(readwrite))) {  \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   741
	__INST(didWrite) = false;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   742
	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
   743
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   744
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   745
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   746
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   747
     && (__INST(mode) == @symbol(readwrite))) {  \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   748
	__INST(didWrite) = true;                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   749
	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
   750
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   751
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   752
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   753
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   754
#  define __UNGETC__(c, f, isBuffered)                  \
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   755
    __INST(readAhead) = __mkSmallInteger((c));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   756
# else /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   757
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   758
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   759
	ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   760
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   761
	__INST(readAhead) = __mkSmallInteger((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   762
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   763
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   764
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   765
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   766
#  define __READBYTE__(ret, f, buf, isBuffered, handleType)         \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   767
    {                                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   768
	OBJ rA = __INST(readAhead);                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   769
	if (rA != nil) {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   770
	    *(buf) = __intVal(rA);                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   771
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   772
	    __INST(readAhead) = nil;                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   773
	    (ret) = 1;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   774
	} else {                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   775
	    for (;;) {                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   776
		CLEAR_ERRNO;                            \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   777
		(ret) = READ(f, buf, 1, handleType);                \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   778
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   779
		if ((ret) >= 0 || __threadErrno != EINTR)       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   780
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   781
		__HANDLE_INTERRUPTS__;                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   782
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   783
	}                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   784
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   785
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   786
#  define __READBYTE__(ret, f, buf, isBuffered, handleType)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   787
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   788
	for (;;) {                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   789
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   790
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   791
	    if ((ret) >= 0) {                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   792
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   793
		*(buf) = (ret);                         \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   794
		(ret) = 1;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   795
	    } else if (ferror(f)) {                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   796
		if (__threadErrno == EINTR) {                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   797
		    __HANDLE_INTERRUPTS__;              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   798
		    clearerr(f);                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   799
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   800
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   801
	    } else                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   802
		(ret) = 0;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   803
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   804
	}                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   805
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   806
	OBJ rA = __INST(readAhead);                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   807
	if (rA != nil) {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   808
	    *(buf) = __intVal(rA);                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   809
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   810
	    __INST(readAhead) = nil;                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   811
	    (ret) = 1;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   812
	} else {                                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   813
	    for (;;) {                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   814
		CLEAR_ERRNO;                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   815
		(ret) = read(fileno(f), buf, 1);        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   816
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   817
		if ((ret) >= 0 || __threadErrno != EINTR)       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   818
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   819
		__HANDLE_INTERRUPTS__;                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   820
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   821
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   822
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   823
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   824
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   825
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   826
 * 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
   827
 * (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
   828
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   829
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   830
#  define __READBYTES__(ret, f, buf, cnt, isBuffered, handleType)   \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   831
    {                                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   832
	int __offs = 0, __cnt;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   833
							\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   834
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   835
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   836
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   837
		(buf)[__offs] = __intVal(rA);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   838
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   839
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   840
		__offs++;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   841
	    } else {                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   842
		CLEAR_ERRNO;                            \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   843
		__cnt = READ(f, (buf)+__offs, (cnt)-__offs, handleType); \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   844
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   845
		if (__cnt <= 0) {                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   846
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   847
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   848
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   849
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   850
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   851
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   852
		__offs += __cnt;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   853
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   854
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   855
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   856
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   857
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   858
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   859
#  define __READBYTES__(ret, f, buf, cnt, isBuffered, handleType)     \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   860
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   861
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   862
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   863
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   864
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   865
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   866
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   867
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   868
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   869
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   870
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   871
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   872
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   873
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   874
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   875
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   876
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   877
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   878
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   879
	    (buf)[__offs++] = (ret);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   880
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   881
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   882
	    (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   883
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   884
	int __offs = 0, __cnt;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   885
	int fd = fileno(f);                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   886
							\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   887
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   888
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   889
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   890
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   891
		(buf)[__offs] = __intVal(rA);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   892
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   893
		__offs++;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   894
	    } else {                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   895
		CLEAR_ERRNO;                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   896
		__cnt = read(fd, (buf)+__offs, (cnt)-__offs);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   897
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   898
		if (__cnt <= 0) {                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   899
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   900
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   901
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   902
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   903
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   904
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   905
		__offs += __cnt;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   906
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   907
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   908
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   909
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   910
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   911
6563
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
/*
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   914
 * 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
   915
 */
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   916
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   917
#  if defined(F_GETFL) && defined(F_SETFL) && (defined(O_NONBLOCK) || defined(O_NDELAY) || defined(FNDELAY))
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   918
#   define GETFLAGS(fd) \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   919
	fcntl(fd, F_GETFL, 0);
3554
320cbfef9382 made nextAvail really unblocking
Claus Gittinger <cg@exept.de>
parents: 3551
diff changeset
   920
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   921
#   define SETFLAGS(fd, flags) \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   922
	fcntl(fd, F_SETFL, flags)
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   923
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   924
#   if defined(O_NONBLOCK)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   925
#    define __STX_NONBLOCK_FLAG O_NONBLOCK
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   926
#   else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   927
#    if defined(O_NDELAY)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   928
#     define __STX_NONBLOCK_FLAG O_NDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   929
#    else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   930
#     define __STX_NONBLOCK_FLAG FNDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   931
#    endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   932
#   endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   933
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   934
#   define SETNONBLOCKING(fd) \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   935
	{ \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   936
	    int flags; \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   937
	    flags = fcntl(fd, F_GETFL, 0); \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   938
	    if (flags >= 0) { \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   939
		fcntl(fd, F_SETFL, flags | __STX_NONBLOCK_FLAG); \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   940
	    } \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   941
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   942
#  else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   943
#   define GETFLAGS(fd) 0
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   944
#   define SETFLAGS(fd, flags) /* nothing */
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   945
#   define SETNONBLOCKING(fd) /* nothing */
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   946
#  endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   947
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   948
#  define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   949
  {                                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   950
    int __offs = 0, __cnt;                                     \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   951
    int oldFlags;                                       \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   952
							\
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   953
    (ret) = 0;                                          \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   954
    oldFlags = GETFLAGS(fileno(f));                     \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   955
    SETNONBLOCKING(fileno(f));                          \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   956
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   957
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   958
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   959
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   960
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   961
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   962
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   963
			(ret) = 0;                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   964
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   965
			break;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   966
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   967
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   968
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   969
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   970
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   971
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   972
	    (buf)[__offs++] = (ret);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   973
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   974
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   975
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   976
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   977
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   978
	int fd = fileno(f);                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   979
							\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   980
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   981
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   982
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   983
		(buf)[__offs] = __intVal(rA);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   984
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   985
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   986
		__offs++;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   987
		continue;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   988
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   989
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   990
	    __cnt = read(fd, (buf)+__offs, (cnt)-__offs); \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   991
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   992
	    if (__cnt > 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   993
		__offs += __cnt;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   994
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   995
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   996
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   997
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
   998
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   999
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  1000
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1001
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1002
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1003
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1004
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1005
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1006
 * 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
  1007
 * (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
  1008
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1009
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1010
#  define __READBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType)     \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1011
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1012
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1013
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1014
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1015
    char *buf = (char *)(obj);                          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1016
							\
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1017
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1018
    {                                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1019
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1020
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1021
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1022
		(buf)[__ooffs+__offs] = __intVal(rA);   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1023
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1024
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1025
		__offs++;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1026
	    } else {                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1027
		CLEAR_ERRNO;                            \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1028
		__cnt = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1029
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1030
		if (__cnt <= 0) {                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1031
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1032
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1033
			/* refetch */                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1034
			buf = (char *)(obj);            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1035
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1036
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1037
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1038
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1039
		__offs += __cnt;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1040
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1041
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1042
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1043
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1044
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1045
  }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1046
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1047
# else /* use STDIO */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1048
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1049
#  define __READBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType)     \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1050
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1051
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1052
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1053
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1054
    char *buf = (char *)(obj);                          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1055
							\
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1056
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1057
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1058
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1059
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1060
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1061
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1062
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1063
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1064
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1065
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1066
			/* refetch */                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1067
			buf = (char *)(obj);            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1068
			DEBUGBUFFER(buf);               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1069
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1070
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1071
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1072
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1073
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1074
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1075
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1076
	    (buf)[__ooffs+__offs] = (ret);              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1077
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1078
	    __offs++;                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1079
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1080
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1081
	    (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
  1082
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1083
	int fd = fileno(f);                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1084
							\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1085
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1086
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1087
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1088
		(buf)[__ooffs+__offs] = __intVal(rA);   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1089
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1090
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1091
		__offs++;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1092
	    } else {                                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1093
		CLEAR_ERRNO;                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1094
		__cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1095
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1096
		if (__cnt <= 0) {                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1097
		    if (__cnt < 0 && __threadErrno == EINTR) {  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1098
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1099
			/* refetch */                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1100
			buf = (char *)(obj);            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1101
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1102
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1103
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1104
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1105
		__offs += __cnt;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1106
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1107
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1108
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1109
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1110
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1111
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1112
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1113
# define __READAVAILBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType)     \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1114
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1115
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1116
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1117
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1118
    char *buf = (char *)(obj);                          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1119
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1120
    (ret) = 0;                                          \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1121
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1122
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1123
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1124
	    (ret) = getc(f);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1125
	    if ((ret) < 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1126
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1127
		    if (__threadErrno == EINTR) {       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1128
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1129
			/* refetch */                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1130
			buf = (char *)(obj);            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1131
			(ret) = 0;                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1132
			break;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1133
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1134
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1135
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1136
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1137
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1138
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1139
	    (buf)[__ooffs+__offs] = (ret);              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1140
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1141
	    __offs++;                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1142
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1143
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1144
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1145
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1146
	int fd = fileno(f);                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1147
							\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1148
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1149
	    OBJ rA = __INST(readAhead);                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1150
	    if (rA != nil) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1151
		(buf)[__ooffs+__offs] = __intVal(rA);   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1152
		DEBUGBUFFER(buf);                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1153
		__INST(readAhead) = nil;                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1154
		__offs++;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1155
		continue;                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1156
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1157
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1158
	    __cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1159
	    DEBUGBUFFER(buf);                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1160
	    if (__cnt > 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1161
		__offs += __cnt;                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1162
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1163
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1164
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1165
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1166
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1167
    }                                                   \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1168
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1169
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1170
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1171
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1172
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1173
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1174
#  define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1175
	for (;;) {                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1176
	    CLEAR_ERRNO;                                \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1177
	    (ret) = WRITE(f, buf, 1, handleType);                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1178
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1179
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1180
	    __HANDLE_INTERRUPTS__;                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1181
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1182
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1183
#  define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)        \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1184
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1185
	for (;;) {                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1186
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1187
	    ret = putc(*(buf), f);                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1188
	    if ((ret) >= 0) {                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1189
		(ret) = 1;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1190
	    } else if (ferror(f)) {                     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1191
		/* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1192
		if (__threadErrno == EINTR || __threadErrno == 0) {     \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1193
		    __HANDLE_INTERRUPTS__;              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1194
		    clearerr(f);                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1195
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1196
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1197
	    } else                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1198
		(ret) = 0;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1199
	    break;                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1200
	}                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1201
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1202
	for (;;) {                                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1203
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1204
	    (ret) = write(fileno(f), buf, 1);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1205
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1206
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1207
	    __HANDLE_INTERRUPTS__;                      \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1208
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1209
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1210
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1211
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1212
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1213
 * 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
  1214
 * (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
  1215
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1216
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1217
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1218
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1219
    {                                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1220
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1221
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1222
	    CLEAR_ERRNO;                                \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1223
	    ret = WRITE(f, (buf)+__offs, (cnt)-__offs, handleType); \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1224
	    if (ret <= 0) {                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1225
		if (ret < 0 && __threadErrno == EINTR) {        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1226
		    __HANDLE_INTERRUPTS__;              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1227
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1228
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1229
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1230
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1231
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1232
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1233
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1234
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1235
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1236
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1237
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1238
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1239
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1240
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1241
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1242
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1243
	    ret = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1244
	    if ((ret) <= 0) {                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1245
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1246
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1247
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1248
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1249
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1250
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1251
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1252
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1253
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1254
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1255
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1256
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1257
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1258
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1259
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1260
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1261
	int __offs = 0;                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1262
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1263
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1264
	    ret = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1265
	    if (ret <= 0) {                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1266
		if (ret < 0 && __threadErrno == EINTR) {        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1267
		    __HANDLE_INTERRUPTS__;              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1268
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1269
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1270
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1271
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1272
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1273
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1274
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1275
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1276
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1277
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1278
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1279
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1280
 * 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
  1281
 * (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
  1282
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1283
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1284
#  define __WRITEBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType)            \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1285
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1286
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1287
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1288
    char *buf = (char *)(obj);                          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1289
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1290
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1291
    {                                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1292
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1293
	    CLEAR_ERRNO;                                \
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1294
	    ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType);               \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1295
	    if (ret <= 0) {                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1296
		if (ret < 0 && __threadErrno == EINTR) {        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1297
		    __HANDLE_INTERRUPTS__;              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1298
		    /* refetch */                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1299
		    buf = (char *)(obj);                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1300
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1301
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1302
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1303
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1304
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1305
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1306
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1307
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1308
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1309
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1310
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1311
#  define __WRITEBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType)            \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1312
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1313
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1314
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1315
    char *buf = (char *)(obj);                          \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1316
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1317
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1318
    if (isBuffered) {                                   \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1319
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1320
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1321
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1322
	    if ((ret) <= 0) {                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1323
		if (ferror(f)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1324
		    if (__threadErrno == EINTR) {               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1325
			__HANDLE_INTERRUPTS__;          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1326
			/* refetch */                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1327
			buf = (char *)(obj);            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1328
			clearerr(f);                    \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1329
			continue;                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1330
		    }                                   \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1331
		    break;                              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1332
		} else {                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1333
		    (ret) = 0;                          \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1334
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1335
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1336
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1337
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1338
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1339
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1340
    } else {                                            \
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1341
	while (__offs < (cnt)) {                        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1342
	    CLEAR_ERRNO;                                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1343
	    ret = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs);       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1344
	    if (ret <= 0) {                             \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1345
		if (ret < 0 && __threadErrno == EINTR) {        \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1346
		    __HANDLE_INTERRUPTS__;              \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1347
		    /* refetch */                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1348
		    buf = (char *)(obj);                \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1349
		    continue;                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1350
		}                                       \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1351
		break;                                  \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1352
	    }                                           \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1353
	    __offs += (ret);                            \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1354
	}                                               \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1355
	if (__offs > 0)                                 \
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  1356
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1357
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1358
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1359
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1360
#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
  1361
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1362
/*
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1363
 * on some systems errno is a macro ... check for it here
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1364
 */
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1365
#ifndef errno
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1366
 extern errno;
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1367
#endif
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1368
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1369
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1370
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1371
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1372
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1373
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1374
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1375
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1376
 COPYRIGHT (c) 1988 by Claus Gittinger
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1377
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1378
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1379
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1380
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1381
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1382
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1383
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1384
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1385
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1386
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1387
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1388
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1389
"
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1390
    ExternalStream defines protocol common to Streams which have a file-descriptor and
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1391
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1392
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1393
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1394
    ExternalStreams can be in two modes: text- (the default) and binary-mode.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1395
    In text-mode, the elements read/written are characters;
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1396
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1397
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1398
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1399
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1400
    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
  1401
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1402
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1403
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1404
    or just forgotten - in this case, the garbage collector will eventually collect the
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1405
    object AND a close will be performed automatically (but you will NOT know when this
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1406
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1407
    Closing is also suggested, since if smalltalk is finished (be it by purpose, or due to
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1408
    some crash) the data will not be in the file, if unclosed.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1409
    All streams understand the close message, so it never hurts to use it (it is defined as
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1410
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1411
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1412
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1413
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1414
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1415
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1416
      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
  1417
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1418
      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
  1419
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1420
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1421
      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
  1422
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1423
      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
  1424
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1425
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1426
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1427
	handleType      <Symbol>        desribes what handle is:
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1428
					    win32: #fileHandle, #socketHandle,
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1429
						   #socketFileDescriptor
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1430
						   #filePointer, #socketFilePointer, #pipeFilePointer
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1431
					    unix: #filePointer, #socketFilePointer, #pipeFilePointer
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1432
					needed for win32, which uses different APIs for the different handles (sigh)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1433
	handle          <Integer>       used to be always a filePointer somehow mapped to an integer (FILE* - not the fd);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1434
					now, either a filePointer or a handle (win32)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1435
	mode            <Symbol>        #readwrite, #readonly or #writeonly
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1436
	buffered        <Boolean>       true, if buffered (i.e. collects characters - does
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1437
					not output immediately)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1438
	binary          <Boolean>       true if in binary mode (reads bytes instead of chars)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1439
	eolMode         <Symbol>        one of nil, #cr or #crlf.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1440
					determines how lines should be terminated.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1441
					nil -> newLine (as in Unix);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1442
					#crlf -> with cr-lf (as in MSDOS)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1443
					#cr -> with cr (as in VMS)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1444
	hitEOF          <Boolean>       true, if EOF was reached
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1445
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1446
	lastErrorNumber <Integer>       the value of errno (only valid right after the error -
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1447
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1448
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1449
    [Class variables:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1450
	Lobby           <Registry>      keeps track of used ext-streams (to free up FILE*'s)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1451
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1452
	StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1453
	InvalidReadSignal       <Signal> raised on read from writeonly stream
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1454
	InvalidWriteSignal      <Signal> raised on write to readonly stream
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1455
	InvalidModeSignal       <Signal> raised on text I/O with binary-stream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1456
					 or binary I/O with text-stream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1457
	OpenErrorSignal         <Signal> raised if open fails
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1458
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1459
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1460
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1461
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1462
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1463
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1464
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1465
      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
  1466
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1467
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1468
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1469
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1470
      is handled transparently - on SYS5.3 (i.e. non unixes :-) the read operation returns
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1471
      an error and errno is set to EINTR.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1472
      Thats what the ugly code around all getc-calls is for ...
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1473
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1474
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1475
claus
parents: 308
diff changeset
  1476
      Notice that typical stdio's use a single errno global variable to return an error code,
claus
parents: 308
diff changeset
  1477
      this was bad design in the stdio lib (right from the very beginning), since its much
claus
parents: 308
diff changeset
  1478
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1479
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1480
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1481
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1482
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1483
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1484
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1485
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1486
      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
  1487
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1488
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1489
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1490
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1491
    [author:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1492
	Claus Gittinger
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1493
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1494
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1495
    [see also:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1496
	FileStream Socket PipeStream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1497
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1498
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1499
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1500
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1501
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1502
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1503
    open a file, read the contents and display it in a textView:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1504
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1505
	|topView scrollPane textView fileStream text|
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1506
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1507
	topView := StandardSystemView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1508
	topView label:'contents of Makefile'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1509
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1510
	scrollPane := HVScrollableView in:topView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1511
	scrollPane origin:0.0@0.0 corner:1.0@1.0.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1512
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1513
	textView := EditTextView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1514
	scrollPane scrolledView:textView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1515
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1516
	fileStream := 'Makefile' asFilename readStream.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1517
	text := fileStream upToEnd.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1518
	fileStream close.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1519
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1520
	textView contents:text.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1521
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1522
	topView open.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1523
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1524
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1525
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1526
    Notice, all of the above can also be done (simply) as:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1527
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1528
	EditTextView openOn:'Makefile'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1529
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1530
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1531
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1532
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1533
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1534
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1535
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1536
    OperatingSystem isUNIXlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1537
	"/ unix EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1538
	DefaultEOLMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1539
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1540
	OperatingSystem isVMSlike ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1541
	    "/ vms EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1542
	    DefaultEOLMode := #cr
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1543
	] ifFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1544
	    "/ msdos EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1545
	    DefaultEOLMode := #crlf
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1546
	]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1547
    ]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1548
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1549
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1550
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1551
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1552
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1553
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1554
    OperatingSystem isMSDOSlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1555
	ReadMode := 'rb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1556
	ReadWriteMode := 'rb+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1557
	WriteMode := 'wb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1558
	AppendMode := 'ab+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1559
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1560
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1561
	ReadMode := 'r'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1562
	ReadWriteMode := 'r+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1563
	WriteMode := 'w'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1564
	AppendMode := 'a+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1565
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1566
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1567
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1568
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1569
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1570
    OpenErrorSignal isNil ifTrue:[
8066
0dbcbe8989b8 OpenError is now a class based exception
Claus Gittinger <cg@exept.de>
parents: 8008
diff changeset
  1571
"/        OpenErrorSignal := OpenError.
0dbcbe8989b8 OpenError is now a class based exception
Claus Gittinger <cg@exept.de>
parents: 8008
diff changeset
  1572
"/        OpenErrorSignal nameClass:self message:#openErrorSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1573
	OpenErrorSignal := OpenError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1574
	OpenErrorSignal notifierString:'open error'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1575
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1576
"/        InvalidReadSignal := ReadErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1577
"/        InvalidReadSignal nameClass:self message:#invalidReadSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1578
	InvalidReadSignal := InvalidReadError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1579
	InvalidReadSignal notifierString:'stream does not support reading'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1580
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1581
"/        InvalidWriteSignal := WriteErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1582
"/        InvalidWriteSignal nameClass:self message:#invalidWriteSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1583
	InvalidWriteSignal := InvalidWriteError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1584
	InvalidWriteSignal notifierString:'stream does not support writing'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1585
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1586
"/        InvalidModeSignal :=  StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1587
"/        InvalidModeSignal nameClass:self message:#invalidModeSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1588
	InvalidModeSignal := InvalidModeError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1589
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1590
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1591
"/        InvalidOperationSignal :=  StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1592
"/        InvalidOperationSignal nameClass:self message:#invalidOperationSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1593
	InvalidOperationSignal := InvalidOperationError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1594
	InvalidOperationSignal notifierString:'unsupported file operation'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1595
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1596
"/        StreamNotOpenSignal := StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1597
"/        StreamNotOpenSignal nameClass:self message:#streamNotOpenSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1598
	StreamNotOpenSignal := StreamNotOpenError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1599
	StreamNotOpenSignal notifierString:'stream is not open'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1600
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1601
"/        StreamIOErrorSignal := StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1602
"/        StreamIOErrorSignal nameClass:self message:#streamIOErrorSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1603
	StreamIOErrorSignal := StreamIOError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1604
	StreamIOErrorSignal notifierString:'I/O error'.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1605
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1606
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1607
    Lobby isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1608
	Lobby := Registry new.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1609
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1610
	"want to get informed when returning from snapshot"
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1611
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1612
    ].
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1613
    DefaultEOLMode isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1614
	self initDefaultEOLMode.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1615
    ].
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1616
    ReadMode isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1617
	self initModeStrings.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1618
    ].
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1619
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1620
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1621
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1622
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1623
    "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
  1624
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1625
301
35e40a6fc72b *** empty log message ***
claus
parents: 269
diff changeset
  1626
    Lobby do:[:aFileStream |
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1627
	aFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1628
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1629
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1630
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1631
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1632
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1633
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1634
    something == #earlyRestart ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1635
	self reOpenFiles.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1636
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1637
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1638
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1639
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1640
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1641
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1642
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1643
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1644
forFileDescriptor:aFileDescriptor mode:modeString
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1645
    "given a fileDescriptor, create an ExternalStream object
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1646
     to operate on this fd.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1647
     The mode-argument is passed to the fdopen call.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1648
     This may be used to wrap fd's as returned by user
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1649
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1650
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1651
    ^ self forFileDescriptor:aFileDescriptor mode:modeString buffered:true
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1652
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1653
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1654
     the example below will probably fail (15 is a random FD):
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1655
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1656
     |s|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1657
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1658
     s := ExternalStream forFileDescriptor:15 mode:'r'.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1659
     s next.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1660
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1661
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1662
    "Created: 29.2.1996 / 18:05:00 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1663
    "Modified: 29.2.1996 / 18:17:07 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1664
!
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1665
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1666
forFileDescriptor:aFileDescriptor mode:modeString buffered:buffered
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1667
    "given a fileDescriptor, create an ExternalStream object
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1668
     to operate on this fd.
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1669
     The mode-argument is passed to the fdopen call.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1670
     This may be used to wrap fd's as returned by user
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1671
     primitive code, or to wrap pipe-fds into externalStreams."
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1672
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1673
    |newStream|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1674
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1675
    newStream := self basicNew.
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1676
    newStream text; buffered:buffered; eolMode:DefaultEOLMode; clearEOF.
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1677
    ^ newStream connectTo:aFileDescriptor withMode:modeString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1678
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1679
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1680
     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
  1681
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1682
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1683
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1684
     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
  1685
     s next.
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
    "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
  1689
    "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
  1690
!
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
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1693
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1694
     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
  1695
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1696
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1697
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1698
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadWriteMode) readwrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1699
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
     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
  1702
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1703
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1704
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1705
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1706
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1707
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1708
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1709
    "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
  1710
    "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
  1711
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1712
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1713
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1714
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1715
     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
  1716
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1717
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1718
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1719
    ^ (self forFileDescriptor:aFileDescriptor mode:ReadMode) readonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1720
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1721
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1722
     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
  1723
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1724
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1725
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1726
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1727
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1728
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1729
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1730
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1731
     |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
  1732
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1733
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1734
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1735
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1736
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1737
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1738
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1739
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1740
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1741
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1742
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1743
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1744
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1745
     [
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1746
	 1 to:10 do:[:i |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1747
	     Transcript showCR:rs nextLine
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1748
	 ].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1749
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1750
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1751
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1752
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1753
     [
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1754
	 1 to:10 do:[:i |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1755
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1756
	 ].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1757
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1758
     ] fork.
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
    "
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
    "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
  1763
    "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
  1764
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1765
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1766
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1767
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1768
     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
  1769
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1770
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1771
3535
03890e8be43d added #makePTYPair
Claus Gittinger <cg@exept.de>
parents: 3490
diff changeset
  1772
    ^ (self forFileDescriptor:aFileDescriptor mode:WriteMode) writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1773
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1774
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1775
     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
  1776
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1777
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1778
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1779
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1780
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1781
     s nextPut:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1782
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1783
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1784
    "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
  1785
    "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
  1786
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1787
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1788
new
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1789
    |newStream|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1790
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1791
    newStream := self basicNew.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1792
    newStream text; buffered:true; eolMode:DefaultEOLMode; clearEOF.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1793
    ^ newStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1794
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1795
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1796
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1797
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1798
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1799
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1800
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1801
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1802
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1803
    "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
  1804
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1805
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1806
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1807
    "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
  1808
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1809
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1810
    ^ InvalidModeError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1811
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1812
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1813
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1814
    "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
  1815
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1816
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1817
    ^ InvalidOperationError
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1818
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1819
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1820
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1821
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1822
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1823
    ^ InvalidReadError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1824
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1825
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1826
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1827
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1828
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1829
    ^ InvalidWriteError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1830
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1831
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1832
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1833
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1834
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1835
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1836
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1837
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1838
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1839
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1840
     (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
  1841
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1842
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1843
    ^ StreamIOError
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1844
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1845
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1846
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1847
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1848
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1849
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1850
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1851
    ^ StreamNotOpenError
2
claus
parents: 1
diff changeset
  1852
! !
claus
parents: 1
diff changeset
  1853
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1854
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1855
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1856
errorReporter
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1857
    "I know about error codes"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1858
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1859
    ^ self
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1860
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1861
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1862
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1863
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1864
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1865
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1866
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1867
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1868
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1869
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1870
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1871
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1872
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1873
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1874
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1875
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1876
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1877
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1878
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1879
    "
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1880
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1881
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1882
reportOn:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1883
    "an error occured.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1884
     Report it via an Exception"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1885
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1886
    anErrorSymbolOrNumber isInteger ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1887
	StreamError
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1888
	    raiseRequestWith:anErrorSymbolOrNumber
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1889
	    errorString:(' - os error:' , (OperatingSystem errorTextForNumber:anErrorSymbolOrNumber))
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1890
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1891
    (self respondsTo:anErrorSymbolOrNumber) ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1892
	self perform:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1893
    ] ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1894
	StreamError
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1895
	    raiseRequestWith:anErrorSymbolOrNumber
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1896
	    errorString:(' - ' , anErrorSymbolOrNumber printString)
6269
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
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1901
!ExternalStream class methodsFor:'obsolete'!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1902
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1903
makePTYPair
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1904
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1905
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1906
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1907
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePTYPair'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1908
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1909
    ^ NonPositionableExternalStream makePTYPair.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1910
!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1911
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1912
makePipe
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1913
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1914
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1915
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1916
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePipe'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1917
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1918
    ^ NonPositionableExternalStream makePipe.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1919
! !
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1920
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1921
!ExternalStream methodsFor:'Compatibility-Dolphin'!
6474
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1922
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1923
beText
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1924
    self text
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1925
! !
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1926
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1927
!ExternalStream methodsFor:'Compatibility-Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1928
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1929
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1930
    "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
  1931
     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
  1932
     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
  1933
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1934
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1935
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1936
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1937
    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
  1938
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1939
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1940
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1941
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1942
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1943
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1944
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1945
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1946
     Squeak compatibility."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1947
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1948
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1949
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1950
    elementSize := aContainer class elementByteSize.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1951
    n := self nextBytes:nElements*elementSize into:aContainer startingAt:1.
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1952
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1953
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1954
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1955
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1956
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1957
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1958
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1959
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1960
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1961
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1962
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1963
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1964
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1965
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1966
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1967
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1968
    ^ self class invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1969
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1970
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1971
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1972
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1973
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1974
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1975
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1976
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1977
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1978
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1979
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1980
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1981
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1982
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1983
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1984
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1985
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1986
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1987
buffered:aBoolean
10
claus
parents: 5
diff changeset
  1988
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1989
10
claus
parents: 5
diff changeset
  1990
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1991
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1992
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1993
contents
2
claus
parents: 1
diff changeset
  1994
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  1995
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  1996
     the byte values is returned.
claus
parents: 1
diff changeset
  1997
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  1998
     is returned."
claus
parents: 1
diff changeset
  1999
claus
parents: 1
diff changeset
  2000
    |text l chunks sizes chunk byteCount cnt bytes offset|
claus
parents: 1
diff changeset
  2001
claus
parents: 1
diff changeset
  2002
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2003
	"adding to a ByteArray produces quadratic time-space
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2004
	 behavior - therefore we allocate chunks, and concatenate them
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2005
	 at the end."
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2006
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2007
	chunks := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2008
	sizes := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2009
	byteCount := 0.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2010
	[self atEnd] whileFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2011
	    chunk := ByteArray uninitializedNew:4096.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2012
	    cnt := self nextBytes:(chunk size) into:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2013
	    cnt notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2014
		chunks add:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2015
		sizes add:cnt.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2016
		byteCount := byteCount + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2017
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2018
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2019
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2020
	"now, create one big ByteArray"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2021
	bytes := ByteArray uninitializedNew:byteCount.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2022
	offset := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2023
	1 to:chunks size do:[:index |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2024
	    chunk := chunks at:index.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2025
	    cnt := sizes at:index.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2026
	    bytes replaceFrom:offset to:(offset + cnt - 1) with:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2027
	    offset := offset + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2028
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2029
	^ bytes
2
claus
parents: 1
diff changeset
  2030
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2031
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  2032
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2033
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2034
	l := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2035
	l isNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2036
	    ^ text
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2037
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2038
	text add:l
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2039
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2040
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2041
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2042
11751
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2043
contentsAsString
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2044
    "to compensate for the bad naming, use this to make things explicit.
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2045
     See also #contents, which returns the lines as stringCollection for textFiles."
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2046
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2047
    ^ self contentsOfEntireFile
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2048
!
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2049
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2050
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2051
    "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
  2052
     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
  2053
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2054
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2055
	^ self contents.
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2056
    ].
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2057
    ^ self upToEnd
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  2058
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  2059
    "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
  2060
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  2061
!
claus
parents: 1
diff changeset
  2062
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2063
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2064
    "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
  2065
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2066
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5431
diff changeset
  2067
    binary == true ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2068
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2069
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2070
    ^ String
2
claus
parents: 1
diff changeset
  2071
!
claus
parents: 1
diff changeset
  2072
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2073
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2074
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2075
     The argument may be one of:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2076
	#crlf         -> add a CR-NL, as in MSDOS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2077
	#cr           -> add a CR, as in VMS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2078
	#nl           -> add a NL, as in Unix
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2079
	anyOther      -> like #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2080
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2081
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2082
    eolMode := aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2083
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2084
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2085
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2086
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2087
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2088
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2089
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  2090
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2091
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2092
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2093
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2094
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2095
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2096
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2097
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2098
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2099
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2100
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2101
	    RETURN ( __MKINT(fileno(f)) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2102
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2103
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2104
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2105
    handle isNil ifTrue:[^ self errorNotOpen].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2106
    ^ self fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2107
!
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2108
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2109
fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2110
    "for migration to rel5 only:
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2111
     return the fileDescriptor of the argument handle -
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2112
     notice: this one returns the underlying OSs fileDescriptor -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2113
     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
  2114
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2115
    self primitiveFailed
612
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
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2118
fileHandle
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2119
    "return the fileHandle of the receiver.
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2120
     Under unix, this is the fileDescriptor; under windows, this is the Handle."
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2121
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2122
%{
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2123
    OBJ fp;
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2124
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2125
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2126
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2127
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2128
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2129
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2130
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2131
	    int fd;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2132
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2133
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2134
	    fd = fileno(f);
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2135
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2136
	    {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2137
		HANDLE h;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2138
		h = _get_osfhandle(fd);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2139
		RETURN (__MKEXTERNALADDRESS(h));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2140
	    }
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2141
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2142
	    RETURN ( __MKINT(fileno(f)) );
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2143
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2144
	}
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2145
    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2146
#ifdef WIN32
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2147
    if ((__INST(handleType) == @symbol(fileHandle)) || (__INST(handleType) == @symbol(socketHandle))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2148
	RETURN (__INST(handle));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2149
    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2150
#endif
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2151
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2152
    handle isNil ifTrue:[^ self errorNotOpen].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2153
    ^ self fileHandleOfFile:handle
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2154
!
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2155
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2156
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2157
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2158
     notice: for portability stdio is used; this means you will get
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2159
     a FILE * - not a fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2160
     (what you really get is a corresponding integer).
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2161
     You cannot do much with the returned value
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2162
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2163
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2164
    (handleType isNil or:[handleType == #filePointer]) ifTrue:[
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2165
	^ handle
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2166
    ].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2167
    ^ self error:'not a FILE*'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2168
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2169
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2170
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2171
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2172
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2173
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2174
lineEndTransparent
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2175
    eolMode := #cr
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2176
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2177
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2178
pathName
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2179
    "answer the pathName of the stream.
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2180
     Only FileStreams know the pathName, so we return an empty string here"
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2181
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2182
    ^ ''
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2183
!
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2184
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2185
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2186
    "set access mode to readonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2187
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2188
    mode := #readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2189
!
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
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2192
    "set access mode to readwrite"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2193
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2194
    mode := #readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2195
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2196
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2197
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2198
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2199
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2200
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2201
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2202
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2203
useCRLF:aBoolean
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2204
    "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
  2205
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2206
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2207
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2208
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2209
	eolMode := #crlf
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2210
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2211
	eolMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2212
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2213
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2214
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2215
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2216
    "set access mode to writeonly"
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
    mode := #writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2219
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2220
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2221
!ExternalStream methodsFor:'closing'!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2222
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2223
close
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2224
    "close the stream - tell operating system"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2225
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2226
    self isOpen ifTrue:[
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2227
	Lobby unregister:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2228
	self closeFile.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2229
    ]
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2230
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2231
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2232
shutDown
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2233
    "close the stream - added for protocol compatibility with PipeStream.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2234
     see comment there"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2235
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2236
    self isOpen ifTrue:[
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2237
	Lobby unregister:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2238
	self closeFile
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2239
    ]
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2240
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2241
    "Modified: 30.8.1996 / 00:39:21 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2242
! !
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2243
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2244
!ExternalStream methodsFor:'copying'!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2245
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2246
copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2247
    "answer a copy of myself.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2248
     Have to dup the filedescriptor"
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2249
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2250
    |copy|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2251
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2252
    copy := super copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2253
    copy dupFd.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2254
    Lobby register:copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2255
    ^ copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2256
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2257
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2258
       |stream1 stream2|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2259
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2260
       stream1 := Filename newTemporary writeStream.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2261
       stream2 := stream1 copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2262
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2263
       stream1 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2264
       stream2 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2265
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2266
! !
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2267
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2268
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2269
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2270
argumentMustBeCharacter
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2271
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2272
8209
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  2273
    "report an error, that the argument must be a character in 0..FF"
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  2274
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  2275
    ^ self error:'argument must be a single byte character'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2276
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2277
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2278
argumentMustBeInteger
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2279
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2280
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2281
    "report an error, that the argument must be an integer"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2282
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2283
    ^ self error:'argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2284
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2285
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2286
argumentMustBeString
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2287
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2288
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2289
    "report an error, that the argument must be a string"
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
    ^ self error:'argument must be a string'
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2292
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2293
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2294
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2295
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2296
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2297
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2298
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2299
    ^ OpenError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2300
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2301
	errorString:' - stream is already open'
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2302
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2303
    "
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2304
      self new errorAlreadyOpen
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2305
    "
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2306
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2307
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2308
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2309
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2310
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2311
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2312
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2313
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2314
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2315
    ^ InvalidModeError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2316
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2317
	errorString:(self class name , ' is in binary mode')
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2318
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2319
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2320
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2321
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2322
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2323
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2324
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2325
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2326
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2327
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2328
    ^ InvalidModeError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2329
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2330
	errorString:(self class name , ' is not in binary mode')
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2331
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2332
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2333
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2334
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2335
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2336
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2337
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2338
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2339
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2340
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2341
    ^ StreamError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2342
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2343
	errorString:(self class name , ' is unbuffered - operation not allowed')
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2344
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2345
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2346
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2347
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2348
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2349
errorNotOpen
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2350
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2351
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2352
    "report an error, that the stream has not been opened"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2353
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2354
    ^ StreamNotOpenError raiseRequestWith:self  "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2355
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2356
    "Modified: / 8.5.1999 / 20:12:33 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2357
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2358
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2359
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2360
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2361
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2362
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2363
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2364
    ^ InvalidWriteSignal raiseRequestWith:self "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2365
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2366
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2367
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2368
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2369
errorReporter
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2370
    "ST-80 mimicry."
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2371
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  2372
    ^ self class
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2373
!
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2374
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2375
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2376
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2377
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2378
    "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
  2379
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2380
    ^ InvalidOperationError raiseRequestWith:self  "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2381
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2382
    "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
  2383
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2384
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2385
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2386
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2387
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2388
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2389
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2390
    ^ InvalidReadError raiseRequestWith:self  "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2391
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2392
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2393
!
claus
parents: 1
diff changeset
  2394
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2395
ioError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2396
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2397
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2398
    "report an error, that some I/O error occured.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2399
     (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
  2400
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2401
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2402
    ^ StreamIOError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2403
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2404
	errorString:(' : ' , self lastErrorString)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2405
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2406
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2407
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2408
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2409
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2410
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2411
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2412
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2413
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2414
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2415
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2416
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2417
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2418
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2419
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2420
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2421
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2422
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2423
!
claus
parents: 1
diff changeset
  2424
10932
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2425
lastErrorSymbol
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2426
    "return an error symbol describing the last error"
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2427
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2428
    ^ OperatingSystem errorSymbolForNumber:lastErrorNumber
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2429
!
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2430
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2431
openError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2432
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2433
8007
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2434
    "/ for backward compatibility, use:
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2435
    "/ self class openErrorSignal isHandled ifFalse:[^ nil].
adfabcb563e0 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 7887
diff changeset
  2436
8008
e80739d6c312 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 8007
diff changeset
  2437
    "/ or even:
e80739d6c312 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 8007
diff changeset
  2438
    "/ ^ nil.
e80739d6c312 openError backWard compatibility.
Claus Gittinger <cg@exept.de>
parents: 8007
diff changeset
  2439
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2440
    "report an error, that the open failed"
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2441
    ^ OpenError
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2442
	raiseRequestWith:self
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2443
	errorString:(' : ' , self lastErrorString)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2444
	"/ in:thisContext sender
3235
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2445
cc254b307159 FileStream redefines #openErrorSignal.
Stefan Vogel <sv@exept.de>
parents: 3221
diff changeset
  2446
    "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
  2447
    "Modified: / 8.5.1999 / 20:12:12 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2448
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2449
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2450
readError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2451
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2452
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2453
    "report an error, that some read error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2454
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2455
    ^ ReadError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2456
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2457
	errorString:(' : ' , self lastErrorString)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2458
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2459
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2460
    "Modified: / 8.5.1999 / 20:12:00 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2461
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2462
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2463
writeError
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2464
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2465
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2466
    "report an error, that some write error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2467
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2468
    ^ WriteError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2469
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2470
	errorString:(' : ' , self lastErrorString)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2471
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2472
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2473
    "Modified: / 8.5.1999 / 20:12:09 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2474
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2475
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2476
!ExternalStream methodsFor:'finalization'!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2477
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2478
finalizationLobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2479
    "answer the registry used for finalization.
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2480
     ExternalStreams have their own Registry"
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2481
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2482
    ^ Lobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2483
!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2484
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2485
finalize
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2486
    "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
  2487
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2488
    self closeFile
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2489
! !
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2490
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2491
!ExternalStream methodsFor:'instance release'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2492
6441
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2493
executor
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2494
    "return a copy for finalization-registration;
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2495
     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
  2496
     a cheaper copy is possible."
2be4aa0d2991 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6305
diff changeset
  2497
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2498
    ^ self class basicNew setAccessor:handleType to:handle
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2499
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2500
2
claus
parents: 1
diff changeset
  2501
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2502
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2503
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2504
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2505
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2506
     If the previous-to-last character is a cr, this is also removed,
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2507
     so its possible to read alien (i.e. ms-dos) text as well.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2508
     The line must be shorter than 32K characters - otherwise an error is signalled."
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2509
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2510
    |line|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2511
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2512
%{  /* STACK:34000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2513
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2514
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2515
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2516
    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
  2517
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2518
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2519
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2520
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2521
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2522
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2523
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2524
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2525
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2526
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2527
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2528
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2529
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2530
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2531
	    && (__INST(binary) != true)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2532
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2533
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2534
	    buffer[0] = '\0';
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2535
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2536
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2537
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2538
		__READING__(f);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2539
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2540
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2541
	    rslt = nextPtr = buffer;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2542
	    limit = buffer + sizeof(buffer) - 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2543
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2544
	    for (;;) {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2545
		__READBYTE__(ret, f, nextPtr, _buffered, __INST(handleType));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2546
		if (ret <= 0) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2547
		    if (nextPtr == buffer)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2548
			rslt = NULL;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2549
		    if (ret == 0) {
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2550
			__INST(hitEOF) = true;
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2551
			break;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2552
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2553
			__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2554
			goto err;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2555
		    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2556
		}
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2557
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2558
		if (*nextPtr == '\n') {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2559
		    cutOff = 1;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2560
		    *nextPtr = '\0';
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2561
		    break;
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2562
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2563
		if (*nextPtr == '\r') {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2564
		    char peekChar;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2565
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2566
		    /*
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2567
		     * peek ahead for a newLine ...
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2568
		     */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2569
		    __READBYTE__(ret, f, &peekChar, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2570
		    if (ret <= 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2571
			cutOff = 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2572
			*nextPtr = '\0';
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2573
			if (ret == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2574
			    __INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2575
			    break;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2576
			}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2577
			__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2578
			goto err;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2579
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2580
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2581
		    if (peekChar == '\n') {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2582
			cutOff = 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2583
			*nextPtr = '\0';
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2584
			break;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2585
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2586
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2587
		    __UNGETC__(peekChar, f, _buffered);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2588
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2589
		    cutOff = 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2590
		    *nextPtr = '\0';
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2591
		    break;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2592
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2593
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2594
		nextPtr++;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2595
		if (nextPtr >= limit) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2596
		    *nextPtr = '\0';
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2597
		    lineTooLong = 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2598
		    if (@global(InfoPrinting) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2599
			fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2600
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2601
		    break;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2602
		}
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2603
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2604
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2605
	    if (rslt != NULL) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2606
		len = nextPtr-buffer;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2607
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2608
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2609
		    INT np = __intVal(__INST(position)) + len + cutOff;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2610
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2611
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2612
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2613
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2614
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2615
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2616
		/* remove any EOL character */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2617
		if (len != 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2618
		    if (buffer[len-1] == '\n') {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2619
			buffer[--len] = '\0';
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2620
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2621
		    if ((len != 0) && (buffer[len-1] == '\r')) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2622
			buffer[--len] = '\0';
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2623
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2624
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2625
		line = __MKSTRING_L(buffer, len);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2626
		if (! lineTooLong) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2627
		    RETURN ( line );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2628
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2629
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2630
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2631
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2632
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2633
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2634
    line notNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2635
	"/ the line as read is longer than 32k characters (boy - what a line)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2636
	"/ The exception could be handled by reading more and returning the
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2637
	"/ concatenation in your exception handler (the receiver and the partial
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2638
	"/ line are passed as parameter)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2639
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2640
	LineTooLongErrorSignal isHandled ifTrue:[
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2641
	    ^ LineTooLongErrorSignal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2642
		raiseRequestWith:(Array with:self with:line)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2643
		     errorString:('line too long read error')
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2644
	].
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2645
	^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2646
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2647
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  2648
    (hitEOF == true) ifTrue:[^ self pastEndRead].
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2649
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2650
    handle isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2651
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2652
    (binary == true) ifTrue:[^ self errorBinary].
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2653
    ^ super nextLine
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2654
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2655
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2656
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2657
    "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
  2658
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2659
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2660
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2661
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2662
    int len, cnt, len1, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2663
    OBJ fp;
537
dc4dad8a5ddd many ExtStream rewrites - has to be reevaluated in all platforms
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  2664
    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
  2665
    int o_offs;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2666
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2667
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2668
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2669
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2670
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2671
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2672
	if (((fp = __INST(handle)) != nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2673
	    && (__INST(mode) != @symbol(readonly))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2674
	    && (__INST(binary) != true)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2675
	    && __isStringLike(aString)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2676
	) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2677
	    f = __FILEVal(fp);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2678
	    len = __stringSize(aString);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2679
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2680
	    if (_buffered = (__INST(buffered) == true)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2681
		__WRITING__(f)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2682
	    }
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  2683
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2684
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2685
		cnt = __win32_fwrite(__stringVal(aString), 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2686
	    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2687
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2688
	    {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2689
		o_offs = (char *)__stringVal(aString)-(char *)aString;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2690
		__WRITEBYTES_OBJ__(cnt, f, aString, o_offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2691
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2692
	    if (cnt == len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2693
		OBJ mode = __INST(eolMode);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2694
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2695
		len1 = len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2696
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2697
		if (mode == @symbol(cr)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2698
		    cp = "\r"; len = 1;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2699
		} else if (mode == @symbol(crlf)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2700
		    cp = "\r\n"; len = 2;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2701
		} else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2702
		    cp = "\n"; len = 1;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2703
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2704
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2705
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2706
		    cnt = __win32_fwrite(cp, 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2707
		} else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2708
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2709
		{
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2710
		    __WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2711
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2712
		if (cnt > 0) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2713
		    if (__isSmallInteger(__INST(position))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2714
			INT np = __intVal(__INST(position)) + cnt;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2715
			OBJ t;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2716
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2717
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2718
		    } else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2719
			__INST(position) = nil; /* i.e. do not know */
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2720
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2721
		    RETURN ( self );
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2722
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2723
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2724
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2725
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2726
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2727
%}.
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2728
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2729
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2730
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2731
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2732
    "read from aStream up to and including a line starting with aStringOrNil
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2733
     and append all lines to self.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2734
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2735
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2736
     If aStringOrNil is nil or not matched, copy proceeds to the end."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2737
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2738
    |line|
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2739
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2740
    [aStream atEnd] whileFalse:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2741
	line := aStream nextLine.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2742
	line isNil ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2743
	    ^ self.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2744
	].
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2745
	self nextPutLine:line.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2746
	(aStringOrNil notNil and:[line startsWith:aStringOrNil]) ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2747
	    ^ self
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2748
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2749
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2750
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2751
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2752
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2753
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2754
     return the line-string if found, or nil if EOF is encountered.
7118
10b067555add *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7054
diff changeset
  2755
     If matched, do not advance position beyond that line
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2756
     i.e. nextLine will read the matched line.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2757
     If not matched, reposition to original position for further reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2758
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2759
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2760
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2761
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2762
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2763
    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
  2764
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2765
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2766
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2767
    [self atEnd] whileFalse:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2768
	lastPos := self position.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2769
	line := self nextLine.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2770
	line isNil ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2771
	    self position:firstPos.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2772
	    ^ nil
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2773
	].
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2774
	(line startsWith:aString) ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2775
	    self position:lastPos.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2776
	    ^ line
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2777
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2778
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2779
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2780
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2781
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2782
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2783
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2784
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2785
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2786
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2787
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2788
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2789
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2790
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2791
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2792
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2793
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2794
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2795
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2796
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2797
	linePos := self position.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2798
	line := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2799
	line notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2800
	    index := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2801
	    aCollectionOfStrings do:[:prefix |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2802
		(line startsWith:prefix) ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2803
		    self position:linePos.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2804
		    ^ index
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2805
		].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2806
		index := index + 1
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2807
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2808
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2809
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2810
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2811
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2812
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2813
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2814
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2815
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2816
async:aBoolean
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2817
    "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
  2818
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2819
     If cleared (which is the default) no special notification is made.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2820
     Notice:
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2821
	not every OS supports this
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2822
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2823
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2824
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2825
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2826
    handle isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2827
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2828
    OperatingSystem supportsIOInterrupts ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2829
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2830
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2831
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2832
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2833
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2834
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2835
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2836
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2837
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2838
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2839
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2840
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2841
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2842
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2843
     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
  2844
     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
  2845
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2846
     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
  2847
     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
  2848
     in advance. However, the data must then be read using #nextBytes:
8616
6014ed5c67f9 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8614
diff changeset
  2849
     methods, in order to avoid other (pastEndRead) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2850
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2851
    handle isNil ifTrue:[^ self errorNotOpen].
7499
53b7a86e1f0b ExternalStream>>blocking: returns previous blocking status
Stefan Vogel <sv@exept.de>
parents: 7497
diff changeset
  2852
    ^ 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
  2853
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2854
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2855
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2856
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2857
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2858
copyToEndInto:outStream
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2859
    "copy the data into another stream."
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2860
8362
e17d9ffb6fa8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8339
diff changeset
  2861
    |bufferSize|
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2862
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2863
    OperatingSystem isMSDOSlike ifTrue:[
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2864
	"/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2865
	bufferSize := 1 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2866
    ] ifFalse:[
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2867
	bufferSize := 8 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2868
    ].
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2869
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2870
    ^ self copyToEndInto:outStream bufferSize:bufferSize
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2871
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2872
    "
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2873
     |in out|
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2874
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2875
     in := 'Makefile' asFilename readStream.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2876
     out := Stdout.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2877
     in copyToEndInto:out.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2878
     in close.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2879
    "
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2880
!
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2881
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2882
create
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2883
    "create the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2884
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2885
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2886
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2887
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2888
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2889
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2890
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2891
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2892
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2893
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2894
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2895
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2896
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2897
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2898
     on the underlying file; the argument is passed as argument.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2899
     This is not used by ST/X, but provided for special situations
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2900
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2901
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2902
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2903
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2904
     If the argument is nil, an ioctl without argument is performed.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2905
     If the argument is an integral number, its directly passed;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2906
     if its a kind of ByteArray (ByteArray, String or Structure),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2907
     or external data (ExternalBytes or ExternalAddress),
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2908
     a pointer to the data is passed.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2909
     This allows performing most ioctls
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2910
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2911
     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
  2912
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2913
%{
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2914
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2915
    FILEPOINTER f;
10552
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  2916
    int ret;
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  2917
    unsigned int ioNum;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2918
    OBJ fp;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2919
    INT ioArg;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2920
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2921
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2922
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2923
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2924
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2925
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2926
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2927
	    if (__isInteger(ioctlNumber)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2928
	     && (__isInteger(arg)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2929
		 || (arg == nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2930
		 || __isBytes(arg)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2931
		 || __isExternalBytesLike(arg)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2932
		 || __isExternalAddress(arg))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2933
		f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2934
		ioNum = __unsignedLongIntVal(ioctlNumber);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2935
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2936
		__BEGIN_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2937
		do {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2938
		    __threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2939
		    if (arg == nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2940
			ioArg = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2941
		    } else if (__isSmallInteger(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2942
			ioArg = __intVal(arg);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2943
		    } else if (__isInteger(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2944
			ioArg = __unsignedLongIntVal(arg);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2945
		    } else if (__isExternalBytesLike(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2946
			ioArg = (INT)(__externalBytesAddress(arg));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2947
		    } else if (__isExternalAddress(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2948
			ioArg = (INT)(__externalAddressVal(arg));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2949
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2950
			ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2951
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2952
		    ret = ioctl(fileno(f), ioNum, ioArg);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2953
		} while ((ret < 0) && (__threadErrno == EINTR));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2954
		__END_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2955
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2956
		if (ret >= 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2957
		    RETURN ( __mkSmallInteger(ret) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2958
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2959
		__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2960
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2961
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2962
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2963
    }
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  2964
#endif
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2965
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2966
    lastErrorNumber notNil ifTrue:[^ self ioError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2967
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2968
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2969
     argument is not an integer
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2970
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2971
    (ioctlNumber isMemberOf:SmallInteger) ifFalse:[^ self primitiveFailed].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2972
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2973
     the system does not support ioctl (MSDOS or VMS)
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2974
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2975
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2976
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2977
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2978
reset
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2979
    "set the read position to the beginning of the collection"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2980
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2981
    self position:ZeroPosition
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2982
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2983
1044
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2984
setToEnd
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2985
    "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
  2986
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2987
    ^ self subclassResponsibility
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2988
!
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  2989
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2990
sync
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2991
    "make sure, that the OS writes cached data to the disk"
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2992
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2993
%{
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2994
#if !defined(__openVMS__)
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2995
    FILEPOINTER f;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2996
    int ret;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2997
    OBJ fp;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2998
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  2999
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3000
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3001
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3002
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3003
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3004
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3005
	    f = __FILEVal(fp);
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3006
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3007
	    __threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3008
	    ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fileno(f)));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3009
	    if (ret) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3010
		RETURN (self);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3011
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3012
#else
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3013
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3014
	    __BEGIN_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3015
	    do {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3016
		__threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3017
		ret = fsync(fileno(f));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3018
	    } while ((ret < 0) && (__threadErrno == EINTR));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3019
	    __END_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3020
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3021
	    if (ret >= 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3022
		RETURN (self);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3023
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3024
#endif /* ! WIN32 */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3025
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3026
	}
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3027
    }
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3028
#endif /* ! __openVMS__ */
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3029
%}.
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3030
    lastErrorNumber notNil ifTrue:[^ self ioError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3031
    handle isNil ifTrue:[^ self errorNotOpen].
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3032
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3033
    "
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3034
	|f|
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3035
	f := 'x' asFilename writeStream.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3036
	f nextPutAll:'hallo'; sync; syncData; close
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3037
    "
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3038
!
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3039
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3040
syncData
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3041
    "make sure, that the OS writes cached data to the disk.
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3042
     In this case, metadata is only written, if it is
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3043
     required to read the file's data (so metadata will not be written,
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3044
     if only access/modification time has changed)."
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3045
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3046
%{
12552
2c4fd3d0b31b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12548
diff changeset
  3047
#if !defined(__openVMS__) && !defined(solaris2_0) && !defined(FREEBSD)
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3048
    int ret;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3049
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3050
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3051
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3052
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3053
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3054
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3055
	OBJ fp;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3056
	FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3057
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3058
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3059
	    f = __FILEVal(fp);
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3060
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3061
	    __threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3062
	    ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fileno(f)));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3063
	    if (ret) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3064
		RETURN (self);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3065
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3066
#else
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3067
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3068
	    __BEGIN_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3069
	    do {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3070
		__threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3071
		ret = fdatasync(fileno(f));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3072
	    } while ((ret < 0) && (__threadErrno == EINTR));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3073
	    __END_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3074
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3075
	    if (ret >= 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3076
		RETURN (self);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3077
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3078
#endif /* ! WIN32 */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3079
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3080
	}
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3081
    }
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3082
#endif /* ! __openVMS__ */
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3083
%}.
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3084
    lastErrorNumber notNil ifTrue:[^ self ioError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3085
    handle isNil ifTrue:[^ self errorNotOpen].
11651
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3086
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3087
    "
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3088
	|f|
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3089
	f := 'x' asFilename writeStream.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3090
	f nextPutAll:'hallo'; sync; syncData; close
11651
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3091
    "
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3092
!
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3093
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3094
truncateTo:newSize
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3095
    "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
  3096
     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
  3097
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  3098
%{
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3099
#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
  3100
    FILEPOINTER f;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3101
    OBJ fp;
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3102
    off_t truncateSize;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3103
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3104
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3105
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3106
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3107
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3108
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3109
	    && (__INST(mode) != @symbol(readonly))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3110
	    if (__isSmallInteger(newSize)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3111
		truncateSize = __intVal(newSize);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3112
		if (truncateSize < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3113
		    goto getOutOfHere;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3114
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3115
	    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3116
		truncateSize = __signedLongIntVal(newSize);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3117
		if (truncateSize < 0) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3118
		    goto getOutOfHere;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3119
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3120
		if (truncateSize == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3121
		    if (sizeof(truncateSize) == 8) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3122
			if (__signedLong64IntVal(newSize, &truncateSize) == 0 || truncateSize < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3123
			    goto getOutOfHere;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3124
			}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3125
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3126
			goto getOutOfHere;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3127
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3128
		}
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3129
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3130
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3131
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3132
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3133
	    if (__INST(buffered) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3134
		__READING__(f)
10352
f2e9bb8906db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  3135
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3136
		if ((dst == __win32_stdout()) || (dst == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3137
		    win32_fflush(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3138
		} else
10352
f2e9bb8906db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  3139
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3140
		{
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3141
		    FFLUSH(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3142
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3143
		OPT_FSEEK(f, 0L, SEEK_END); /* needed in stdio */
10352
f2e9bb8906db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  3144
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3145
	    ftruncate(fileno(f), truncateSize);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3146
	    RETURN (self);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3147
	}
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3148
    }
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3149
getOutOfHere: ;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3150
#endif
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3151
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3152
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3153
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3154
    newSize < 0 ifTrue:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3155
	self error:'wrong arg'.
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3156
    ].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3157
    self errorUnsupportedOperation
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3158
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3159
    "
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3160
     |s|
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3161
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3162
     s := 'test' asFilename writeStream.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3163
     s next:1000 put:$a.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3164
     s truncateTo:100.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3165
     s close.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3166
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3167
     ('test' asFilename fileSize) printNL
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3168
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3169
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3170
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3171
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3172
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3173
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3174
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3175
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3176
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3177
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3178
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3179
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3180
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3181
    binary ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3182
	buffer := ByteArray uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3183
    ] ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3184
	buffer := String uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3185
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3186
    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
  3187
    n == 0 ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3188
	binary ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3189
	    ^ #[]
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3190
	].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3191
	^ ''
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3192
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3193
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3194
    n ~~ count ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3195
	^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3196
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3197
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3198
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3199
    "
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3200
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:3
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3201
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3202
     (ReadStream on:'hello') nextAvailable:3
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3203
     (ReadStream on:'hello') nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3204
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3205
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3206
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3207
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3208
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3209
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3210
    "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
  3211
     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
  3212
     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
  3213
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3214
     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
  3215
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3216
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3217
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3218
     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
  3219
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3220
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3221
     The object must have non-pointer indexed instvars
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3222
     (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
  3223
     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
  3224
     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
  3225
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3226
     Use with care - non object oriented I/O.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3227
     Warning: in general, you cannot use this method to pass data from other
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3228
     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
  3229
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3230
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3231
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3232
    int cnt, offs, ret, _buffered;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3233
    int objSize, nInstVars, nInstBytes;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3234
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3235
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3236
    OBJ fp;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3237
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3238
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3239
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3240
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3241
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3242
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3243
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3244
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3245
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3246
	    && __bothSmallInteger(count, start)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3247
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3248
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3249
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3250
	    cnt = __intVal(count);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3251
	    offs = __intVal(start) - 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3252
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3253
	    if (__isExternalBytesLike(anObject)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3254
		OBJ sz;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3255
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3256
		nInstBytes = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3257
		extPtr = (char *)(__externalBytesAddress(anObject));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3258
		sz = __externalBytesSize(anObject);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3259
		if (__isSmallInteger(sz)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3260
		    objSize = __intVal(sz);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3261
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3262
		    objSize = 0; /* unknown */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3263
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3264
	    } else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3265
		OBJ oClass;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3266
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3267
		oClass = __Class(anObject);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3268
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3269
		    case BYTEARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3270
		    case WORDARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3271
		    case LONGARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3272
		    case SWORDARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3273
		    case SLONGARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3274
		    case FLOATARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3275
		    case DOUBLEARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3276
			break;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3277
		    default:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3278
			goto bad;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3279
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3280
		extPtr = (char *)0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3281
		nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3282
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3283
		objSize = __Size(anObject) - nInstBytes;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3284
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3285
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3286
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3287
		_buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3288
		if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3289
		    __READING__(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3290
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3291
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3292
		if (extPtr) {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3293
		    __READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3294
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3295
		    /*
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3296
		     * on interrupt, anObject may be moved to another location.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3297
		     * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3298
		     * to get a new address.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3299
		     */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3300
		    offs += nInstBytes;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3301
		    __READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3302
		}
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3303
#ifdef PRE_22_jan_2000
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3304
		if (ret > 0)
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3305
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3306
		/* 0 is NOT an EOF condition here ... */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3307
		if (ret >= 0)
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3308
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3309
		{
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3310
		    if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3311
			INT np = __intVal(__INST(position)) + ret;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3312
			OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3313
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3314
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3315
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3316
			__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3317
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3318
		    RETURN (__mkSmallInteger(ret));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3319
		}
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3320
#ifdef PRE_22_jan_2000
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3321
		if (ret == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3322
		    __INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3323
		} else /* ret < 0 */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3324
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3325
		{
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3326
		    __INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3327
		    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3328
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3329
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3330
	}
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3331
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3332
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3333
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3334
    (hitEOF and:[self pastEndRead isNil]) ifTrue:[^ 0].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3335
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3336
    handle isNil ifTrue:[^ self errorNotOpen].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3337
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3338
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3339
     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
  3340
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3341
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3342
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3343
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3344
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3345
    "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
  3346
     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
  3347
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3348
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3349
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3350
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3351
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3352
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3353
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3354
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3355
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3356
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3357
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3358
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3359
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3360
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3361
	 && (__INST(mode) != @symbol(writeonly))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3362
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3363
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3364
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3365
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3366
		__READING__(f)
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3367
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3368
	    __READBYTE__(ret, f, &byte, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3369
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3370
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3371
		    INT np = __intVal(__INST(position)) + 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3372
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3373
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3374
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3375
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3376
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3377
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3378
		RETURN (__mkSmallInteger(byte));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3379
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3380
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3381
	    if (ret == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3382
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3383
	    } else /* ret < 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3384
		__INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3385
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3386
	    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3387
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3388
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3389
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3390
    hitEOF ifTrue:[^ self pastEndRead].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3391
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3392
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3393
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3394
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3395
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3396
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3397
    "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
  3398
     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
  3399
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3400
     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
  3401
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3402
     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
  3403
     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
  3404
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3405
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3406
     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
  3407
     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
  3408
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3409
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3410
     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
  3411
     (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
  3412
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3413
     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
  3414
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3415
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3416
     Use with care - non object oriented I/O.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3417
     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
  3418
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3419
     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
  3420
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3421
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3422
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3423
    int cnt, offs, ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3424
    int objSize, nInstVars, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3425
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3426
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3427
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3428
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3429
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3430
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3431
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3432
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3433
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3434
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3435
	    && __bothSmallInteger(count, start)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3436
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3437
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3438
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3439
	    cnt = __intVal(count);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3440
	    offs = __intVal(start) - 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3441
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3442
	    if (__isExternalBytesLike(anObject)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3443
		OBJ sz;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3444
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3445
		nInstBytes = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3446
		extPtr = (char *)(__externalBytesAddress(anObject));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3447
		sz = __externalBytesSize(anObject);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3448
		if (__isSmallInteger(sz)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3449
		    objSize = __intVal(sz);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3450
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3451
		    objSize = 0; /* unknown */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3452
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3453
	    } else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3454
		OBJ oClass;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3455
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3456
		oClass = __Class(anObject);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3457
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3458
		    case BYTEARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3459
		    case WORDARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3460
		    case LONGARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3461
		    case SWORDARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3462
		    case SLONGARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3463
		    case FLOATARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3464
		    case DOUBLEARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3465
			break;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3466
		    default:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3467
			goto bad;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3468
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3469
		extPtr = (char *)0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3470
		nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3471
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3472
		objSize = __Size(anObject) - nInstBytes;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3473
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3474
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3475
		_buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3476
		if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3477
		    __READING__(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3478
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3479
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3480
		if (extPtr) {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3481
		    __READBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3482
		} else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3483
		    /*
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3484
		     * on interrupt, anObject may be moved to another location.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3485
		     * So we pass anObject, and the offset to the __READBYTES_OBJ__ macro.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3486
		     */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3487
		    offs += nInstBytes;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3488
		    __READBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3489
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3490
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3491
		if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3492
		    if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3493
			INT np = __intVal(__INST(position)) + ret;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3494
			OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3495
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3496
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3497
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3498
			__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3499
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3500
		    RETURN (__mkSmallInteger(ret));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3501
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3502
		if (ret == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3503
		    __INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3504
		} else /* ret < 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3505
		    __INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3506
		    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3507
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3508
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3509
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3510
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3511
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3512
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3513
    (hitEOF and:[self pastEndRead isNil]) ifTrue:[^ 0].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3514
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3515
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3516
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3517
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3518
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3519
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3520
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3521
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3522
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3523
nextLong
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3524
    "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
  3525
     The returned value may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3526
     (msb-first for compatibility with other smalltalks)"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3527
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3528
    ^ self nextUnsignedLongMSB:true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3529
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3530
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3531
nextLongMSB:msbFlag
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3532
    "Read four bytes and return the value as a 32-bit signed Integer,
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3533
     which may be a LargeInteger.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3534
     If msbFlag is true, value is read with most-significant byte first,
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3535
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3536
     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
  3537
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3538
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3539
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3540
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3541
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3542
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3543
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3544
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3545
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3546
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3547
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3548
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3549
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3550
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3551
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3552
	    int value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3553
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3554
		unsigned char buffer[4];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3555
		int intVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3556
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3557
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3558
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3559
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3560
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3561
		__READING__(f)
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3562
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3563
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3564
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3565
	    if (ret == 4) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3566
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3567
		    INT np = __intVal(__INST(position)) + 4;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3568
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3569
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3570
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3571
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3572
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3573
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3574
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3575
#if defined(__MSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3576
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3577
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3578
		    value = (u.buffer[0] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3579
		    value = (value << 8) | (u.buffer[1] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3580
		    value = (value << 8) | (u.buffer[2] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3581
		    value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3582
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3583
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3584
#if defined(__LSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3585
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3586
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3587
		    value = (u.buffer[3] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3588
		    value = (value << 8) | (u.buffer[2] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3589
		    value = (value << 8) | (u.buffer[1] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3590
		    value = (value << 8) | (u.buffer[0] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3591
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3592
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3593
#if __POINTER_SIZE__ == 8
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3594
		RETURN ( __mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3595
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3596
		if ((value >= _MIN_INT) && (value <= _MAX_INT)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3597
		    RETURN ( __mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3598
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3599
		RETURN ( __MKLARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3600
#endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3601
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3602
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3603
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3604
		__INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3605
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3606
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3607
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3608
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
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
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3612
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3613
    handle isNil ifTrue:[^ self errorNotOpen].
612
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.
362
claus
parents: 360
diff changeset
  3616
!
claus
parents: 360
diff changeset
  3617
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3618
nextShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3619
    "Read two bytes and return the value as a 16-bit signed Integer.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3620
     If msbFlag is true, value is read with most-significant byte first,
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3621
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3622
     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
  3623
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3624
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3625
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3626
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3627
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3628
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3629
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3630
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3631
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3632
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3633
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3634
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3635
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3636
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3637
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3638
	    short value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3639
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3640
		unsigned char buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3641
		short shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3642
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3643
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3644
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3645
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3646
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3647
		__READING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3648
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3649
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3650
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3651
	    if (ret == 2) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3652
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3653
		    INT np = __intVal(__INST(position)) + 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3654
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3655
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3656
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3657
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3658
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3659
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3660
		if (msbFlag == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3661
#if defined(__MSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3662
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3663
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3664
		    value = ((u.buffer[0] & 0xFF) << 8) | (u.buffer[1] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3665
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3666
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3667
#if defined(__LSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3668
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3669
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3670
		    value = ((u.buffer[1] & 0xFF) << 8) | (u.buffer[0] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3671
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3672
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3673
		RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3674
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3675
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3676
	    if (ret < 0) {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3677
		__INST(position) = nil; /* i.e. do not know */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3678
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3679
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3680
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3681
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3682
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3683
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3684
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3685
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3686
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3687
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3688
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3689
!
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
nextUnsignedLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3692
    "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
  3693
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3694
     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
  3695
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3696
     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
  3697
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3698
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3699
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3700
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3701
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3702
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3703
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3704
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3705
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3706
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3707
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3708
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3709
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3710
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3711
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3712
	    unsigned INT value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3713
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3714
		unsigned char buffer[4];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3715
		unsigned int intVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3716
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3717
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3718
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3719
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3720
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3721
		__READING__(f)
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3722
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3723
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3724
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3725
	    if (ret == 4) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3726
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3727
		    INT np = __intVal(__INST(position)) + 4;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3728
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3729
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3730
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3731
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3732
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3733
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3734
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3735
#if defined(__MSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3736
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3737
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3738
		    value = u.buffer[0];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3739
		    value = (value << 8) | u.buffer[1];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3740
		    value = (value << 8) | u.buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3741
		    value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3742
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3743
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3744
#if defined(__LSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3745
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3746
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3747
		    value = u.buffer[3];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3748
		    value = (value << 8) | u.buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3749
		    value = (value << 8) | u.buffer[1];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3750
		    value = (value << 8) | u.buffer[0];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3751
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3752
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3753
#if __POINTER_SIZE__ == 8
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3754
		value &= 0xFFFFFFFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3755
		RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3756
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3757
		if (value <= _MAX_INT) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3758
		    RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3759
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3760
		RETURN (__MKULARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3761
#endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3762
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3763
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3764
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3765
		__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3766
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3767
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3768
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3769
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3770
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3771
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3772
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3773
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3774
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3775
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3776
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3777
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3778
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3779
nextUnsignedShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3780
    "Read two bytes and return the value as a 16-bit unsigned Integer.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3781
     If msbFlag is true, value is read with most-significant byte first,
1079
d47cd86b487b Make methods signal-proof.
Stefan Vogel <sv@exept.de>
parents: 1068
diff changeset
  3782
     otherwise least-significant byte comes first.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3783
     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
  3784
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3785
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3786
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3787
    OBJ fp;
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;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3790
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3791
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3792
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3793
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3794
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3795
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3796
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3797
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3798
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3799
	    unsigned int value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3800
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3801
		unsigned char buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3802
		unsigned short shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3803
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3804
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3805
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3806
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3807
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3808
		__READING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3809
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3810
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3811
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3812
	    if (ret == 2) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3813
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3814
		    INT np = __intVal(__INST(position)) + 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3815
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3816
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3817
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3818
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3819
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3820
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3821
		if (msbFlag == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3822
#if defined(__MSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3823
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3824
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3825
		    value = (u.buffer[0] << 8) | u.buffer[1];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3826
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3827
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3828
#if defined(__LSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3829
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3830
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3831
		    value = (u.buffer[1] << 8) | u.buffer[0];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3832
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3833
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3834
		RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3835
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3836
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3837
	    if (ret < 0) {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3838
		__INST(position) = nil; /* i.e. do not know */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3839
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3840
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3841
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3842
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3843
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3844
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3845
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3846
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3847
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3848
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3849
    ^ self readError.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3850
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3851
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3852
nextWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3853
    "in text-mode:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3854
	 read the alphaNumeric next word (i.e. up to non letter-or-digit).
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3855
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3856
     in binary-mode:
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3857
	 read two bytes (msb-first) and return the value as a 16-bit
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3858
	 unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3859
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3860
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  3861
	^ self nextUnsignedShortMSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3862
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3863
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3864
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3865
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3866
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3867
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3868
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3869
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3870
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3871
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3872
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3873
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3874
    char c;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3875
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3876
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3877
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3878
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3879
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3880
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3881
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3882
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3883
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3884
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3885
	    && __isSmallInteger(aByteValue)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3886
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3887
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3888
	    c = __intVal(aByteValue);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3889
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3890
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3891
		__WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3892
	    }
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  3893
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3894
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3895
		cnt = __win32_fwrite(&c, 1, 1, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3896
	    } else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  3897
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3898
	    {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3899
		__WRITEBYTE__(cnt, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3900
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3901
	    if (cnt == 1) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3902
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3903
		    INT np = __intVal(__INST(position)) + 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3904
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3905
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3906
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3907
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3908
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3909
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3910
		RETURN (self);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3911
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3912
	    if (cnt < 0) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3913
		__INST(position) = nil; /* i.e. do not know */
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3914
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3915
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3916
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3917
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3918
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3919
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  3920
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3921
    self writeError.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3922
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3923
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3924
nextPutBytes:count from:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3925
    "write count bytes from an object starting at index start.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3926
     return the number of bytes written - which could be 0.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3927
     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
  3928
     (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
  3929
     or an externalBytes object (with known size).
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3930
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3931
     Use with care - non object oriented i/o.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3932
     Warning:
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3933
	in general, you cannot use this method to pass non-byte data to other
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3934
	architectures (unless you prepared the buffer with care),
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3935
	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
  3936
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3937
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3938
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3939
    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
  3940
    int objSize, nInstVars, nInstBytes, _buffered;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3941
    char *extPtr;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  3942
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3943
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3944
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3945
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3946
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3947
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3948
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3949
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3950
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3951
	    && __bothSmallInteger(count, start)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3952
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3953
	    len = __intVal(count);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3954
	    offs = __intVal(start) - 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3955
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3956
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3957
	    if (__isExternalBytesLike(anObject)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3958
		OBJ sz;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3959
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3960
		nInstBytes = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3961
		extPtr = (char *)__externalBytesAddress(anObject);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3962
		sz = __externalBytesSize(anObject);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3963
		if (__isSmallInteger(sz)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3964
		    objSize = __intVal(sz);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3965
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3966
		    objSize = 0; /* unknown */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3967
		}
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3968
	    } else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3969
		OBJ oClass;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3970
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3971
		oClass = __Class(anObject);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3972
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3973
		    case BYTEARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3974
		    case WORDARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3975
		    case LONGARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3976
		    case SWORDARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3977
		    case SLONGARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3978
		    case FLOATARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3979
		    case DOUBLEARRAY:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3980
			break;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3981
		    default:
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3982
			goto bad;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3983
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3984
		extPtr = (char *)0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3985
		nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3986
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3987
		objSize = __Size(anObject) - nInstBytes;
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3988
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3989
	    if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3990
		if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3991
		    __WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3992
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3993
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3994
		if (extPtr) {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3995
		    __WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3996
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3997
		    /*
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3998
		     * on interrupt, anObject may be moved to another location.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3999
		     * So we pass anObject, and the offset to the __WRITEBYTES_OBJ__ macro.
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4000
		     */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4001
		    offs += nInstBytes;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4002
		    __WRITEBYTES_OBJ__(cnt, f, anObject, offs, len, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4003
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4004
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4005
		if (cnt >= 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4006
		    if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4007
			INT np = __intVal(__INST(position)) + cnt;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4008
			OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4009
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4010
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4011
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4012
			__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4013
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4014
		    RETURN ( __mkSmallInteger(cnt) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4015
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4016
		if (
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4017
#ifdef EWOULDBLOCK
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4018
		    (__threadErrno == EWOULDBLOCK) ||
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4019
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4020
		    (__threadErrno == EAGAIN)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4021
		) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4022
		    RETURN ( __mkSmallInteger(0) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4023
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4024
		__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4025
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4026
	    }
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4027
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4028
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4029
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4030
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4031
    lastErrorNumber notNil ifTrue:[^ self writeError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4032
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4033
    (mode == #readonly) ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4034
    ^ self primitiveFailed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4035
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4036
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4037
nextPutLong:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4038
    "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
  4039
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4040
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4041
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4042
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4043
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4044
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4045
    union {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4046
	char bytes[4];
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4047
	int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4048
    } u;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4049
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4050
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4051
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4052
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4053
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4054
    if (__isSmallInteger(aNumber)) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4055
	num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4056
    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4057
#if __POINTER_SIZE__ == 8
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4058
	goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4059
#else
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4060
	num = __longIntVal(aNumber);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4061
	if (num == 0) {
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4062
	    num = __signedLongIntVal(aNumber);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4063
	    if (num == 0) {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4064
		/* bad arg or out-of-range integer
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4065
		 * (handled by the fallBack code)
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4066
		 */
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4067
		goto badArg;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4068
	    }
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4069
	}
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4070
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4071
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4072
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4073
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4074
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4075
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4076
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4077
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4078
	 && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4079
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4080
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4081
#if defined(__MSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4082
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4083
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4084
		u.bytes[0] = (num >> 24) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4085
		u.bytes[1] = (num >> 16) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4086
		u.bytes[2] = (num >> 8) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4087
		u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4088
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4089
	    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4090
#if defined(__LSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4091
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4092
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4093
		u.bytes[3] = (num >> 24) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4094
		u.bytes[2] = (num >> 16) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4095
		u.bytes[1] = (num >> 8) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4096
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4097
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4098
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4099
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4100
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4101
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4102
		__WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4103
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4104
	    __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4105
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4106
	    if (cnt == 4) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4107
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4108
		    INT np = __intVal(__INST(position)) + 4;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4109
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4110
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4111
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4112
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4113
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4114
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4115
		RETURN ( self );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4116
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4117
	    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4118
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4119
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4120
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4121
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4122
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4123
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4124
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4125
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4126
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4127
    aNumber isInteger ifTrue:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4128
	^ super nextPutLong:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4129
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4130
    self argumentMustBeInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4131
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4132
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4133
nextPutShort:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4134
    "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
  4135
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4136
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4137
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4138
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4139
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4140
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4141
    union {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4142
	char bytes[2];
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4143
	short shortVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4144
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4145
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4146
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4147
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4148
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4149
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4150
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4151
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4152
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4153
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4154
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4155
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4156
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4157
	    && __isSmallInteger(aNumber)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4158
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4159
	    num = __intVal(aNumber);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4160
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4161
#if defined(__MSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4162
		u.shortVal = num;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4163
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4164
		u.bytes[0] = (num >> 8) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4165
		u.bytes[1] = num & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4166
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4167
	    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4168
#if defined(__LSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4169
		u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4170
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4171
		u.bytes[1] = (num >> 8) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4172
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4173
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4174
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4175
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4176
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4177
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4178
		__WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4179
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4180
	    __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4181
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4182
	    if (cnt == 2) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4183
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4184
		    INT np = __intVal(__INST(position)) + 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4185
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4186
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4187
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4188
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4189
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4190
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4191
		RETURN ( self );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4192
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4193
	    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4194
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4195
	}
612
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
%}.
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4198
    lastErrorNumber notNil ifTrue:[self writeError. ^ self.].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4199
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4200
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4201
    self argumentMustBeInteger
10
claus
parents: 5
diff changeset
  4202
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4203
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4204
!ExternalStream methodsFor:'positioning'!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4205
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4206
position0Based
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4207
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4208
!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4209
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4210
position0Based:index0Based
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4211
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4212
! !
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4213
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4214
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4215
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4216
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4217
    hitEOF := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4218
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4219
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4220
!ExternalStream protectedMethodsFor:'private'!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4221
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4222
closeFile
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4223
    "low level close - may be redefined in subclasses
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4224
     Don't send this message, send #close instead"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4225
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4226
    |fp|
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4227
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4228
%{
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4229
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4230
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4231
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4232
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4233
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4234
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4235
	    int rslt;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4236
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4237
	    __INST(handle) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4238
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4239
	    if (@global(FileOpenTrace) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4240
		fprintf(stderr, "fclose [ExternalStream] %x\n", f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4241
	    }
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4242
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4243
	    do {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4244
		__threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4245
		rslt = __STX_C_CALL1("fclose", fclose, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4246
	    } while((rslt < 0) && (__threadErrno == EINTR));
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4247
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4248
	    __BEGIN_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4249
	    fclose(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4250
	    __END_INTERRUPTABLE__
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4251
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4252
	}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4253
	RETURN (self);
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4254
    }
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4255
%}.
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4256
    "/ fallback for rel5
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4257
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4258
    fp := handle.
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4259
    fp notNil ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4260
	handle := nil.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4261
	self closeFile:fp
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4262
    ]
8472
5e8d452b5d75 Mark methods as private
Stefan Vogel <sv@exept.de>
parents: 8471
diff changeset
  4263
! !
5e8d452b5d75 Mark methods as private
Stefan Vogel <sv@exept.de>
parents: 8471
diff changeset
  4264
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4265
!ExternalStream methodsFor:'private'!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4266
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4267
closeFile:handle
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4268
    "for rel5 only"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4269
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4270
    self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4271
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4272
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4273
connectTo:aFileDescriptor withMode:openmode
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4274
    "connect a fileDescriptor; openmode is the string defining the way to open.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4275
     This can be used to connect an externally provided fileDescriptor (from
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4276
     primitive code) or a pipeFileDescriptor (as returned by makePipe) to
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4277
     a Stream object.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4278
     The openMode ('r', 'w' etc.) must match the mode in which
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4279
     the fileDescriptor was originally opened (otherwise i/o errors will be reported later)."
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4280
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4281
    |retVal|
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4282
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4283
    handle notNil ifTrue:[^ self errorAlreadyOpen].
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4284
%{
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4285
    FILEPOINTER f;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4286
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4287
    FILE *fdopen();
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4288
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4289
    if (__isSmallInteger(aFileDescriptor) && __isStringLike(openmode)) {
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4290
	f = (FILEPOINTER) fdopen(__intVal(aFileDescriptor), (char *)__stringVal(openmode));
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4291
	if (f == NULL) {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4292
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4293
	    __INST(position) = nil;
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4294
	} else {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4295
	    if (@global(FileOpenTrace) == true) {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4296
		fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", __intVal(aFileDescriptor), f);
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4297
	    }
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4298
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4299
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4300
	    __INST(handleType) = @symbol(filePointer);
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4301
	    __INST(position) = @global(PositionableStream:ZeroPosition);
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4302
	    retVal = self;
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4303
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4304
    }
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4305
%}.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4306
    retVal notNil ifTrue:[
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4307
	buffered := true.       "default is buffered"
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4308
	Lobby register:self
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4309
    ].
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4310
    lastErrorNumber notNil ifTrue:[
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4311
	"
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4312
	 the open failed for some reason ...
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4313
	"
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4314
	^ self openError
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4315
    ].
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4316
    ^ retVal
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4317
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4318
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4319
dupFd
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4320
    "duplicate my file descriptor"
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4321
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4322
    |fd dupFd|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4323
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4324
    fd := self fileHandle.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4325
    dupFd := OperatingSystem dup:fd.
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4326
    self setFileHandle:dupFd mode:self fopenMode.
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4327
!
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4328
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4329
fopenMode
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4330
   "answer the mode for fopen.
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4331
    Only used internally"
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4332
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4333
   mode == #readonly ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4334
	^ ReadMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4335
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4336
   mode == #writeonly ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4337
	^ WriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4338
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4339
   mode == #readWrite ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4340
	^ ReadWriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4341
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4342
   mode == #append ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4343
	^ AppendMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4344
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4345
   ^ ReadWriteMode
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4346
!
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4347
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4348
open:aPath withMode:openModeString
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4349
    "low level open; opens the file/device and sets the handle instance
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4350
     variable. Careful: this does not care for any other state."
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4351
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4352
    |ok|
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4353
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4354
    ok := false.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4355
%{
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4356
    FILE *f;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4357
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4358
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4359
    if (__isStringLike(aPath) && __isStringLike(openModeString)) {
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4360
#ifdef WIN32
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  4361
# if 1
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4362
       f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4363
# else
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4364
	__BEGIN_INTERRUPTABLE__
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4365
	do {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4366
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4367
	} while ((f == NULL) && (__threadErrno == EINTR));
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4368
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4369
# endif
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4370
#else /* UNIX */
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4371
	__BEGIN_INTERRUPTABLE__
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4372
	do {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4373
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4374
	} while ((f == NULL) && (__threadErrno == EINTR));
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4375
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4376
#endif /* UNIX */
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4377
	if (f == NULL) {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4378
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4379
	} else {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4380
	    if (@global(FileOpenTrace) == true) {
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4381
		fprintf(stderr, "fopen %s [ExternalStream] -> %x\n", __stringVal(aPath), f);
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4382
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4383
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4384
	    __INST(handleType) = @symbol(filePointer);
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4385
	    ok = true;
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4386
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4387
    }
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4388
%}.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4389
    ok ifFalse:[
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4390
	"
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4391
	 the open failed for some reason ...
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4392
	"
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  4393
	^ self openError
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4394
    ].
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4395
    position := ZeroPosition.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4396
    Lobby register:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4397
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4398
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4399
reOpen
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4400
    "USERS WILL NEVER INVOKE THIS METHOD
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4401
     sent after snapin to reopen streams.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4402
     cannot reopen here since I am abstract and have no device knowledge"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4403
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4404
    self class name errorPrint. ' [warning]: automatic reOpen not supported - stream closed' errorPrintCR.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4405
    handle := nil.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4406
    Lobby unregister:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4407
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4408
    "Modified: 10.1.1997 / 17:50:44 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4409
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4410
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4411
setAccessor:what to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4412
    "set the filePointer/fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4413
     low level private & friend interface; may also be used to connect to some
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4414
     externally provided handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4415
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4416
    handle := something.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4417
    handleType := what.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4418
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4419
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4420
setFileDescriptor:anInteger mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4421
    "set the handle based upon a given fileDescriptor -
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4422
     notice: this one is based on the underlying OSs fileDescriptor -
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4423
     this may not be available on all platforms (i.e. non unix systems)."
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4424
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4425
    self setFileHandle:anInteger mode:openMode
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4426
!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4427
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4428
setFileHandle:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4429
    "set the fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4430
     low level private & friend interface; may also be used to connect to some
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4431
     externally provided file handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4432
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4433
    self setAccessor:#fileHandle to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4434
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4435
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4436
setFileHandle:anIntegerOrExternalAddress mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4437
    "set the handle based upon a given fileHandle -
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4438
     notice: this one is based on the underlying OSs fileDescriptor -
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4439
     this is a fileDescriptor (Integer) on Unix and Windows, or an Handle (ExternalAddres) on Windows only.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4440
     It may not be available on all platforms."
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4441
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4442
%{
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4443
    FILEPOINTER f;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4444
    OBJ fp;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4445
    FILE *fdopen();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4446
    int fd;
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4447
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4448
    if (!__isStringLike(openMode))
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4449
	goto err;
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4450
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4451
#ifdef WIN32
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4452
    if (__isExternalAddressLike(anIntegerOrExternalAddress) ) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4453
	HANDLE __fileHandle = (HANDLE)(__externalAddressVal(anIntegerOrExternalAddress));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4454
	fd = _open_osfhandle(__fileHandle, 0);      /* should we handle readonly, append or text mode? */
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4455
    } else
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4456
#endif
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4457
    if (__isSmallInteger(anIntegerOrExternalAddress)) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4458
	fd = __smallIntegerVal(anIntegerOrExternalAddress);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4459
    } else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4460
	goto err;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4461
    }
10997
8ec53332c725 _fdopen -> fdopen()
Stefan Vogel <sv@exept.de>
parents: 10995
diff changeset
  4462
    f = fdopen(fd, __stringVal(openMode));
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4463
    if (f != NULL) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4464
	if (@global(FileOpenTrace) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4465
	    fprintf(stderr, "fdopen [ExternalStream] %d -> %x\n", fd, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4466
	}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4467
	fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4468
	__INST(handleType) = @symbol(filePointer);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4469
	RETURN (self);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4470
    }
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4471
err:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4472
%}.
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4473
    ^ self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4474
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4475
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4476
setFilePointer:something
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4477
    "set the filePointer to the given one;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4478
     low level private & friend interface; may also be used to connect to some
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4479
     externally provided file."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4480
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4481
    self setAccessor:#filePointer to:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4482
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4483
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4484
setLastError:aNumber
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4485
    lastErrorNumber := aNumber
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4486
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4487
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4488
setSocketHandle:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4489
    "set the socketHandle to the given one;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4490
     low level private & friend interface; may also be used to connect to some
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4491
     externally provided socket handle."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4492
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4493
    self setAccessor:#socketHandle to:something
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4494
! !
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4495
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4496
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4497
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4498
isBinary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4499
    "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
  4500
     The default when created is false."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4501
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4502
    ^ binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4503
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4504
7804
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4505
isBlocking
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4506
    "return true, if O_NONBLOCK is NOT set in the fileDescriptor (propably UNIX specific)"
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4507
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4508
    handle isNil ifTrue:[^ self errorNotOpen].
7804
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4509
    ^ OperatingSystem isBlockingOn:self fileDescriptor
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4510
!
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4511
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4512
isExternalStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4513
    "return true, if the receiver is some kind of externalStream;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4514
     true is returned here - the method redefined from Object."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4515
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4516
    ^ true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4517
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4518
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4519
isOpen
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4520
    "return true, if this stream is open"
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4521
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4522
    ^ handle notNil
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4523
!
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4524
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4525
isReadable
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4526
    "return true, if this stream can be read from"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4527
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4528
    ^ (mode ~~ #writeonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4529
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4530
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4531
isWritable
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4532
    "return true, if this stream can be written to"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4533
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4534
    ^ (mode ~~ #readonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4535
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4536
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4537
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4538
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4539
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4540
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4541
     In binary mode, an integer is returned, otherwise a character.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4542
     If there are no more elements, either an exception is thrown or nil is returned
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4543
     - see #pastEndRead."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4544
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4545
    |c|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4546
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4547
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4548
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4549
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4550
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4551
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4552
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4553
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4554
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4555
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4556
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4557
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4558
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4559
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4560
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4561
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4562
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4563
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4564
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4565
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4566
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4567
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4568
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4569
		pos = __INST(position);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4570
		if (__isSmallInteger(pos)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4571
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4572
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4573
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4574
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4575
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4576
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4577
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4578
		    RETURN ( __mkSmallInteger(ch) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4579
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4580
		RETURN ( __MKCHARACTER(ch) );
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4581
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4582
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4583
	    __INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4584
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4585
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4586
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4587
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4588
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4589
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4590
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4591
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4592
    hitEOF == true ifTrue:[^ self pastEndRead].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4593
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4594
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4595
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4596
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4597
    readAhead notNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4598
	c := readAhead.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4599
	readAhead := nil.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4600
	^ c.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4601
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4602
    c := self nextByteFromFile:handle.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4603
    c isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4604
	^ self pastEndRead.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4605
    ].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4606
    binary == true ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4607
	^ c
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4608
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4609
    ^ Character value:c
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4610
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4611
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4612
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4613
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4614
     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
  4615
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4616
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4617
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4618
    binary ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4619
	coll := ByteArray uninitializedNew:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4620
    ] ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4621
	coll := String new:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4622
    ].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4623
    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
  4624
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4625
    "/ for readStream protocol compatibility,
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4626
    "/ we must raise an exception here.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4627
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4628
    nRead < count ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4629
	^ self pastEndRead
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4630
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4631
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4632
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4633
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4634
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4635
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4636
nextOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4637
    "return the next element; advance read position.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4638
     In binary mode, an integer is returned, otherwise a character.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4639
     If there are no more elements, nil is returned.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4640
     This is #atEnd and #next in a single operation - to speed up some code"
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4641
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4642
    |c|
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4643
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4644
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4645
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4646
    OBJ pos, fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4647
    unsigned char ch;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4648
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4649
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4650
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4651
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4652
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4653
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4654
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4655
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4656
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4657
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4658
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4659
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4660
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4661
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4662
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4663
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4664
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4665
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4666
		pos = __INST(position);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4667
		if (__isSmallInteger(pos)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4668
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4669
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4670
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4671
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4672
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4673
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4674
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4675
		    RETURN ( __mkSmallInteger(ch) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4676
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4677
		RETURN ( __MKCHARACTER(ch) );
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4678
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4679
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4680
	    __INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4681
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4682
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4683
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4684
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4685
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4686
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4687
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4688
%}.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4689
    hitEOF == true ifTrue:[^ nil].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4690
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4691
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4692
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4693
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4694
    readAhead notNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4695
	c := readAhead.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4696
	readAhead := nil.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4697
	^ c.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4698
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4699
    c := self nextByteFromFile:handle.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4700
    c isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4701
	^ nil.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4702
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4703
    binary == true ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4704
	^ c
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4705
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4706
    ^ Character value:c
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4707
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4708
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4709
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4710
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4711
     In binary mode, an integer is returned, otherwise a character.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4712
     If there are no more elements, either an exception is thrown or nil is returned
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4713
     - see #pastEndRead."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4714
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4715
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4716
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4717
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4718
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4719
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4720
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4721
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4722
    if ((ra = __INST(readAhead)) != nil) {
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4723
	if (__INST(binary) == true) {
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4724
	    RETURN ( ra );
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4725
	}
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4726
	c = __intVal(ra);
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4727
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4728
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  4729
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4730
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4731
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4732
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4733
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4734
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4735
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4736
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4737
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4738
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4739
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4740
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4741
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4742
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4743
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4744
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4745
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4746
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4747
		__UNGETC__(c, f, _buffered);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4748
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4749
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4750
		    RETURN ( __mkSmallInteger(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4751
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4752
		RETURN ( __MKCHARACTER(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4753
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4754
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4755
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4756
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4757
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4758
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4759
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4760
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  4761
%}.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4762
    hitEOF == true ifTrue:[^ self pastEndRead].
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4763
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4764
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4765
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4766
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4767
    readAhead isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4768
	readAhead := self nextOrNil.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4769
	readAhead isNil ifTrue:[
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4770
	    ^ self pastEndRead.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4771
	].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4772
    ].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4773
    ^ readAhead
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4774
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4775
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4776
peekOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4777
    "return the element to be read next without advancing read position.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4778
     In binary mode, an integer is returned, otherwise a character.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4779
     If there are no more elements, nil is returned.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4780
     Same as #atEnd and #peek in a single operation - speeding up some code"
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4781
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4782
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4783
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4784
    unsigned char c;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4785
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4786
    OBJ fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4787
    OBJ ra;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4788
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4789
    if ((ra = __INST(readAhead)) != nil) {
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4790
	if (__INST(binary) == true) {
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4791
	    RETURN ( ra );
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4792
	}
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4793
	c = __intVal(ra);
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4794
	RETURN ( __MKCHARACTER(c) );
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4795
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4796
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4797
    __INST(lastErrorNumber) = nil;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4798
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4799
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4800
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4801
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4802
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4803
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4804
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4805
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4806
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4807
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4808
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4809
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4810
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4811
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4812
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4813
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4814
		__UNGETC__(c, f, _buffered);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4815
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4816
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4817
		    RETURN ( __mkSmallInteger(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4818
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4819
		RETURN ( __MKCHARACTER(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4820
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4821
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4822
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4823
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4824
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4825
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4826
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4827
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4828
%}.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4829
    hitEOF == true ifTrue:[^ nil].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4830
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4831
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4832
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4833
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4834
    readAhead isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4835
	readAhead := self nextOrNil.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4836
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4837
    ^ readAhead
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4838
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4839
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4840
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4841
    "return a collection of the elements up-to the end.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4842
     Return nil if the stream-end is reached before."
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4843
6569
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4844
    |answerStream buffer count|
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4845
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  4846
    buffer := self contentsSpecies new:4096.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4847
    [self atEnd] whileFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4848
	count := self nextAvailableBytes:4096 into:buffer startingAt:1.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4849
	count ~~ 0 ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4850
	    answerStream isNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4851
		answerStream := WriteStream with:buffer.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4852
		answerStream position0Based:count.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4853
		buffer := self contentsSpecies new:4096.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4854
	    ] ifFalse:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4855
		answerStream nextPutAll:buffer startingAt:1 to:count.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4856
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  4857
	].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4858
    ].
6758
bc933037a1dc oops - upToEnd failed if already at the end
Claus Gittinger <cg@exept.de>
parents: 6661
diff changeset
  4859
    answerStream isNil ifTrue:[^ self contentsSpecies new].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4860
    ^ answerStream contents
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  4861
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4862
    "
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4863
     ('smalltalk.rc' asFilename readStream upToEnd)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4864
     =
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4865
     ('smalltalk.rc' asFilename readStream contentsOfEntireFile)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  4866
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4867
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4868
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4869
!ExternalStream methodsFor:'rel5 protocol'!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4870
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4871
atEndFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4872
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4873
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4874
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4875
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4876
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4877
nextByteFromFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4878
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4879
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4880
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4881
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4882
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4883
nextPutByte:aByte toFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4884
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4885
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4886
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4887
! !
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4888
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4889
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4890
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4891
atEnd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4892
    "return true, if position is at end"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4893
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4894
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4895
    FILEPOINTER f;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4896
    OBJ fp, pos, lim;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4897
    char c;
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  4898
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4899
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4900
    if (__INST(hitEOF) == true) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4901
	RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4902
    }
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  4903
    pos = __INST(position);
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4904
    lim = __INST(readLimit);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4905
    if (lim != nil) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4906
	off_t _pos, _readLimit;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4907
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4908
	_pos = __signedLongIntVal(pos);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4909
	_pos = _pos - __intVal( @global(PositionableStream:ZeroPosition)) + 1;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4910
	_readLimit = __signedLongIntVal(lim);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4911
	if (_pos > _readLimit) {
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4912
	    RETURN (true);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4913
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4914
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4915
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4916
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4917
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4918
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4919
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4920
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4921
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4922
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4923
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4924
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4925
		__READING__(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4926
	    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4927
		if (__INST(readAhead) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4928
		    RETURN (false);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4929
		}
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4930
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4931
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4932
	    /*
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4933
	     * read ahead ...
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4934
	     */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4935
	    do {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4936
#ifdef WIN32
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  4937
# if 1
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4938
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4939
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4940
# else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4941
		__BEGIN_INTERRUPTABLE__
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4942
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4943
		__END_INTERRUPTABLE__
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4944
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4945
#else /* not WIN32 */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4946
		__BEGIN_INTERRUPTABLE__
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4947
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4948
		__END_INTERRUPTABLE__
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  4949
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4950
	    } 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
  4951
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4952
#if defined(WIN32) && defined(EPIPE)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4953
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4954
		if (__threadErrno == EPIPE) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4955
		    ret = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4956
		    __threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4957
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4958
		if (__threadErrno == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4959
		    ret = 0;   /* how comes ? */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4960
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4961
	    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  4962
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4963
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4964
		__UNGETC__(c&0xff, f, _buffered);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4965
		RETURN (false);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4966
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4967
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4968
	    if (ret == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4969
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4970
		RETURN (true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4971
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4972
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4973
	    /* ret < 0 */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4974
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4975
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4976
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4977
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4978
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4979
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4980
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4981
    readAhead notNil ifTrue:[^ false].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4982
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4983
    "/ migration support
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4984
    ^ self
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4985
	atEndFile:handle
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4986
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4987
    "Modified: / 30.10.1998 / 20:16:06 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4988
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4989
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4990
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4991
    "return true, if any data is available for reading (i.e.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4992
     a read operation will not block the smalltalk process), false otherwise."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4993
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4994
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4995
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  4996
    readAhead notNil ifTrue:[^ true].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4997
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4998
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4999
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5000
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5001
    ^ OperatingSystem readCheck:fd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5002
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5003
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5004
     |pipe|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5005
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5006
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5007
     pipe canReadWithoutBlocking ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5008
	 Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5009
     ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5010
	 Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5011
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5012
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5013
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5014
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5015
    "Modified: 25.9.1997 / 13:08:45 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5016
!
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
canWriteWithoutBlocking
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5019
    "return true, if data can be written into the stream
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5020
     (i.e. a write operation will not block the smalltalk process)."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5021
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5022
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5023
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5024
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5025
    mode == #readonly ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5026
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5027
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5028
    ^ OperatingSystem writeCheck:fd
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5029
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5030
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5031
gotErrorOrEOF
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5032
    "answerv true, if amn error or eof has been occured on the stream"
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5033
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5034
    ^ hitEOF == true or:[lastErrorNumber notNil]
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5035
!
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5036
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5037
nextError
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5038
    "return the error by trying to read something.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5039
     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
  5040
     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
  5041
     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
  5042
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5043
%{ /*NOCONTEXT*/
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5044
    FILEPOINTER f;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5045
    int ret, _buffered;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5046
    OBJ fp;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5047
    unsigned char ch;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5048
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5049
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5050
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5051
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5052
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5053
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5054
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5055
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5056
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5057
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5058
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5059
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5060
		__READING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5061
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5062
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5063
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5064
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5065
		RETURN(nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5066
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5067
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5068
		RETURN(__mkSmallInteger(__threadErrno));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5069
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5070
		RETURN(__mkSmallInteger(0)); /* EOF */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5071
	    }
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5072
	}
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5073
    }
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5074
%}.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5075
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5076
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5077
numAvailable
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5078
    "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
  5079
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5080
    |fd|
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5081
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5082
    handle isNil ifTrue:[^ self errorNotOpen].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5083
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5084
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5085
    fd := self fileDescriptor.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5086
    ^ OperatingSystem numAvailableForReadOn:fd.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5087
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5088
"/    self atEnd ifTrue:[^ 0].
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5089
"/    self canReadWithoutBlocking ifTrue:[
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5090
"/        ^ 1
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5091
"/    ].
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5092
"/    ^ 0
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5093
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5094
    "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
  5095
    "Modified: / 4.2.1998 / 17:31:11 / cg"
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5098
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5099
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5100
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5101
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5102
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5103
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5104
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5105
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5106
readWaitWithTimeoutMs:timeout
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5107
    "suspend the current process, until the receiver
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5108
     becomes ready for reading or a timeout (in milliseconds) expired.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5109
     If data is already available, return immediate.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5110
     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
  5111
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5112
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5113
    |fd inputSema hasData wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5114
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5115
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5116
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5117
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5118
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5119
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5120
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5121
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5122
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5123
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5124
    hasData := OperatingSystem readCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5125
    hasData ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5126
	inputSema := Semaphore new name:'readWait'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5127
	[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5128
	    timeout notNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5129
		Processor signal:inputSema afterMilliseconds:timeout
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5130
	    ].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5131
	    Processor signal:inputSema onInput:fd.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5132
	    Processor activeProcess state:#ioWait.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5133
	    inputSema wait.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5134
	    Processor disableSemaphore:inputSema.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5135
	    hasData := OperatingSystem readCheck:fd
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5136
	] ifCurtailed:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5137
	    Processor disableSemaphore:inputSema.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5138
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5139
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5140
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5141
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5142
    ^ hasData not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5143
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5144
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5145
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5146
    "suspend the current process, until the receiver
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5147
     becomes ready for reading or writing or a timeout (in milliseconds) expired.
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5148
     Return true if a timeout occured (i.e. false, if data is available).
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5149
     Return immediate if the receiver is already ready.
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5150
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5151
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5152
    |fd sema canReadWrite wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5153
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5154
    handle isNil ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5155
	^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5156
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5157
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5158
    fd := self fileDescriptor.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5159
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5160
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5161
    wasBlocked := OperatingSystem blockInterrupts.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5162
    canReadWrite := OperatingSystem readWriteCheck:fd.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5163
    canReadWrite ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5164
	sema := Semaphore new name:'readWriteWait'.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5165
	[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5166
	    timeout notNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5167
		Processor signal:sema afterMilliseconds:timeout
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5168
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5169
	    Processor signal:sema onOutput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5170
	    Processor signal:sema onInput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5171
	    Processor activeProcess state:#ioWait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5172
	    sema wait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5173
	    Processor disableSemaphore:sema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5174
	    canReadWrite := OperatingSystem readWriteCheck:fd
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5175
	] ifCurtailed:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5176
	    Processor disableSemaphore:sema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5177
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5178
	]
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5179
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5180
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5181
    ^ canReadWrite not
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5182
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5183
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5184
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5185
    "suspend the current process, until the receiver
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5186
     becomes ready for writing or a timeout (in milliseconds) expired.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5187
     Return true if a timeout occured (i.e. false, if data is available).
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5188
     Return immediate if the receiver is already ready.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5189
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5190
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5191
    |fd outputSema canWrite wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5192
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5193
    handle isNil ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5194
	^ self errorNotOpen
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
    mode == #readonly ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5197
	^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5198
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5199
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5200
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5201
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5202
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5203
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5204
    canWrite := OperatingSystem writeCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5205
    canWrite ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5206
	outputSema := Semaphore new name:'writeWait'.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5207
	[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5208
	    timeout notNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5209
		Processor signal:outputSema afterMilliseconds:timeout
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5210
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5211
	    Processor signal:outputSema onOutput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5212
	    Processor activeProcess state:#ioWait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5213
	    outputSema wait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5214
	    Processor disableSemaphore:outputSema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5215
	    canWrite := OperatingSystem writeCheck:fd
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5216
	] ifCurtailed:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5217
	    Processor disableSemaphore:outputSema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5218
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5219
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5220
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5221
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5222
    ^ canWrite not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5223
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5224
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5225
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5226
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5227
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5228
    "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
  5229
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5230
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5231
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5232
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5233
    int len, cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5234
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5235
    char *cp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5236
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5237
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5238
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5239
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5240
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5241
	__INST(lastErrorNumber) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5242
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5243
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5244
	    && (__INST(binary) != true)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5245
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5246
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5247
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5248
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5249
		__WRITING__(f)
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5250
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5251
	    {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5252
		OBJ mode = __INST(eolMode);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5253
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5254
		if (mode == @symbol(cr)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5255
		    cp = "\r"; len = 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5256
		} else if (mode == @symbol(crlf)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5257
		    cp = "\r\n"; len = 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5258
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5259
		    cp = "\n"; len = 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5260
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5261
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5262
#ifdef WIN32
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5263
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5264
		cnt = __win32_fwrite(cp, 1, len, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5265
	    } else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5266
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5267
	    {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5268
		__WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5269
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5270
	    if (cnt == len) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5271
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5272
		    INT np = __intVal(__INST(position)) + len;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5273
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5274
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5275
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5276
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5277
		    __INST(position) = nil; /* i.e: dont know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5278
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5279
		RETURN ( self );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5280
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5281
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5282
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5283
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5284
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5285
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5286
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5287
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5288
    (binary==true) ifTrue:[self errorBinary. ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5289
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5290
    (eolMode == #cr) ifTrue:[self nextPut:(Character return). ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5291
    (eolMode ~~ #crlf) ifTrue:[self nextPut:(Character nl). ^ self].
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5292
    self nextPut:(Character return).
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5293
    self nextPut:(Character nl).
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5294
    ^ self
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5295
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5296
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5297
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5298
    "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
  5299
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5300
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5301
    OBJ fp;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5302
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5303
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5304
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5305
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5306
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5307
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5308
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5309
	    if (__INST(mode) != @symbol(readonly)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5310
		if (__INST(buffered) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5311
		    FILEPOINTER f = __FILEVal(fp);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5312
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5313
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5314
			__win32_fflush(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5315
		    } else
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5316
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5317
		    {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5318
#ifdef WIN32
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  5319
# if 1
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5320
			FFLUSH(f);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5321
# else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5322
			__BEGIN_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5323
			FFLUSH(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5324
			__END_INTERRUPTABLE__
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5325
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5326
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5327
			__BEGIN_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5328
			FFLUSH(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5329
			__END_INTERRUPTABLE__
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5330
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5331
		    }
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5332
		}
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5333
	    }
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5334
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5335
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5336
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5337
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5338
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5339
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5340
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5341
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5342
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5343
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5344
    FILEPOINTER f;
8209
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  5345
    unsigned codePoint;
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  5346
    unsigned char c;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5347
    int cnt, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5348
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5349
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5350
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5351
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5352
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5353
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5354
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5355
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5356
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5357
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5358
	    if (__INST(binary) != true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5359
		if (__isCharacter(aCharacter)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5360
		    codePoint = __intVal(__characterVal(aCharacter));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5361
		    if (codePoint <= 0xFF) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5362
			c = codePoint;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5363
    doWrite:
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5364
			f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5365
			if (! f) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5366
			    fprintf(stderr, "oops - fileHandle is NULL in nextPut:\n");
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5367
			    __INST(handle) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5368
			    goto out;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5369
			}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5370
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5371
			if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5372
			    __WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5373
			}
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  5374
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5375
			if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5376
			    cnt = __win32_fwrite(&c, 1, 1, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5377
			} else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  5378
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5379
			__WRITEBYTE__(cnt, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5380
			if (cnt == 1) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5381
			    if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5382
				INT np = __intVal(__INST(position)) + 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5383
				OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5384
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5385
				t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5386
			    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5387
				__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5388
			    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5389
			    RETURN ( self );
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5390
			}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5391
			__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5392
		    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5393
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5394
	    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5395
		if (__isSmallInteger(aCharacter)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5396
		    c = __intVal(aCharacter);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5397
		    goto doWrite;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5398
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5399
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5400
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5401
    }
7737
616d849b7838 fileHandle check
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  5402
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5403
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5404
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5405
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5406
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5407
    binary == true ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5408
	(aCharacter isCharacter not
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5409
	or:[aCharacter codePoint > 16rFF]) ifTrue:[
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5410
	    self argumentMustBeCharacter.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5411
	    ^ self.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5412
	].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5413
    ] ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5414
	aCharacter isInteger ifFalse:[
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5415
	    self argumentMustBeInteger.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5416
	    ^ self.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5417
	].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5418
    ].
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5419
    "/ migration support
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5420
    self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5421
	nextPutByte:aCharacter asInteger
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5422
	toFile:handle
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5425
nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5426
    "write all elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5427
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5428
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5429
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5430
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5431
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5432
    int len, cnt;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5433
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5434
    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
  5435
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5436
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5437
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5438
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5439
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5440
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5441
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5442
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5443
	if (((fp = __INST(handle)) != nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5444
	    && (__INST(mode) != @symbol(readonly))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5445
	) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5446
	    f = __FILEVal(fp);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5447
	    if (! f) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5448
		fprintf(stderr, "oops - fileHandle is NULL in nextPutAll:\n");
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5449
		__INST(handle) = nil;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5450
		goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5451
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5452
	    if (_buffered = (__INST(buffered) == true)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5453
		__WRITING__(f)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5454
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5455
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5456
	    if (__isStringLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5457
		len = __stringSize(aCollection);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5458
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5459
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5460
		    cnt = __win32_fwrite(__stringVal(aCollection), 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5461
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5462
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5463
		{
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5464
		    o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5465
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5466
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5467
	    } else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5468
		if (__INST(binary) == true) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5469
		    int offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5470
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5471
		    if (__isByteArrayLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5472
			offs = 0;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5473
			len = __byteArraySize(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5474
		    } else if (__isBytes(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5475
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5476
			len = __byteArraySize(aCollection) - offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5477
		    } else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5478
			goto out;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5479
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5480
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5481
			cnt = __win32_fwrite(__stringVal(aCollection), 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5482
		    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5483
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5484
		    {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5485
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element) - (char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5486
			o_offs += offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5487
			__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5488
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5489
		} else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5490
		    goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5491
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5492
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5493
	    if (cnt == len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5494
		if (__isSmallInteger(__INST(position))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5495
		    INT np = __intVal(__INST(position)) + len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5496
		    OBJ t;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5497
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5498
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5499
		} else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5500
		    __INST(position) = nil; /* i.e. do not know */
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5501
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5502
		RETURN (self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5503
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5504
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5505
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5506
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5507
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5508
%}.
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5509
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5510
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5511
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5512
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5513
    ^ super nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5514
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5515
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5516
nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5517
    "write a range of elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5518
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5519
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5520
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5521
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5522
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5523
    int offs, len, cnt, iStart, iStop, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5524
    OBJ fp;
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5525
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5526
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5527
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5528
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5529
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5530
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5531
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5532
	if (((fp = __INST(handle)) != nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5533
	    && (__INST(mode) != @symbol(readonly))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5534
	    && __bothSmallInteger(start, stop)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5535
	) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5536
	    f = __FILEVal(fp);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5537
	    if (_buffered = (__INST(buffered) == true)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5538
		__WRITING__(f)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5539
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5540
	    iStart = __intVal(start);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5541
	    iStop = __intVal(stop);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5542
	    if ((iStart < 1) || (iStop < iStart)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5543
		RETURN(self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5544
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5545
	    if (__isStringLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5546
		len = __stringSize(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5547
		if (iStop > len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5548
		    RETURN(self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5549
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5550
		if (iStop > len)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5551
		    iStop = len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5552
		len = iStop - iStart + 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5553
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5554
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5555
		    cnt = __win32_fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5556
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5557
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5558
		{
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5559
		    o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5560
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs+iStart-1, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5561
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5562
	    } else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5563
		if (__INST(binary) == true) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5564
		    int offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5565
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5566
		    if (__isByteArrayLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5567
			offs = 0;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5568
			len = __byteArraySize(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5569
		    } else if (__isBytes(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5570
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5571
			len = __byteArraySize(aCollection) - offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5572
		    } else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5573
			goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5574
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5575
		    if (iStop > len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5576
			RETURN(self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5577
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5578
		    if (iStop > len)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5579
			iStop = len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5580
		    len = iStop - iStart + 1;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5581
		    offs += iStart - 1;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5582
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5583
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5584
			cnt = __win32_fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5585
		    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5586
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5587
		    {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5588
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element)-(char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5589
			__WRITEBYTES_OBJ__(cnt, f,  aCollection, o_offs+offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5590
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5591
		} else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5592
		    goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5593
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5594
	    if (cnt == len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5595
		if (__isSmallInteger(__INST(position))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5596
		    INT np = __intVal(__INST(position)) + len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5597
		    OBJ t;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5598
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5599
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5600
		} else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5601
		    __INST(position) = nil; /* i.e. do not know */
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5602
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5603
		RETURN (self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5604
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5605
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5606
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5607
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5608
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5609
%}.
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  5610
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5611
    ^ super nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5612
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5613
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  5614
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5615
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5616
version
12552
2c4fd3d0b31b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12548
diff changeset
  5617
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.329 2009-11-17 15:46:56 cg Exp $'
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5618
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5619
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5620
version_CVS
12552
2c4fd3d0b31b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12548
diff changeset
  5621
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.329 2009-11-17 15:46:56 cg Exp $'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5622
! !
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  5623
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5624
ExternalStream initialize!