ExternalStream.st
author Stefan Vogel <sv@exept.de>
Fri, 04 Apr 2014 10:18:36 +0200
changeset 16302 6e87ae369992
parent 16300 277c0cb1ecbc
child 16308 4f0cb8a09d1d
permissions -rw-r--r--
class: ExternalStream changed: #closeFile do not fflush if explicitly unbuffered
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
%{
10328
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    28
#undef fwrite
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    29
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
#include <stdio.h>
437
claus
parents: 436
diff changeset
    31
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    32
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    33
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    34
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    35
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    36
#endif
437
claus
parents: 436
diff changeset
    37
10
claus
parents: 5
diff changeset
    38
#include <errno.h>
437
claus
parents: 436
diff changeset
    39
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    40
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    41
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    42
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    43
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    44
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    45
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    46
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    47
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    48
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    49
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    50
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    51
#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
    52
# 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
    53
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    54
#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
    55
# 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
    56
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    57
#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
    58
# 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
    59
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    60
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
    61
#if defined(__VMS__) || defined(__sparc__) || defined(WIN32)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    62
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    63
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    64
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    65
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    66
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    67
#ifdef LATER
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    68
# define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    69
# define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    70
# define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    71
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    72
# define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    73
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    74
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    75
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    76
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    77
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    78
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    79
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    80
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    81
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    82
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    83
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    84
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    85
# define __END_INTERRUPTABLE__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    87
#endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    88
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
    89
# ifdef __i386__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    90
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    91
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    92
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    93
#ifdef WIN32
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    94
# undef INT
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
    95
# undef UINT
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    96
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    98
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   102
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# undef Date
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   104
# undef Delay
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   105
# undef Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   106
# undef Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   107
# undef Context
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   108
# undef Message
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   109
# undef Process
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   110
# undef Processor
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   111
# undef String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   112
# undef Character
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   113
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   114
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   115
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
# define NOMINMAX
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
   118
//# define NOOPENFILE
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   119
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   120
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   121
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   123
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   124
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   127
# include <windows.h>
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
   128
# include <winsock2.h>
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
#  define Array __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
# ifdef __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
#  define Number __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
# ifdef __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
#  define Method __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
# ifdef __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   145
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   146
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   147
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   148
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   150
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   151
# ifdef __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   152
#  define Set __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   153
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   154
# ifdef __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   155
#  define Signal __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   156
# endif
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   157
# ifdef __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   158
#  define Delay __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   159
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   160
# ifdef __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   161
#  define Context __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   162
# endif
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   163
# ifdef __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   164
#  define Message __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   165
# endif
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   166
# ifdef __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   167
#  define Process __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   168
# endif
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   169
# ifdef __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   170
#  define Processor __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   171
# endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   172
# ifdef __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   173
#  define String __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   174
# endif
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   175
# ifdef __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   176
#  define Character __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   177
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   178
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   179
# define INT    STX_INT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   180
# define UINT   STX_UINT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   181
# ifndef off_t
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   182
#  define off_t  long
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   183
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   184
#endif /* WIN32 */
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   185
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   186
#ifndef NO_STDIO /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   187
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   188
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   189
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   190
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   191
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   192
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   193
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   194
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   195
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   196
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   197
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   198
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   199
     && ((char *)(buf) < __survEndPtr)) { \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   200
	__fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   201
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   202
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   203
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   204
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   205
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   206
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   207
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   208
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   209
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   210
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   211
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   212
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   213
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   214
# 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
   215
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   216
# 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
   217
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   218
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   219
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   220
# ifdef __BORLANDC__
10469
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   221
   int _rtl_read();
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   222
   int _rtl_write();
0411b84d6a6a msvc filehandle
Claus Gittinger <cg@exept.de>
parents: 10459
diff changeset
   223
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   224
#  define READ(ret,f, cp, n, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   225
      { int __res;\
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   226
	HANDLE h; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   227
	h = _get_osfhandle(fileno(f)); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   228
	if ((handleType == @symbol(socketFilePointer)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   229
	|| ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   230
	  (ret) = __STX_WSA_NOINT_CALL4("recv", recv, h, (cp), (n), 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   231
	} else { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   232
	  (ret) = __STX_C_NOINT_CALL3("_rtl_read", _rtl_read, fileno(f), (cp), (n));\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   233
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   234
      }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   235
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   236
#  define WRITE(ret,f, cp, n, handleType) \
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   237
      { int __res;\
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   238
	HANDLE h; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   239
	h = _get_osfhandle(fileno(f)); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   240
	if ((handleType == @symbol(socketFilePointer)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   241
	|| ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   242
	  (ret) = __STX_WSA_NOINT_CALL4("send", send, h, (cp), (n), 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   243
	} else { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   244
	  (ret) = __STX_C_NOINT_CALL3("_rtl_write", _rtl_write, fileno(f), (cp), (n));\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   245
	} \
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   246
      }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   247
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   248
# else /* MSC */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
   249
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   250
#  define READ(ret,f, cp, n, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   251
      { int __res;\
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   252
	int fd; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   253
	HANDLE h; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   254
	fd = fileno(f); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   255
	if ((handleType == @symbol(socketFileDescriptor)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   256
	 || ((handleType == nil) && (ioctlsocket((SOCKET)fd,FIONREAD,&__res)==0))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   257
	  (ret) = __STX_WSA_NOINT_CALL4("recv", recv, fd, (cp), (n), 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   258
	} else { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   259
	  h = _get_osfhandle(fd); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   260
	  if ((handleType == @symbol(socketFilePointer)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   261
	  || ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   262
	    (ret) = __STX_WSA_NOINT_CALL4("recv", recv, h, (cp), (n), 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   263
	  } else { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   264
	    (ret) = __STX_API_NOINT_CALL5("ReadFile", ReadFile, h, (cp), (n), &__res, 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   265
	    if (ret) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   266
	      ret = __res; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   267
	  } \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   268
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   269
      }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   270
#  define WRITE(ret,f, cp, n, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   271
      { int __res;\
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   272
	int fd; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   273
	HANDLE h; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   274
	fd = fileno(f); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   275
	if ((handleType == @symbol(socketFileDescriptor)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   276
	 || ((handleType == nil) && (ioctlsocket((SOCKET)fd,FIONREAD,&__res)==0))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   277
	  (ret) = __STX_WSA_NOINT_CALL4("send", send, fd, (cp), (n), 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   278
	} else {\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   279
	  h = _get_osfhandle(fd); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   280
	  if ((handleType == @symbol(socketFilePointer)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   281
	  || ((handleType == nil) && (ioctlsocket((SOCKET)h,FIONREAD,&__res)==0))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   282
	    (ret) = __STX_WSA_NOINT_CALL4("send", send, h, (cp), (n), 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   283
	  } else {\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   284
	    (ret) = __STX_API_NOINT_CALL5("WriteFile", WriteFile, h, (cp), (n), &__res, 0);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   285
	    if (ret) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   286
	      ret = __res; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   287
	  } \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   288
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   289
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   290
# endif /* MSC */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   291
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   292
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   293
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   294
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   295
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   296
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   297
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   298
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   299
     && (__INST(mode) == @symbol(readwrite))) {  \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   300
	__INST(didWrite) = false;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   301
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   302
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   303
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   304
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   305
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   306
     && (__INST(mode) == @symbol(readwrite))) {  \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   307
	__INST(didWrite) = true;                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   308
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   309
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   310
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   311
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   312
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   313
	ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   314
    } else {                                            \
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   315
      __INST(readAhead) = __mkSmallInteger((c));            \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   316
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   317
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   318
# define __READBYTE__(ret, f, buf, isBuffered, handleType)          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   319
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   320
	for (;;) {                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   321
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   322
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   323
	    if ((ret) >= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   324
		*(buf) = (ret);                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   325
		(ret) = 1;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   326
	    } else if (ferror(f)) {                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   327
		if (__threadErrno == EINTR) {           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   328
		    clearerr(f);                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   329
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   330
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   331
	    } else {                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   332
		(ret) = 0;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   333
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   334
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   335
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   336
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   337
	OBJ rA = __INST(readAhead);                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   338
	if (rA != nil) {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   339
	    *(buf) = (char)__intVal(rA);                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   340
	    __INST(readAhead) = nil;                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   341
	    (ret) = 1;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   342
	} else {                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   343
	    for (;;) {                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   344
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   345
		READ(ret,f, buf, 1, handleType);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   346
		if ((ret) >= 0 || __threadErrno != EINTR)       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   347
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   348
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   349
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   350
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   351
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   352
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   353
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   354
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   355
   */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   356
# define __READBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   357
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   358
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   359
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   360
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   361
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   362
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   363
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   364
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   365
		    if (__threadErrno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   366
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   367
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   368
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   369
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   370
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   371
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   372
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   373
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   374
	    (buf)[__offs++] = (ret);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   375
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   376
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   377
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   378
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   379
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   380
							\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   381
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   382
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   383
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   384
		(buf)[__offs] = __intVal(rA);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   385
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   386
		(ret) = 1;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   387
	    } else {                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   388
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   389
		READ(ret,f, (buf)+__offs, (cnt)-__offs, handleType); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   390
		if ((ret) <= 0) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   391
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   392
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   393
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   394
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   395
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   396
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   397
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   398
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   399
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   400
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   401
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   402
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   403
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   404
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   405
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   406
    int oldFlags;                                       \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   407
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   408
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   409
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   410
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   411
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   412
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   413
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   414
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   415
		    if (__threadErrno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   416
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   417
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   418
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   419
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   420
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   421
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   422
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   423
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   424
	    (buf)[__offs++] = (ret);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   425
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   426
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   427
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   428
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   429
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   430
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   431
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   432
		(buf)[__offs] = __intVal(rA);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   433
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   434
		(ret) = 1;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   435
		__offs += (ret);                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   436
		continue;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   437
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   438
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   439
	    {                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   440
	      int res;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   441
	      if ((handleType == @symbol(socketFilePointer)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   442
	       || ((handleType == nil) && (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   443
		  if (res > 0) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   444
		      if (res > ((cnt)-__offs))         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   445
			res = (cnt)-__offs;             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   446
		      READ(ret,f, (buf)+__offs, res, handleType);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   447
		  } else {                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   448
		      (ret) = 0;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   449
		  }                                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   450
	      } else if ((handleType == @symbol(pipeFilePointer)) \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   451
			 || ((handleType == nil) && (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)))) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   452
		  if (res > 0) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   453
		      if (res > ((cnt)-__offs))         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   454
			res = (cnt)-__offs;             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   455
		      READ(ret,f, (buf)+__offs, res, handleType);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   456
		  } else                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   457
		      ret = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   458
	      } else {                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   459
		  READ(ret,f, (buf)+__offs, (cnt)-__offs, handleType); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   460
	      }                                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   461
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   462
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   463
		if (__threadErrno == EINTR) {                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   464
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   465
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   466
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   467
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   468
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   469
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   470
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   471
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   472
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   473
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   474
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   475
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   476
# define IO_BUFFER_SIZE        (8*1024)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   477
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   478
# 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
   479
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   480
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   481
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   482
    char *buf = (char *)(obj);                          \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   483
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   484
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   485
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   486
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   487
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   488
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   489
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   490
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   491
		    if (__threadErrno == EINTR) {       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   492
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   493
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   494
			buf = (char *)(obj);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   495
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   496
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   497
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   498
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   499
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   500
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   501
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   502
	    (buf)[__ooffs+__offs] = (ret);              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   503
	    __offs++;                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   504
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   505
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   506
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   507
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   508
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   509
	    char __buf[IO_BUFFER_SIZE];                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   510
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   511
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   512
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   513
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   514
		(ret) = 1;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   515
	    } else {                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   516
		int l;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   517
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   518
		l = (cnt)-__offs;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   519
		if ( l > IO_BUFFER_SIZE)                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   520
		  l = IO_BUFFER_SIZE;                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   521
		READ(ret,f, __buf, l, handleType);                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   522
		if ((ret) <= 0) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   523
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   524
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   525
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   526
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   527
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   528
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   529
	    if( (ret) > 0 ) {                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   530
		/* refetch */                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   531
		buf = (char *)(obj);               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   532
		memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   533
		__offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   534
	    } else {                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   535
		(ret) = 0;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   536
	    }                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   537
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   538
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   539
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   540
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   541
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   542
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   543
# 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
   544
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   545
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   546
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   547
    char *buf = (char *)(obj);                       \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   548
						     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   549
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   550
    if (isBuffered) {                                \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   551
	while (__offs < (cnt)) {                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   552
	    CLEAR_ERRNO;                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   553
	    (ret) = getc(f);                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   554
	    if ((ret) < 0) {                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   555
		if (ferror(f)) {                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   556
		    if (__threadErrno == EINTR) {    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   557
			clearerr(f);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   558
			/* refetch */                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   559
			buf = (char *)(obj);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   560
			continue;                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   561
		    }                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   562
		} else {                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   563
		    (ret) = 0;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   564
		}                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   565
		break;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   566
	    }                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   567
	    (buf)[__ooffs+__offs] = (ret);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   568
	    __offs++;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   569
	}                                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   570
	if (__offs > 0)                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   571
	    (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   572
    } else {                                         \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   573
	while (__offs < (cnt)) {                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   574
	    char __buf[IO_BUFFER_SIZE];              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   575
	    OBJ rA = __INST(readAhead);              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   576
	    if (rA != nil) {                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   577
		(buf)[__ooffs+__offs] = __intVal(rA);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   578
		__INST(readAhead) = nil;             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   579
		(ret) = 1;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   580
		__offs += (ret);                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   581
		continue;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   582
	    }                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   583
	    {                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   584
		int l;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   585
		int res;                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   586
		CLEAR_ERRNO;                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   587
		l = (cnt)-__offs;                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   588
		if ( l > IO_BUFFER_SIZE)             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   589
		    l = IO_BUFFER_SIZE;              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   590
		if (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res)==0) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   591
		    if (res > 0) {                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   592
			if (res > l)                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   593
			    res = l;                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   594
			READ(ret,f, __buf, res, handleType);     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   595
		    } else {                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   596
			(ret) = 0;                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   597
		    }                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   598
		} else if (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   599
		    if (res > 0) {                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   600
			if (res > l)                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   601
			    res = l;                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   602
			READ(ret,f, __buf, res, handleType);     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   603
		    } else                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   604
			(ret) = 0;                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   605
		} else {                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   606
		    READ(ret,f, __buf, l, handleType);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   607
		}                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   608
		if ((ret) < 0 && __threadErrno == EINTR) {   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   609
		    continue;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   610
		}                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   611
	    }                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   612
	    if( (ret) > 0 ) {                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   613
		/* refetch */                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   614
		buf = (char *)(obj);               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   615
		memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   616
		__offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   617
	    } else {                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   618
		(ret) = 0;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   619
	    }                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   620
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   621
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   622
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   623
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   624
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   625
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   626
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   627
# define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)         \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   628
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   629
	for (;;) {                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   630
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   631
	    ret = putc(*(buf), f);                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   632
	    if ((ret) >= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   633
		(ret) = 1;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   634
	    } else if (ferror(f)) {                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   635
		if (__threadErrno == EINTR) {                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   636
		    clearerr(f);                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   637
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   638
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   639
	    } else                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   640
		(ret) = 0;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   641
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   642
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   643
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   644
	for (;;) {                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   645
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   646
	    WRITE(ret,f, buf, 1, handleType);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   647
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   648
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   649
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   650
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   651
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   652
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)   \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   653
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   654
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   655
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   656
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   657
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   658
	    (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   659
	    if ((ret) <= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   660
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   661
		    if (__threadErrno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   662
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   663
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   664
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   665
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   666
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   667
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   668
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   669
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   670
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   671
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   672
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   673
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   674
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   675
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   676
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   677
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   678
	    WRITE(ret,f, (buf)+__offs, (cnt)-__offs, handleType);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   679
	    if (ret <= 0) {                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   680
		if (ret < 0 && __threadErrno == EINTR) {        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   681
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   682
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   683
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   684
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   685
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   686
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   687
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   688
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   689
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   690
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   691
# 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
   692
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   693
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   694
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   695
    char *buf = (char *)(obj);                          \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   696
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   697
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   698
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   699
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   700
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   701
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   702
	    if ((ret) <= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   703
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   704
		    if (__threadErrno == EINTR) {       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   705
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   706
			buf = (char *)(obj);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   707
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   708
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   709
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   710
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   711
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   712
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   713
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   714
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   715
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   716
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   717
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   718
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   719
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   720
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   721
	    char __buf[IO_BUFFER_SIZE];                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   722
	    int l;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   723
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   724
	    l = (cnt)-__offs;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   725
	    if ( l > IO_BUFFER_SIZE)                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   726
	      l = IO_BUFFER_SIZE;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   727
	    /* refetch */                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   728
	    buf = (char *)(obj);               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   729
	    memcpy(__buf,(buf)+__ooffs+__offs,l);       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   730
	    WRITE(ret,f, __buf, l, handleType);                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   731
	    if (ret <= 0) {                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   732
		if (ret < 0 && __threadErrno == EINTR) {        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   733
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   734
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   735
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   736
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   737
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   738
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   739
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   740
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   741
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   742
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   743
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   744
#else /* ! WIN32 */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   745
/* ========================   UNIX / LINUX ====================================================== */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   746
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   747
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   748
     && (__INST(mode) == @symbol(readwrite))) {  \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   749
	__INST(didWrite) = false;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   750
	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
   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
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   754
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   755
     && (__INST(mode) == @symbol(readwrite))) {  \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   756
	__INST(didWrite) = true;                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   757
	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
   758
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   759
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   760
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   761
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   762
#  define __UNGETC__(c, f, isBuffered)                  \
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   763
    __INST(readAhead) = __mkSmallInteger((c));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   764
# else /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   765
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   766
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   767
	ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   768
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   769
	__INST(readAhead) = __mkSmallInteger((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   770
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   771
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   772
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   773
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   774
#  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
   775
    {                                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   776
	OBJ rA = __INST(readAhead);                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   777
	if (rA != nil) {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   778
	    *(buf) = __intVal(rA);                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   779
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   780
	    __INST(readAhead) = nil;                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   781
	    (ret) = 1;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   782
	} else {                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   783
	    for (;;) {                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   784
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   785
		(ret) = READ(f, buf, 1, handleType);    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   786
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   787
		if ((ret) >= 0) break;                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   788
		if (errno != EINTR) {                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   789
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   790
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   791
		__HANDLE_INTERRUPTS__;                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   792
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   793
	}                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   794
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   795
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   796
#  define __READBYTE__(ret, f, buf, isBuffered, handleType)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   797
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   798
	for (;;) {                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   799
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   800
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   801
	    if ((ret) >= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   802
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   803
		*(buf) = (ret);                         \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   804
		(ret) = 1;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   805
	    } else if (ferror(f)) {                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   806
		if (errno == EINTR) {                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   807
		    __HANDLE_INTERRUPTS__;              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   808
		    clearerr(f);                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   809
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   810
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   811
	    } else                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   812
		(ret) = 0;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   813
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   814
	}                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   815
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   816
	OBJ rA = __INST(readAhead);                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   817
	if (rA != nil) {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   818
	    *(buf) = __intVal(rA);                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   819
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   820
	    __INST(readAhead) = nil;                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   821
	    (ret) = 1;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   822
	} else {                                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   823
	    for (;;) {                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   824
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   825
		(ret) = read(fileno(f), buf, 1);        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   826
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   827
		if ((ret) >= 0) break;                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   828
		if (errno != EINTR) {                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   829
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   830
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   831
		__HANDLE_INTERRUPTS__;                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   832
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   833
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   834
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   835
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   836
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   837
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   838
 * 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
   839
 * (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
   840
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   841
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   842
#  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
   843
    {                                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   844
	int __offs = 0, __cnt;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   845
							\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   846
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   847
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   848
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   849
		(buf)[__offs] = __intVal(rA);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   850
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   851
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   852
		__offs++;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   853
	    } else {                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   854
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   855
		__cnt = READ(f, (buf)+__offs, (cnt)-__offs, handleType); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   856
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   857
		if (__cnt <= 0) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   858
		    if (__cnt < 0 && errno == EINTR) {  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   859
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   860
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   861
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   862
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   863
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   864
		__offs += __cnt;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   865
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   866
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   867
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   868
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   869
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   870
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   871
#  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
   872
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   873
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   874
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   875
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   876
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   877
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   878
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   879
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   880
		    if (errno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   881
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   882
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   883
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   884
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   885
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   886
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   887
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   888
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   889
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   890
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   891
	    (buf)[__offs++] = (ret);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   892
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   893
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   894
	    (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   895
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   896
	int __offs = 0, __cnt;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   897
	int fd = fileno(f);                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   898
							\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   899
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   900
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   901
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   902
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   903
		(buf)[__offs] = __intVal(rA);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   904
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   905
		__offs++;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   906
	    } else {                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   907
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   908
		__cnt = read(fd, (buf)+__offs, (cnt)-__offs);  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   909
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   910
		if (__cnt <= 0) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   911
		    if (__cnt < 0 && errno == EINTR) {  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   912
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   913
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   914
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   915
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   916
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   917
		__offs += __cnt;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   918
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   919
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   920
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   921
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   922
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   923
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   924
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   925
/*
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   926
 * 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
   927
 */
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   928
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   929
#  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
   930
#   define SETFLAGS(fd, flags) \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   931
	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
   932
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   933
#   if defined(O_NONBLOCK)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   934
#    define __STX_NONBLOCK_FLAG O_NONBLOCK
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   935
#   else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   936
#    if defined(O_NDELAY)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   937
#     define __STX_NONBLOCK_FLAG O_NDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   938
#    else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   939
#     define __STX_NONBLOCK_FLAG FNDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   940
#    endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   941
#   endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   942
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   943
#   define SETNONBLOCKING(fd, oldFlags) \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   944
	{ \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   945
	    int flags = fcntl(fd, F_GETFL, 0); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   946
	    if (flags >= 0) { \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   947
		fcntl(fd, F_SETFL, flags | __STX_NONBLOCK_FLAG); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   948
	    } \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   949
	    oldFlags = flags; \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   950
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   951
#  else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   952
#   define SETFLAGS(fd, flags) /* nothing */
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   953
#   define SETNONBLOCKING(fd, oldFlags) /* nothing */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   954
#  endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   955
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   956
#  define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   957
  {                                                     \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   958
    int __offs = 0, __cnt;                              \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   959
    int oldFlags;                                       \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   960
							\
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   961
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   962
    SETNONBLOCKING(fileno(f), oldFlags);                \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   963
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   964
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   965
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   966
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   967
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   968
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   969
		    if (errno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   970
			(ret) = 0;                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   971
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   972
			break;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   973
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   974
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   975
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   976
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   977
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   978
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   979
	    (buf)[__offs++] = (ret);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   980
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   981
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   982
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   983
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   984
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   985
	int fd = fileno(f);                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   986
							\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   987
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   988
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   989
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   990
		(buf)[__offs] = __intVal(rA);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   991
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   992
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   993
		__offs++;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   994
		continue;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   995
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   996
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   997
	    __cnt = read(fd, (buf)+__offs, (cnt)-__offs); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   998
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   999
	    if (__cnt > 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1000
		__offs += __cnt;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1001
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1002
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1003
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1004
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1005
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1006
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  1007
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1008
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1009
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1010
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1011
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1012
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1013
 * 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
  1014
 * (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
  1015
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1016
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1017
#  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
  1018
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1019
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1020
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1021
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1022
    char *buf = (char *)(obj);                          \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1023
							\
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1024
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1025
    {                                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1026
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1027
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1028
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1029
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1030
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1031
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1032
		__offs++;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1033
	    } else {                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1034
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1035
		__cnt = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1036
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1037
		if (__cnt <= 0) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1038
		    if (__cnt < 0 && errno == EINTR) {  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1039
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1040
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1041
			buf = (char *)(obj);            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1042
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1043
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1044
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1045
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1046
		__offs += __cnt;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1047
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1048
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1049
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1050
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1051
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1052
  }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1053
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1054
# else /* use STDIO */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1055
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1056
#  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
  1057
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1058
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1059
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1060
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1061
    char *buf = (char *)(obj);                          \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1062
							\
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1063
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1064
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1065
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1066
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1067
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1068
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1069
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1070
		    if (errno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1071
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1072
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1073
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1074
			buf = (char *)(obj);            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1075
			DEBUGBUFFER(buf);               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1076
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1077
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1078
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1079
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1080
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1081
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1082
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1083
	    (buf)[__ooffs+__offs] = (ret);              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1084
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1085
	    __offs++;                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1086
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1087
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1088
	    (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
  1089
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1090
	int fd = fileno(f);                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1091
							\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1092
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1093
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1094
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1095
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1096
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1097
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1098
		__offs++;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1099
	    } else {                                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1100
		CLEAR_ERRNO;                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1101
		__cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1102
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1103
		if (__cnt <= 0) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1104
		    if (__cnt < 0 && errno == EINTR) {  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1105
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1106
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1107
			buf = (char *)(obj);            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1108
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1109
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1110
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1111
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1112
		__offs += __cnt;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1113
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1114
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1115
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1116
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1117
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1118
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1119
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1120
# 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
  1121
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1122
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1123
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1124
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1125
    char *buf = (char *)(obj);                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1126
    int oldFlags;                                       \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1127
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1128
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1129
    SETNONBLOCKING(fileno(f), oldFlags);                \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1130
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1131
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1132
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1133
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1134
	    (ret) = getc(f);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1135
	    if ((ret) < 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1136
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1137
		    if (errno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1138
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1139
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1140
			buf = (char *)(obj);            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1141
			(ret) = 0;                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1142
			break;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1143
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1144
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1145
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1146
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1147
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1148
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1149
	    (buf)[__ooffs+__offs] = (ret);              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1150
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1151
	    __offs++;                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1152
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1153
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1154
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1155
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1156
	int fd = fileno(f);                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1157
							\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1158
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1159
	    OBJ rA = __INST(readAhead);                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1160
	    if (rA != nil) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1161
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1162
		DEBUGBUFFER(buf);                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1163
		__INST(readAhead) = nil;                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1164
		__offs++;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1165
		continue;                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1166
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1167
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1168
	    __cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1169
	    DEBUGBUFFER(buf);                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1170
	    if (__cnt > 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1171
		__offs += __cnt;                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1172
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1173
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1174
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1175
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1176
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1177
    }                                                   \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1178
    SETFLAGS(fileno(f), oldFlags);                      \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1179
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1180
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1181
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1182
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1183
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1184
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1185
#  define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)          \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1186
	for (;;) {                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1187
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1188
	    (ret) = WRITE(f, buf, 1, handleType);       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1189
	    if ((ret) >= 0) break;                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1190
	    if (errno != EINTR) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1191
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1192
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1193
	    __HANDLE_INTERRUPTS__;                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1194
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1195
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1196
#  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
  1197
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1198
	for (;;) {                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1199
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1200
	    ret = putc(*(buf), f);                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1201
	    if ((ret) >= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1202
		(ret) = 1;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1203
	    } else if (ferror(f)) {                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1204
		/* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1205
		if (errno == EINTR || errno == 0) {     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1206
		    __HANDLE_INTERRUPTS__;              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1207
		    clearerr(f);                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1208
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1209
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1210
	    } else                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1211
		(ret) = 0;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1212
	    break;                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1213
	}                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1214
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1215
	for (;;) {                                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1216
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1217
	    (ret) = write(fileno(f), buf, 1);           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1218
	    if ((ret) >= 0) break;                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1219
	    if (errno != EINTR) {                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1220
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1221
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1222
	    __HANDLE_INTERRUPTS__;                      \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1223
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1224
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1225
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1226
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1227
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1228
 * 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
  1229
 * (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
  1230
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1231
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1232
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1233
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1234
    {                                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1235
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1236
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1237
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1238
	    ret = WRITE(f, (buf)+__offs, (cnt)-__offs, handleType); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1239
	    if (ret <= 0) {                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1240
		if (ret < 0 && errno == EINTR) {        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1241
		    __HANDLE_INTERRUPTS__;              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1242
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1243
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1244
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1245
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1246
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1247
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1248
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1249
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1250
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1251
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1252
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1253
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1254
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1255
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1256
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1257
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1258
	    (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1259
	    if ((ret) <= 0) {                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1260
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1261
		    if (errno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1262
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1263
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1264
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1265
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1266
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1267
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1268
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1269
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1270
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1271
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1272
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1273
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1274
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1275
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1276
	int __offs = 0;                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1277
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1278
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1279
	    (ret) = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1280
	    if ((ret) <= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1281
		if ((ret) < 0) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1282
		    if (errno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1283
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1284
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1285
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1286
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1287
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1288
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1289
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1290
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1291
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1292
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1293
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1294
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1295
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1296
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1297
 * 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
  1298
 * (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
  1299
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1300
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1301
#  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
  1302
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1303
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1304
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1305
    char *buf = (char *)(obj);                          \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1306
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1307
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1308
    {                                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1309
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1310
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1311
	    ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1312
	    if (ret <= 0) {                             \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1313
		if (ret < 0 && errno == EINTR) {        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1314
		    __HANDLE_INTERRUPTS__;              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1315
		    /* refetch */                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1316
		    buf = (char *)(obj);                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1317
		    continue;                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1318
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1319
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1320
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1321
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1322
	}                                               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1323
	if (__offs > 0)                                 \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1324
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1325
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1326
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1327
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1328
#  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
  1329
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1330
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1331
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1332
    char *buf = (char *)(obj);                          \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1333
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1334
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1335
    if (isBuffered) {                                   \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1336
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1337
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1338
	    (ret) = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1339
	    if ((ret) <= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1340
		if (ferror(f)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1341
		    if (errno == EINTR) {               \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1342
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1343
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1344
			buf = (char *)(obj);            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1345
			clearerr(f);                    \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1346
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1347
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1348
		    break;                              \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1349
		} else {                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1350
		    (ret) = 0;                          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1351
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1352
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1353
	    __offs += (ret);                            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1354
	}                                               \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1355
    } else {                                            \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1356
	while (__offs < (cnt)) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1357
	    CLEAR_ERRNO;                                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1358
	    (ret) = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs); \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1359
	    if ((ret) <= 0) {                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1360
		if ((ret) < 0) {                        \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1361
		    if (errno == EINTR){                \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1362
			__HANDLE_INTERRUPTS__;          \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1363
			/* refetch */                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1364
			buf = (char *)(obj);            \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1365
			continue;                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1366
		    }                                   \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1367
		}                                       \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1368
		break;                                  \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1369
	    }                                           \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1370
	    __offs += (ret); break;                     \
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1371
	}                                               \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1372
    }                                                   \
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  1373
    if (__offs > 0)                                     \
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  1374
	(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
  1375
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1376
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1377
#endif /* unix */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1378
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1379
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1380
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1381
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1382
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1383
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1384
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1385
 COPYRIGHT (c) 1988 by Claus Gittinger
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1386
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1387
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1388
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1389
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1390
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1391
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1392
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1393
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1394
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1395
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1396
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1397
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1398
"
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1399
    ExternalStream defines protocol common to Streams which have a file-descriptor and
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1400
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1401
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1402
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1403
    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
  1404
    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
  1405
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1406
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1407
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1408
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1409
    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
  1410
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1411
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1412
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1413
    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
  1414
    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
  1415
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1416
    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
  1417
    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
  1418
    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
  1419
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1420
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1421
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1422
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1423
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1424
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1425
      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
  1426
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1427
      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
  1428
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1429
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1430
      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
  1431
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1432
      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
  1433
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1434
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1435
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1436
	handleType      <Symbol>        desribes what handle is:
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1437
					    win32: #fileHandle, #socketHandle,
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1438
						   #socketFileDescriptor
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1439
						   #filePointer, #socketFilePointer, #pipeFilePointer
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1440
					    unix: #filePointer, #socketFilePointer, #pipeFilePointer
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1441
					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
  1442
	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
  1443
					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
  1444
	mode            <Symbol>        #readwrite, #readonly or #writeonly
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1445
	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
  1446
					not output immediately)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1447
	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
  1448
	eolMode         <Symbol>        one of nil, #cr or #crlf.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1449
					determines how lines should be terminated.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1450
					nil -> newLine (as in Unix);
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1451
					#crlf -> with cr-lf (as in MSDOS)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1452
					#cr -> with cr (as in VMS)
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1453
	hitEOF          <Boolean>       true, if EOF was reached
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1454
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1455
	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
  1456
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1457
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1458
    [Class variables:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1459
	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
  1460
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1461
	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
  1462
	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
  1463
	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
  1464
	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
  1465
					 or binary I/O with text-stream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1466
	OpenErrorSignal         <Signal> raised if open fails
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1467
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1468
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1469
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1470
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1471
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1472
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1473
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1474
      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
  1475
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1476
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1477
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1478
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1479
      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
  1480
      an error and errno is set to EINTR.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1481
      Thats what the ugly code around all getc-calls is for ...
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1482
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1483
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1484
claus
parents: 308
diff changeset
  1485
      Notice that typical stdio's use a single errno global variable to return an error code,
claus
parents: 308
diff changeset
  1486
      this was bad design in the stdio lib (right from the very beginning), since its much
claus
parents: 308
diff changeset
  1487
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1488
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1489
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1490
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1491
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1492
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1493
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1494
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1495
      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
  1496
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1497
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1498
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1499
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1500
    [author:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1501
	Claus Gittinger
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1502
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1503
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1504
    [see also:]
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1505
	FileStream Socket PipeStream
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1506
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1507
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1508
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1509
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1510
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1511
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1512
    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
  1513
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1514
	|topView scrollPane textView fileStream text|
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
	topView := StandardSystemView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1517
	topView label:'contents of Makefile'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1518
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1519
	scrollPane := HVScrollableView in:topView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1520
	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
  1521
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1522
	textView := EditTextView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1523
	scrollPane scrolledView:textView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1524
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1525
	fileStream := 'Makefile' asFilename readStream.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1526
	text := fileStream upToEnd.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1527
	fileStream close.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1528
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1529
	textView contents:text.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1530
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1531
	topView open.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1532
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1533
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1534
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1535
    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
  1536
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1537
	EditTextView openOn:'Makefile'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1538
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1539
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1540
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1541
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1542
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1543
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1544
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1545
    OperatingSystem isUNIXlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1546
	"/ unix EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1547
	DefaultEOLMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1548
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1549
	OperatingSystem isVMSlike ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1550
	    "/ vms EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1551
	    DefaultEOLMode := #cr
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1552
	] ifFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1553
	    "/ msdos EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1554
	    DefaultEOLMode := #crlf
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1555
	]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1556
    ]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1557
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1558
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1559
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1560
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1561
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1562
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1563
    OperatingSystem isMSDOSlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1564
	ReadMode := 'rb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1565
	ReadWriteMode := 'rb+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1566
	WriteMode := 'wb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1567
	AppendMode := 'ab+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1568
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1569
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1570
	ReadMode := 'r'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1571
	ReadWriteMode := 'r+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1572
	WriteMode := 'w'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1573
	AppendMode := 'a+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1574
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1575
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1576
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1577
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1578
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1579
    OpenErrorSignal isNil ifTrue:[
8066
0dbcbe8989b8 OpenError is now a class based exception
Claus Gittinger <cg@exept.de>
parents: 8008
diff changeset
  1580
"/        OpenErrorSignal := OpenError.
0dbcbe8989b8 OpenError is now a class based exception
Claus Gittinger <cg@exept.de>
parents: 8008
diff changeset
  1581
"/        OpenErrorSignal nameClass:self message:#openErrorSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1582
	OpenErrorSignal := OpenError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1583
	OpenErrorSignal notifierString:'open error'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1584
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1585
"/        InvalidReadSignal := ReadErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1586
"/        InvalidReadSignal nameClass:self message:#invalidReadSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1587
	InvalidReadSignal := InvalidReadError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1588
	InvalidReadSignal notifierString:'stream does not support reading'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1589
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1590
"/        InvalidWriteSignal := WriteErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1591
"/        InvalidWriteSignal nameClass:self message:#invalidWriteSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1592
	InvalidWriteSignal := InvalidWriteError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1593
	InvalidWriteSignal notifierString:'stream does not support writing'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1594
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1595
"/        InvalidModeSignal :=  StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1596
"/        InvalidModeSignal nameClass:self message:#invalidModeSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1597
	InvalidModeSignal := InvalidModeError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1598
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1599
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1600
"/        InvalidOperationSignal :=  StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1601
"/        InvalidOperationSignal nameClass:self message:#invalidOperationSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1602
	InvalidOperationSignal := InvalidOperationError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1603
	InvalidOperationSignal notifierString:'unsupported file operation'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1604
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1605
"/        StreamNotOpenSignal := StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1606
"/        StreamNotOpenSignal nameClass:self message:#streamNotOpenSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1607
	StreamNotOpenSignal := StreamNotOpenError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1608
	StreamNotOpenSignal notifierString:'stream is not open'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1609
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1610
"/        StreamIOErrorSignal := StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1611
"/        StreamIOErrorSignal nameClass:self message:#streamIOErrorSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1612
	StreamIOErrorSignal := StreamIOError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1613
	StreamIOErrorSignal notifierString:'I/O error'.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1614
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1615
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1616
    Lobby isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1617
	Lobby := Registry new.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1618
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1619
	"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
  1620
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1621
    ].
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1622
    DefaultEOLMode isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1623
	self initDefaultEOLMode.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1624
    ].
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1625
    ReadMode isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1626
	self initModeStrings.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1627
    ].
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1628
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1629
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1630
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1631
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1632
    "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
  1633
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1634
301
35e40a6fc72b *** empty log message ***
claus
parents: 269
diff changeset
  1635
    Lobby do:[:aFileStream |
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1636
	aFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1637
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1638
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1639
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1640
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1641
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1642
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1643
    something == #earlyRestart ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1644
	self reOpenFiles.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1645
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1646
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1647
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1648
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1649
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1650
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1651
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1652
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1653
forFileDescriptor:aFileDescriptor mode:modeSymbol
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1654
    "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
  1655
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1656
     The modeSymbol-argument is #readonly, #readwrite, ....
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1657
     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
  1658
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1659
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1660
    ^ self forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:true handleType:nil
7002
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
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1663
     the example below will probably fail (15 is a random FD):
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
     |s|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1666
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1667
     s := ExternalStream forFileDescriptor:15 mode:'r'.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1668
     s next.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1669
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1670
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1671
    "Created: 29.2.1996 / 18:05:00 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1672
    "Modified: 29.2.1996 / 18:17:07 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1673
!
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1674
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1675
forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:buffered handleType:handleTypeSymbol
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1676
    "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
  1677
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1678
     The modeSymbol-argument is #readonly, #readwrite, ....
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1679
     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
  1680
     primitive code, or to wrap pipe-fds into externalStreams."
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1681
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1682
    |newStream|
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
    newStream := self basicNew.
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1685
    newStream text; buffered:buffered; eolMode:DefaultEOLMode; clearEOF.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1686
    ^ newStream connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1687
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1688
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1689
     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
  1690
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1691
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1692
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1693
     s := ExternalStream forFileDescriptor:15 mode:#radonly handleType:#filePointer.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1694
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1695
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1696
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1697
    "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
  1698
    "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
  1699
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1700
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1701
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1702
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1703
     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
  1704
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1705
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1706
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1707
    ^ self forFileDescriptor:aFileDescriptor mode:#readWrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1708
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1709
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1710
     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
  1711
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1712
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1713
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1714
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1715
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1716
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1717
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1718
    "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
  1719
    "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
  1720
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1721
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1722
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1723
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1724
     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
  1725
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1726
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1727
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1728
    ^ self forFileDescriptor:aFileDescriptor mode:#readonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1729
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1730
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1731
     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
  1732
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1733
     |s|
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
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1736
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1737
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1738
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1739
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1740
     |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
  1741
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1742
     'create OS pipe ...'.
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
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1745
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1746
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1747
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1748
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1749
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1750
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1751
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1752
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1753
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1754
     [
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1755
	 1 to:10 do:[:i |
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1756
	     Transcript showCR:rs nextLine
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1757
	 ].
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1758
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1759
     ] forkAt:7.
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
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1762
     [
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1763
	 1 to:10 do:[:i |
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1764
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1765
	 ].
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1766
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1767
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1768
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1769
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1770
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1771
    "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
  1772
    "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
  1773
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1774
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1775
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1776
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1777
     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
  1778
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1779
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1780
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1781
    ^ self forFileDescriptor:aFileDescriptor mode:#writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1782
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1783
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1784
     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
  1785
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1786
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1787
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1788
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1789
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1790
     s nextPut:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1791
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1792
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1793
    "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
  1794
    "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
  1795
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1796
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1797
new
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1798
    "re-enable new - disabled in Stream superclass"
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1799
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1800
    ^ self basicNew initialize.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1801
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1802
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1803
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1804
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1805
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1806
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1807
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1808
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1809
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1810
    "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
  1811
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1812
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1813
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1814
    "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
  1815
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1816
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1817
    ^ InvalidModeError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1818
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1819
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1820
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1821
    "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
  1822
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1823
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1824
    ^ InvalidOperationError
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1825
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1826
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1827
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1828
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1829
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1830
    ^ InvalidReadError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1831
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1832
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1833
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1834
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1835
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1836
    ^ InvalidWriteError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1837
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1838
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1839
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1840
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1841
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1842
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1843
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1844
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1845
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1846
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1847
     (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
  1848
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1849
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1850
    ^ StreamIOError
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1851
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1852
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1853
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1854
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1855
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1856
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1857
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1858
    ^ StreamNotOpenError
2
claus
parents: 1
diff changeset
  1859
! !
claus
parents: 1
diff changeset
  1860
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1861
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1862
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1863
errorReporter
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1864
    "I know about error codes"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1865
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1866
    ^ self
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1867
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1868
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1869
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1870
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1871
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1872
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1873
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1874
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1875
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1876
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1877
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1878
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1879
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1880
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1881
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1882
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1883
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1884
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1885
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1886
    "
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1887
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1888
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1889
reportOn:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1890
    "an error occured.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1891
     Report it via an Exception"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1892
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1893
    anErrorSymbolOrNumber isInteger ifTrue:[
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:(' - os error:' , (OperatingSystem errorTextForNumber:anErrorSymbolOrNumber))
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
    (self respondsTo:anErrorSymbolOrNumber) ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1899
	self perform:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1900
    ] ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1901
	StreamError
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1902
	    raiseRequestWith:anErrorSymbolOrNumber
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1903
	    errorString:(' - ' , anErrorSymbolOrNumber printString)
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1904
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1905
    ^ false
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1906
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1907
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1908
!ExternalStream class methodsFor:'obsolete'!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1909
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1910
makePTYPair
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1911
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1912
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1913
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1914
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePTYPair'.
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
    ^ NonPositionableExternalStream makePTYPair.
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
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1919
makePipe
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1920
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1921
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1922
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1923
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePipe'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1924
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1925
    ^ NonPositionableExternalStream makePipe.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1926
! !
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1927
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1928
!ExternalStream methodsFor:'Compatibility-Dolphin'!
6474
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1929
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1930
beText
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1931
    self text
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1932
! !
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1933
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1934
!ExternalStream methodsFor:'Compatibility-Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1935
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1936
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1937
    "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
  1938
     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
  1939
     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
  1940
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1941
    |n nWanted|
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
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1944
    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
  1945
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1946
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1947
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1948
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1949
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1950
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1951
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1952
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1953
     Squeak compatibility."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1954
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1955
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1956
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1957
    elementSize := aContainer class elementByteSize.
13940
12eb1c056d5e fixed: #readInto:startingAt:count:; offset was wrong for non-byte elements
Claus Gittinger <cg@exept.de>
parents: 13927
diff changeset
  1958
    n := self nextBytes:nElements*elementSize into:aContainer startingAt:(index-1)*elementSize+1.
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1959
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1960
13940
12eb1c056d5e fixed: #readInto:startingAt:count:; offset was wrong for non-byte elements
Claus Gittinger <cg@exept.de>
parents: 13927
diff changeset
  1961
    "Modified: / 14-01-2012 / 19:00:35 / cg"
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1962
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1963
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1964
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1965
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1966
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1967
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1968
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1969
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1970
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1971
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1972
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1973
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1974
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1975
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1976
    ^ self class invalidReadSignal
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
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1979
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1980
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1981
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1982
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1983
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1984
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1985
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1986
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1987
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1988
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1989
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1990
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1991
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1992
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1993
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1994
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1995
buffered:aBoolean
10
claus
parents: 5
diff changeset
  1996
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1997
10
claus
parents: 5
diff changeset
  1998
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1999
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2000
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2001
contents
2
claus
parents: 1
diff changeset
  2002
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  2003
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  2004
     the byte values is returned.
claus
parents: 1
diff changeset
  2005
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  2006
     is returned."
claus
parents: 1
diff changeset
  2007
claus
parents: 1
diff changeset
  2008
    |text l chunks sizes chunk byteCount cnt bytes offset|
claus
parents: 1
diff changeset
  2009
claus
parents: 1
diff changeset
  2010
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2011
	"adding to a ByteArray produces quadratic time-space
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2012
	 behavior - therefore we allocate chunks, and concatenate them
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2013
	 at the end."
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2014
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2015
	chunks := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2016
	sizes := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2017
	byteCount := 0.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2018
	[self atEnd] whileFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2019
	    chunk := ByteArray uninitializedNew:4096.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2020
	    cnt := self nextBytes:(chunk size) into:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2021
	    cnt notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2022
		chunks add:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2023
		sizes add:cnt.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2024
		byteCount := byteCount + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2025
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2026
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2027
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2028
	"now, create one big ByteArray"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2029
	bytes := ByteArray uninitializedNew:byteCount.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2030
	offset := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2031
	1 to:chunks size do:[:index |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2032
	    chunk := chunks at:index.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2033
	    cnt := sizes at:index.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2034
	    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
  2035
	    offset := offset + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2036
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2037
	^ bytes
2
claus
parents: 1
diff changeset
  2038
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2039
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  2040
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2041
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2042
	l := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2043
	l isNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2044
	    ^ text
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2045
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2046
	text add:l
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2047
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2048
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2049
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2050
11751
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2051
contentsAsString
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2052
    "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
  2053
     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
  2054
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2055
    ^ self contentsOfEntireFile
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2056
!
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2057
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2058
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2059
    "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
  2060
     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
  2061
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2062
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2063
	^ self contents.
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2064
    ].
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2065
    ^ self upToEnd
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  2066
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  2067
    "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
  2068
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  2069
!
claus
parents: 1
diff changeset
  2070
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2071
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2072
    "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
  2073
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2074
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5431
diff changeset
  2075
    binary == true ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2076
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2077
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2078
    ^ String
2
claus
parents: 1
diff changeset
  2079
!
claus
parents: 1
diff changeset
  2080
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2081
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2082
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2083
     The argument may be one of:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2084
	#crlf         -> add a CR-NL, as in MSDOS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2085
	#cr           -> add a CR, as in VMS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2086
	#nl           -> add a NL, as in Unix
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2087
	anyOther      -> like #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2088
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2089
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2090
    eolMode := aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2091
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2092
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2093
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2094
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2095
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2096
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2097
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  2098
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2099
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2100
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2101
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2102
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2103
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2104
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2105
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2106
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2107
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2108
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2109
	    RETURN ( __MKINT(fileno(f)) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2110
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2111
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2112
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2113
    handle isNil ifTrue:[^ self errorNotOpen].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2114
    ^ self fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2115
!
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2116
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2117
fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2118
    "for migration to rel5 only:
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2119
     return the fileDescriptor of the argument handle -
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2120
     notice: this one returns the underlying OSs fileDescriptor -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2121
     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
  2122
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2123
    self primitiveFailed
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2124
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2125
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2126
fileHandle
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2127
    "return the fileHandle of the receiver.
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2128
     Under unix, this is the fileDescriptor; under windows, this is the Handle."
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2129
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2130
%{
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2131
    OBJ fp;
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2132
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2133
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2134
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2135
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2136
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2137
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2138
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2139
	    int fd;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2140
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2141
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2142
	    fd = fileno(f);
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2143
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2144
	    {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2145
		HANDLE h;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2146
		h = _get_osfhandle(fd);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2147
		RETURN (__MKEXTERNALADDRESS(h));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2148
	    }
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2149
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2150
	    RETURN ( __MKINT(fileno(f)) );
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2151
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2152
	}
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2153
    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2154
#ifdef WIN32
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2155
    if ((__INST(handleType) == @symbol(fileHandle)) || (__INST(handleType) == @symbol(socketHandle))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2156
	RETURN (__INST(handle));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2157
    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2158
#endif
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2159
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2160
    handle isNil ifTrue:[^ self errorNotOpen].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2161
    ^ self fileHandleOfFile:handle
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2162
!
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2163
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2164
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2165
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2166
     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
  2167
     a FILE * - not a fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2168
     (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
  2169
     You cannot do much with the returned value
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2170
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2171
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2172
    (handleType isNil or:[handleType == #filePointer]) ifTrue:[
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2173
	^ handle
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2174
    ].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2175
    ^ self error:'not a FILE*'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2176
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2177
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2178
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2179
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2180
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2181
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2182
lineEndTransparent
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2183
    eolMode := #cr
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2184
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2185
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2186
pathName
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2187
    "answer the pathName of the stream.
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2188
     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
  2189
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2190
    ^ ''
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2191
!
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2192
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2193
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2194
    "set access mode to readonly"
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
    mode := #readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2197
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2198
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2199
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2200
    "set access mode to readwrite"
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
    mode := #readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2203
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2204
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2205
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2206
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2207
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2208
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2209
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2210
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2211
useCRLF:aBoolean
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2212
    "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
  2213
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2214
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2215
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2216
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2217
	eolMode := #crlf
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2218
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2219
	eolMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2220
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2221
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2222
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2223
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2224
    "set access mode to writeonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2225
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2226
    mode := #writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2227
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2228
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2229
!ExternalStream methodsFor:'closing'!
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
close
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2232
    "close the stream. 
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2233
     No error of the stream is not open."
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2234
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2235
    self isOpen ifTrue:[
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2236
        Lobby unregister:self.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2237
        self closeFile.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2238
    ].
8966
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
shutDown
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2242
    "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
  2243
     see comment there"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2244
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2245
    self isOpen ifTrue:[
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2246
	Lobby unregister:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2247
	self closeFile
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2248
    ]
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2249
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2250
    "Modified: 30.8.1996 / 00:39:21 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2251
! !
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2252
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2253
!ExternalStream methodsFor:'copying'!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2254
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
    "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
  2257
     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
  2258
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2259
    |copy|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2260
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2261
    copy := super copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2262
    copy dupFd.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2263
    Lobby register:copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2264
    ^ copy
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
       |stream1 stream2|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2268
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2269
       stream1 := Filename newTemporary writeStream.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2270
       stream2 := stream1 copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2271
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2272
       stream1 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2273
       stream2 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2274
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2275
! !
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2276
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2277
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2278
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2279
argumentMustBeCharacter
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2280
    "report an error, that the argument must be a character in 0..FF"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2281
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2282
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2283
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2284
    ArgumentError raiseErrorString:' - argument must be a single byte character'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2285
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2286
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2287
argumentMustBeInteger
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2288
    "report an error, that the argument must be an integer"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2289
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2290
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2291
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2292
    ArgumentError raiseErrorString:' - argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2293
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2294
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2295
argumentMustBeString
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2296
    "report an error, that the argument must be a string"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2297
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2298
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2299
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2300
    ArgumentError raiseErrorString:' - argument must be a string'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2301
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2302
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2303
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2304
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2305
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2306
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2307
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2308
    ^ OpenError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2309
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2310
	errorString:' - stream is already open'
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2311
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2312
    "
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2313
      self new errorAlreadyOpen
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2314
    "
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2315
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2316
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2317
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2318
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2319
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2320
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2321
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2322
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2323
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2324
    ^ InvalidModeError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2325
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2326
	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
  2327
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2328
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2329
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2330
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2331
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2332
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2333
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2334
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2335
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2336
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2337
    ^ InvalidModeError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2338
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2339
	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
  2340
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2341
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2342
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2343
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2344
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2345
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2346
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2347
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2348
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2349
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2350
    ^ StreamError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2351
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2352
	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
  2353
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2354
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2355
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2356
!
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
errorNotOpen
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2359
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2360
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2361
    "report an error, that the stream has not been opened"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2362
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2363
    ^ 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
  2364
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2365
    "Modified: / 8.5.1999 / 20:12:33 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2366
!
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
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2369
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2370
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2371
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2372
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2373
    ^ 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
  2374
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2375
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2376
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2377
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2378
errorReporter
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2379
    "ST-80 mimicry."
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2380
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  2381
    ^ self class
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2382
!
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2383
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2384
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2385
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2386
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2387
    "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
  2388
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2389
    ^ 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
  2390
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2391
    "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
  2392
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2393
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2394
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2395
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2396
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2397
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2398
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2399
    ^ 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
  2400
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2401
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2402
!
claus
parents: 1
diff changeset
  2403
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2404
ioError
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2405
    "report an error, that some I/O error occured.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2406
     (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
  2407
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2408
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2409
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2410
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2411
    self ioError:lastErrorNumber
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2412
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2413
    "Modified: / 8.5.1999 / 20:12:16 / cg"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2414
!
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2415
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2416
ioError:errorNumber
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2417
    "report an error, that some I/O error occured.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2418
     (for example, a device-IO-error, or reading an NFS-dir,
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2419
     which is no longer available and has been mounted soft)"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2420
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2421
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2422
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2423
    ^ StreamIOError newException
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2424
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2425
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2426
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2427
	raiseRequest
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2428
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2429
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2430
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2431
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2432
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2433
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2434
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2435
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2436
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2437
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2438
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2439
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2440
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2441
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2442
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2443
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2444
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2445
!
claus
parents: 1
diff changeset
  2446
10932
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2447
lastErrorSymbol
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2448
    "return an error symbol describing the last error"
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2449
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2450
    ^ OperatingSystem errorSymbolForNumber:lastErrorNumber
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2451
!
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2452
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2453
openError
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2454
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2455
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2456
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2457
14438
a4280b8038c0 changed:
Stefan Vogel <sv@exept.de>
parents: 14068
diff changeset
  2458
    ^ self openError:lastErrorNumber.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2459
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2460
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2461
openError:errorNumber
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2462
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2463
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2464
    "{ Pragma: +optSpace }"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2465
15496
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2466
    |exClass errorHolder|
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2467
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2468
    errorHolder := OperatingSystem errorHolderForNumber:errorNumber.
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2469
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2470
    exClass := (errorHolder errorCategory == #nonexistentSignal)
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2471
	ifTrue:[ FileDoesNotExistException ]
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2472
	ifFalse:[ OpenError ].
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2473
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2474
    ^ exClass newException
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2475
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2476
	osErrorHolder:errorHolder;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2477
	"/ cg: initialized lazyly - see OpenError>>#description
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2478
	"/ errorString:(' : ' , errorHolder errorString);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2479
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2480
	raiseRequest
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2481
	"/ in:thisContext sender
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2482
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2483
    "Modified: / 09-09-2011 / 07:22:49 / cg"
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2484
!
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2485
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2486
readError
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2487
    "report an error, that some read error occured"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2488
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2489
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2490
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2491
    ^ self readError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2492
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2493
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2494
readError:errorNumber
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2495
    "report an error, that some read error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2496
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2497
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2498
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2499
    ^ ReadError newException
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2500
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2501
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2502
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2503
	raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2504
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2505
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2506
writeError
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2507
    "report an error, that some write error occured"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2508
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2509
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2510
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2511
    ^ self writeError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2512
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2513
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2514
writeError:errorNumber
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2515
    "report an error, that some write error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2516
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2517
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2518
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2519
    ^ WriteError newException
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2520
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2521
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2522
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2523
	raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2524
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2525
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2526
!ExternalStream methodsFor:'finalization'!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2527
15468
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2528
executor
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2529
    "return a copy for finalization-registration;
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2530
     since all we need at finalization time is the fileDescriptor,
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2531
     a cheaper copy is possible."
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2532
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2533
    ^ self class basicNew setAccessor:handleType to:handle
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2534
!
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2535
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2536
finalizationLobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2537
    "answer the registry used for finalization.
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2538
     ExternalStreams have their own Registry"
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2539
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2540
    ^ Lobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2541
!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2542
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2543
finalize
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2544
    "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
  2545
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2546
    self closeFile
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2547
! !
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2548
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2549
!ExternalStream methodsFor:'initialization'!
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2550
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2551
initialize
15921
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2552
    position := 0.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2553
    binary := false.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2554
    buffered := true.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2555
    eolMode := DefaultEOLMode.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2556
    hitEOF := false.
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2557
! !
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2558
2
claus
parents: 1
diff changeset
  2559
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2560
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2561
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2562
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2563
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2564
     If the previous-to-last character is a cr, this is also removed,
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2565
     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
  2566
     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
  2567
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2568
    |line error|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2569
12873
f6b24aa46bb1 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 12710
diff changeset
  2570
%{  /* STACK:100000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2571
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2572
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2573
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2574
    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
  2575
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2576
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2577
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2578
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2579
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2580
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2581
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2582
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2583
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2584
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2585
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2586
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2587
	if (((fp = __INST(handle)) != nil)
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2588
	    && (__INST(mode) != @symbol(writeonly))
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2589
	    && (__INST(binary) != true)
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2590
	) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2591
	    f = __FILEVal(fp);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2592
	    buffer[0] = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2593
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2594
	    _buffered = (__INST(buffered) == true);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2595
	    if (_buffered) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2596
		__READING__(f);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2597
	    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2598
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2599
	    rslt = nextPtr = buffer;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2600
	    limit = buffer + sizeof(buffer) - 2;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2601
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2602
	    for (;;) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2603
		__READBYTE__(ret, f, nextPtr, _buffered, __INST(handleType));
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2604
		if (ret <= 0) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2605
		    if (nextPtr == buffer)
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2606
			rslt = NULL;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2607
		    if (ret == 0) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2608
			__INST(hitEOF) = true;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2609
			break;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2610
		    } else {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2611
			error = __mkSmallInteger(__threadErrno);
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2612
			goto err;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2613
		    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2614
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2615
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2616
		if (*nextPtr == '\n') {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2617
		    cutOff = 1;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2618
		    *nextPtr = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2619
		    break;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2620
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2621
		if (*nextPtr == '\r') {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2622
		    char peekChar;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2623
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2624
		    /*
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2625
		     * peek ahead for a newLine ...
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2626
		     */
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2627
		    __READBYTE__(ret, f, &peekChar, _buffered, __INST(handleType));
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2628
		    if (ret <= 0) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2629
			cutOff = 1;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2630
			*nextPtr = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2631
			if (ret == 0) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2632
			    __INST(hitEOF) = true;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2633
			    break;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2634
			}
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2635
			error = __mkSmallInteger(__threadErrno);
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2636
			goto err;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2637
		    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2638
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2639
		    if (peekChar == '\n') {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2640
			cutOff = 2;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2641
			*nextPtr = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2642
			break;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2643
		    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2644
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2645
		    __UNGETC__(peekChar, f, _buffered);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2646
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2647
		    cutOff = 1;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2648
		    *nextPtr = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2649
		    break;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2650
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2651
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2652
		nextPtr++;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2653
		if (nextPtr >= limit) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2654
		    *nextPtr = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2655
		    lineTooLong = 1;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2656
		    if (@global(InfoPrinting) == true) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2657
			fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2658
		    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2659
		    break;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2660
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2661
	    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2662
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2663
	    if (rslt != NULL) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2664
		len = nextPtr-buffer;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2665
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2666
		if (__isSmallInteger(__INST(position))) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2667
		    INT np = __intVal(__INST(position)) + len + cutOff;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2668
		    OBJ t;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2669
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2670
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2671
		} else {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2672
		    __INST(position) = nil; /* i.e. do not know */
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2673
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2674
		/* remove any EOL character */
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2675
		if (len != 0) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2676
		    if (buffer[len-1] == '\n') {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2677
			buffer[--len] = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2678
		    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2679
		    if ((len != 0) && (buffer[len-1] == '\r')) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2680
			buffer[--len] = '\0';
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2681
		    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2682
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2683
		line = __MKSTRING_L(buffer, len);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2684
		if (! lineTooLong) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2685
		    RETURN ( line );
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2686
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2687
	    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2688
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2689
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2690
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2691
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2692
    line notNil ifTrue:[
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2693
	"/ the line as read is longer than 32k characters (boy - what a line)
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2694
	"/ The exception could be handled by reading more and returning the
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2695
	"/ concatenation in your exception handler (the receiver and the partial
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2696
	"/ line are passed as parameter)
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2697
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2698
	LineTooLongErrorSignal isHandled ifTrue:[
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2699
	    ^ LineTooLongErrorSignal
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2700
		raiseRequestWith:(Array with:self with:line)
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2701
		     errorString:('line too long read error')
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2702
	].
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  2703
	^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2704
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2705
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  2706
    (hitEOF == true) ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2707
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2708
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2709
	^ self readError:error
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2710
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2711
    handle isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2712
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2713
    (binary == true) ifTrue:[^ self errorBinary].
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2714
    ^ super nextLine
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2715
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2716
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2717
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2718
    "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
  2719
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2720
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2721
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2722
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2723
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2724
    int len, cnt, len1, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2725
    OBJ fp;
537
dc4dad8a5ddd many ExtStream rewrites - has to be reevaluated in all platforms
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  2726
    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
  2727
    int o_offs;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2728
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2729
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2730
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2731
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2732
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2733
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2734
	if (((fp = __INST(handle)) != nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2735
	    && (__INST(mode) != @symbol(readonly))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2736
	    && (__INST(binary) != true)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2737
	    && __isStringLike(aString)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2738
	) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2739
	    f = __FILEVal(fp);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2740
	    len = __stringSize(aString);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2741
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2742
	    if (_buffered = (__INST(buffered) == true)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2743
		__WRITING__(f)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2744
	    }
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  2745
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2746
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2747
		cnt = __win32_fwrite(__stringVal(aString), 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2748
	    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2749
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2750
	    {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2751
		o_offs = (char *)__stringVal(aString)-(char *)aString;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2752
		__WRITEBYTES_OBJ__(cnt, f, aString, o_offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2753
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2754
	    if (cnt == len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2755
		OBJ mode = __INST(eolMode);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2756
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2757
		len1 = len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2758
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2759
		if (mode == @symbol(cr)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2760
		    cp = "\r"; len = 1;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2761
		} else if (mode == @symbol(crlf)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2762
		    cp = "\r\n"; len = 2;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2763
		} else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2764
		    cp = "\n"; len = 1;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2765
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2766
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2767
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2768
		    cnt = __win32_fwrite(cp, 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2769
		} else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2770
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2771
		{
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2772
		    __WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2773
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2774
		if (cnt > 0) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2775
		    if (__isSmallInteger(__INST(position))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2776
			INT np = __intVal(__INST(position)) + cnt;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2777
			OBJ t;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2778
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2779
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2780
		    } else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2781
			__INST(position) = nil; /* i.e. do not know */
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2782
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2783
		    RETURN ( self );
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2784
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2785
	    }
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2786
	    error = __mkSmallInteger(__threadErrno);
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2787
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2788
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2789
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2790
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2791
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2792
	self writeError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2793
	^ self
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2794
    ].
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2795
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2796
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2797
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2798
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2799
    "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
  2800
     and append all lines to self.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2801
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2802
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2803
     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
  2804
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2805
    |line|
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2806
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2807
    [aStream atEnd] whileFalse:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2808
	line := aStream nextLine.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2809
	line isNil ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2810
	    ^ self.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2811
	].
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2812
	self nextPutLine:line.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2813
	(aStringOrNil notNil and:[line startsWith:aStringOrNil]) ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2814
	    ^ self
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2815
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2816
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2817
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2818
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2819
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2820
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2821
     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
  2822
     If matched, do not advance position beyond that line
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2823
     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
  2824
     If not matched, reposition to original position for further reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2825
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2826
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2827
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2828
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2829
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2830
    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
  2831
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2832
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2833
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2834
    [self atEnd] whileFalse:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2835
	lastPos := self position.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2836
	line := self nextLine.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2837
	line isNil ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2838
	    self position:firstPos.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2839
	    ^ nil
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2840
	].
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2841
	(line startsWith:aString) ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2842
	    self position:lastPos.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2843
	    ^ line
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2844
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2845
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2846
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2847
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2848
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2849
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2850
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2851
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2852
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2853
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2854
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2855
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2856
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2857
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2858
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2859
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2860
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2861
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2862
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2863
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2864
	linePos := self position.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2865
	line := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2866
	line notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2867
	    index := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2868
	    aCollectionOfStrings do:[:prefix |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2869
		(line startsWith:prefix) ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2870
		    self position:linePos.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2871
		    ^ index
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2872
		].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2873
		index := index + 1
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2874
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2875
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2876
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2877
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2878
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2879
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2880
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2881
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2882
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2883
async:aBoolean
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2884
    "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
  2885
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2886
     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
  2887
     Notice:
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2888
	not every OS supports this
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2889
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2890
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2891
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2892
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2893
    handle isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2894
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2895
    OperatingSystem supportsIOInterrupts ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2896
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2897
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2898
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2899
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2900
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2901
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2902
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2903
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2904
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2905
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2906
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2907
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2908
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2909
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2910
     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
  2911
     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
  2912
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2913
     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
  2914
     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
  2915
     in advance. However, the data must then be read using #nextBytes:
8616
6014ed5c67f9 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8614
diff changeset
  2916
     methods, in order to avoid other (pastEndRead) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2917
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2918
    handle isNil ifTrue:[^ self errorNotOpen].
7499
53b7a86e1f0b ExternalStream>>blocking: returns previous blocking status
Stefan Vogel <sv@exept.de>
parents: 7497
diff changeset
  2919
    ^ 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
  2920
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2921
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2922
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2923
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2924
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2925
copyToEndInto:outStream
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2926
    "copy the data into another stream."
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2927
8362
e17d9ffb6fa8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8339
diff changeset
  2928
    |bufferSize|
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2929
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2930
    OperatingSystem isMSDOSlike ifTrue:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2931
	"/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2932
	bufferSize := 1 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2933
    ] ifFalse:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2934
	bufferSize := 8 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2935
    ].
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2936
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2937
    ^ self copyToEndInto:outStream bufferSize:bufferSize
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2938
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2939
    "
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2940
     |in out|
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2941
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2942
     in := 'Makefile' asFilename readStream.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2943
     out := Stdout.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2944
     in copyToEndInto:out.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2945
     in close.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2946
    "
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2947
!
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2948
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2949
create
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2950
    "create the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2951
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2952
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2953
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2954
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2955
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2956
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2957
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2958
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2959
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2960
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2961
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2962
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2963
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2964
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2965
     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
  2966
     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
  2967
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2968
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2969
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2970
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2971
     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
  2972
     If the argument is an integral number, its directly passed;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2973
     if its a kind of ByteArray (ByteArray, String or Structure),
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2974
     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
  2975
     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
  2976
     This allows performing most ioctls
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2977
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2978
     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
  2979
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2980
%{
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2981
#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
  2982
    FILEPOINTER f;
10552
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  2983
    int ret;
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  2984
    unsigned int ioNum;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2985
    OBJ fp;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2986
    INT ioArg;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2987
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2988
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2989
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2990
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2991
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2992
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2993
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2994
	    if (__isInteger(ioctlNumber)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2995
	     && (__isInteger(arg)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2996
		 || (arg == nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2997
		 || __isBytes(arg)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2998
		 || __isExternalBytesLike(arg)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2999
		 || __isExternalAddress(arg))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3000
		f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3001
		ioNum = __unsignedLongIntVal(ioctlNumber);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3002
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3003
		__BEGIN_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3004
		do {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3005
		    __threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3006
		    if (arg == nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3007
			ioArg = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3008
		    } else if (__isSmallInteger(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3009
			ioArg = __intVal(arg);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3010
		    } else if (__isInteger(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3011
			ioArg = __unsignedLongIntVal(arg);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3012
		    } else if (__isExternalBytesLike(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3013
			ioArg = (INT)(__externalBytesAddress(arg));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3014
		    } else if (__isExternalAddress(arg)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3015
			ioArg = (INT)(__externalAddressVal(arg));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3016
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3017
			ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3018
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3019
		    ret = ioctl(fileno(f), ioNum, ioArg);
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3020
		} while (ret < 0 && __threadErrno == EINTR);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3021
		__END_INTERRUPTABLE__
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3022
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3023
		if (ret >= 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3024
		    RETURN ( __mkSmallInteger(ret) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3025
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3026
		__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3027
		__INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3028
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3029
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3030
    }
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  3031
#endif
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3032
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3033
    lastErrorNumber notNil ifTrue:[^ self ioError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3034
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3035
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3036
     argument is not an integer
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3037
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3038
    (ioctlNumber isMemberOf:SmallInteger) ifFalse:[^ self primitiveFailed].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3039
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3040
     the system does not support ioctl (MSDOS or VMS)
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3041
    "
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3042
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3043
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3044
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3045
reset
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3046
    "set the read position to the beginning of the collection"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3047
15361
ff526d39bb07 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 15342
diff changeset
  3048
    self position:0
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3049
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3050
1044
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3051
setToEnd
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3052
    "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
  3053
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3054
    ^ self subclassResponsibility
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3055
!
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3056
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3057
sync
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3058
    "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
  3059
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3060
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3061
14774
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3062
    self flush.
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3063
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3064
%{
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3065
#if !defined(__openVMS__)
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3066
    FILEPOINTER f;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3067
    int ret;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3068
    OBJ fp;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3069
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3070
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3071
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3072
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3073
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3074
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3075
	if ((fp = __INST(handle)) != nil) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3076
	    f = __FILEVal(fp);
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3077
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3078
	    __threadErrno = 0;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3079
	    ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fileno(f)));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3080
	    if (ret) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3081
		RETURN (self);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3082
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3083
#else
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3084
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3085
	    __BEGIN_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3086
	    do {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3087
		ret = fsync(fileno(f));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3088
	    } while ((ret < 0) && (__threadErrno == EINTR));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3089
	    __END_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3090
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3091
	    if (ret >= 0) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3092
		RETURN (self);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3093
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3094
#endif /* ! WIN32 */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3095
	    error = __mkSmallInteger(__threadErrno);
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3096
	}
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3097
    }
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3098
#endif /* ! __openVMS__ */
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3099
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3100
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3101
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3102
	self ioError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3103
	^ self.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3104
    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3105
    handle isNil ifTrue:[self errorNotOpen].
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3106
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3107
    "
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3108
	|f|
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3109
	f := 'x' asFilename writeStream.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3110
	f nextPutAll:'hallo'; sync; syncData; close
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3111
    "
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3112
!
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3113
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3114
syncData
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3115
    "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
  3116
     In this case, metadata is only written, if it is
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3117
     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
  3118
     if only access/modification time has changed)."
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3119
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3120
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3121
14774
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3122
    self flush.
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3123
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3124
%{
12553
301348f23939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12552
diff changeset
  3125
#if defined(HAS_FDATASYNC)
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3126
    int ret;
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3127
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3128
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3129
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3130
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3131
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3132
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3133
	OBJ fp;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3134
	FILEPOINTER f;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3135
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3136
	if ((fp = __INST(handle)) != nil) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3137
	    f = __FILEVal(fp);
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3138
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3139
	    __threadErrno = 0;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3140
	    ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fileno(f)));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3141
	    if (ret) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3142
		RETURN (self);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3143
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3144
#else
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3145
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3146
	    __BEGIN_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3147
	    do {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3148
		ret = fdatasync(fileno(f));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3149
	    } while ((ret < 0) && (__threadErrno == EINTR));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3150
	    __END_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3151
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3152
	    if (ret >= 0) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3153
		RETURN (self);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3154
	    }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3155
#endif /* ! WIN32 */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3156
	    error = __mkSmallInteger(__threadErrno);
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3157
	}
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3158
    }
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3159
#endif /* ! __openVMS__ */
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3160
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3161
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3162
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3163
	self ioError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3164
	^ self.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3165
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3166
    handle isNil ifTrue:[^ self errorNotOpen].
11651
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3167
14760
3cd759eef99f class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14753
diff changeset
  3168
    "if notdef HAS_DATASYNC, fall back"
3cd759eef99f class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14753
diff changeset
  3169
    self sync.
3cd759eef99f class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14753
diff changeset
  3170
11651
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3171
    "
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3172
	|f|
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3173
	f := 'x' asFilename writeStream.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  3174
	f nextPutAll:'hallo'; sync; syncData; close
11651
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3175
    "
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3176
!
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3177
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3178
truncateTo:newSize
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3179
    "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
  3180
     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
  3181
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  3182
%{
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3183
#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
  3184
    FILEPOINTER f;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3185
    OBJ fp;
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3186
    off_t truncateSize;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3187
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3188
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3189
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3190
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3191
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3192
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3193
	    && (__INST(mode) != @symbol(readonly))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3194
	    if (__isSmallInteger(newSize)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3195
		truncateSize = __intVal(newSize);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3196
		if (truncateSize < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3197
		    goto getOutOfHere;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3198
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3199
	    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3200
		truncateSize = __signedLongIntVal(newSize);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3201
		if (truncateSize < 0) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3202
		    goto getOutOfHere;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3203
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3204
		if (truncateSize == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3205
		    if (sizeof(truncateSize) == 8) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3206
			if (__signedLong64IntVal(newSize, &truncateSize) == 0 || truncateSize < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3207
			    goto getOutOfHere;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3208
			}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3209
		    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3210
			goto getOutOfHere;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3211
		    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3212
		}
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3213
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3214
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3215
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3216
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3217
	    if (__INST(buffered) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3218
		__READING__(f)
10352
f2e9bb8906db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  3219
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3220
		if ((dst == __win32_stdout()) || (dst == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3221
		    win32_fflush(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3222
		} else
10352
f2e9bb8906db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  3223
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3224
		{
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3225
		    FFLUSH(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3226
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3227
		OPT_FSEEK(f, 0L, SEEK_END); /* needed in stdio */
10352
f2e9bb8906db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  3228
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3229
	    ftruncate(fileno(f), truncateSize);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3230
	    RETURN (self);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3231
	}
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3232
    }
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3233
getOutOfHere: ;
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3234
#endif
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3235
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3236
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3237
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3238
    newSize < 0 ifTrue:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  3239
	self error:'wrong arg'.
7887
c5df7cf8d667 LargeFile support for truncateTo:
Stefan Vogel <sv@exept.de>
parents: 7883
diff changeset
  3240
    ].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  3241
    self errorUnsupportedOperation
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3242
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3243
    "
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3244
     |s|
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3245
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3246
     s := 'test' asFilename writeStream.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3247
     s next:1000 put:$a.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3248
     s truncateTo:100.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3249
     s close.
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3250
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3251
     ('test' asFilename fileSize) printNL
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3252
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3253
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3254
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3255
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3256
15254
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3257
next:count into:anObject startingAt:start
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3258
    "read the next count bytes into an object and return the number of
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3259
     bytes read or the number of bytes read, if EOF is encountered before.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3260
     If the receiver is some socket/pipe-like stream, an exception
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3261
     is raised if the connection is broken.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3262
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3263
     Warning: if used with a pipe/socket, this blocks until the requested number
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3264
     of bytes have been read. See #nextAvailableBytes:into:startingAt:
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3265
     to only read whats there.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3266
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3267
     Notice, that in contrast to other methods,
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3268
     this does NOT return nil on EOF, but the actual count.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3269
     Thus allowing read of partial blocks.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3270
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3271
     The object must have non-pointer indexed instvars
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3272
     (i.e. it must be a ByteArray, String, Float- or DoubleArray),
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3273
     or an externalBytes object (with known size).
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3274
     If anObject is a string or byteArray and reused, this provides the
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3275
     fastest possible physical I/O (since no new objects are allocated).
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3276
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3277
     Use with care - non object oriented I/O.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3278
     Warning: in general, you cannot use this method to pass data from other
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3279
     architectures (unless you prepared the buffer with care),
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3280
     since it does not care for byte order or float representation."
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3281
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3282
    ^ self nextBytes:count into:anObject startingAt:start
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3283
!
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3284
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3285
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3286
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3287
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3288
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3289
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3290
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3291
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3292
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3293
    binary ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3294
	buffer := ByteArray uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3295
    ] ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3296
	buffer := String uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3297
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3298
    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
  3299
    n == 0 ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3300
	binary ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3301
	    ^ #[]
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3302
	].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3303
	^ ''
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3304
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3305
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3306
    n ~~ count ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3307
	^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3308
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3309
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3310
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3311
    "
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3312
     (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
  3313
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3314
     (ReadStream on:'hello') nextAvailable:3
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3315
     (ReadStream on:'hello') nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3316
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3317
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3318
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3319
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3320
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3321
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3322
    "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
  3323
     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
  3324
     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
  3325
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3326
     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
  3327
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3328
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3329
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3330
     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
  3331
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3332
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3333
     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
  3334
     (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
  3335
     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
  3336
     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
  3337
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3338
     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
  3339
     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
  3340
     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
  3341
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3342
    |error|
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3343
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3344
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3345
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3346
    int objSize, nInstBytes;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3347
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3348
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3349
    OBJ fp;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3350
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3351
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3352
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3353
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3354
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3355
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3356
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3357
	if (((fp = __INST(handle)) != nil)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3358
	    && (__INST(mode) != @symbol(writeonly))
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3359
	    && __bothSmallInteger(count, start)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3360
	) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3361
	    f = __FILEVal(fp);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3362
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3363
	    cnt = __intVal(count);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3364
	    offs = __intVal(start) - 1;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3365
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3366
	    if (__isExternalBytesLike(anObject)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3367
		OBJ sz;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3368
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3369
		nInstBytes = 0;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3370
		extPtr = (char *)(__externalBytesAddress(anObject));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3371
		if (extPtr == NULL) goto bad;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3372
		sz = __externalBytesSize(anObject);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3373
		if (__isSmallInteger(sz)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3374
		    objSize = __intVal(sz);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3375
		} else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3376
		    objSize = 0; /* unknown */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3377
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3378
	    } else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3379
		OBJ oClass = __Class(anObject);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3380
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3381
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3382
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3383
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3384
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3385
		    case BYTEARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3386
		    case WORDARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3387
		    case LONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3388
		    case SWORDARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3389
		    case SLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3390
		    case FLOATARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3391
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3392
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3393
#ifdef __NEED_DOUBLE_ALIGN
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3394
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3395
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3396
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3397
		    case LONGLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3398
		    case SLONGLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3399
#ifdef __NEED_LONGLONG_ALIGN
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3400
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3401
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3402
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3403
		    default:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3404
			goto bad;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3405
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3406
		extPtr = (char *)0;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3407
		objSize = __Size(anObject) - nInstBytes;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3408
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3409
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3410
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3411
		_buffered = (__INST(buffered) == true);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3412
		if (_buffered) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3413
		    __READING__(f);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3414
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3415
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3416
		if (extPtr) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3417
		    __READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3418
		} else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3419
		    /*
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3420
		     * on interrupt, anObject may be moved to another location.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3421
		     * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3422
		     * to get a new address.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3423
		     */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3424
		    offs += nInstBytes;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3425
		    __READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3426
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3427
		/* 0 is NOT an EOF condition here ... */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3428
		if (ret >= 0) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3429
		    if (__isSmallInteger(__INST(position))) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3430
			INT np = __intVal(__INST(position)) + ret;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3431
			OBJ t;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3432
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3433
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3434
		    } else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3435
			__INST(position) = nil; /* i.e. do not know */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3436
		    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3437
		    RETURN (__mkSmallInteger(ret));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3438
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3439
		__INST(position) = nil;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3440
		error = __mkSmallInteger(__threadErrno);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3441
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3442
	}
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3443
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3444
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3445
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3446
    (hitEOF and:[self pastEndRead isNil]) ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3447
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3448
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3449
	^ self readError:error
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3450
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3451
    handle isNil ifTrue:[^ self errorNotOpen].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3452
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3453
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3454
     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
  3455
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3456
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3457
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3458
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3459
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3460
    "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
  3461
     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
  3462
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3463
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3464
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3465
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3466
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3467
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3468
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3469
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3470
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3471
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3472
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3473
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3474
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3475
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3476
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3477
	 && (__INST(mode) != @symbol(writeonly))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3478
	    f = __FILEVal(fp);
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
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3481
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3482
		__READING__(f)
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3483
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3484
	    __READBYTE__(ret, f, &byte, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3485
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3486
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3487
		    INT np = __intVal(__INST(position)) + 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3488
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3489
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3490
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3491
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3492
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3493
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3494
		RETURN (__mkSmallInteger(byte));
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
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3497
	    if (ret == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3498
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3499
	    } else /* ret < 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3500
		__INST(position) = nil;
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3501
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3502
	    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3503
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3504
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3505
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3506
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3507
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3508
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3509
	^ self readError:error
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3510
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3511
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3512
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3513
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3514
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3515
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3516
    "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
  3517
     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
  3518
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3519
     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
  3520
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3521
     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
  3522
     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
  3523
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3524
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3525
     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
  3526
     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
  3527
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3528
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3529
     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
  3530
     (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
  3531
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3532
     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
  3533
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3534
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3535
     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
  3536
     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
  3537
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3538
     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
  3539
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3540
    |error|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3541
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3542
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3543
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3544
    int objSize, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3545
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3546
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3547
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3548
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3549
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3550
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3551
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3552
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3553
	if (((fp = __INST(handle)) != nil)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3554
	    && (__INST(mode) != @symbol(writeonly))
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3555
	    && __bothSmallInteger(count, start)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3556
	) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3557
	    f = __FILEVal(fp);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3558
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3559
	    cnt = __intVal(count);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3560
	    offs = __intVal(start) - 1;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3561
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3562
	    if (__isExternalBytesLike(anObject)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3563
		OBJ sz;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3564
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3565
		nInstBytes = 0;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3566
		extPtr = (char *)(__externalBytesAddress(anObject));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3567
		if (extPtr == NULL) goto bad;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3568
		sz = __externalBytesSize(anObject);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3569
		if (__isSmallInteger(sz)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3570
		    objSize = __intVal(sz);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3571
		} else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3572
		    objSize = 0; /* unknown */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3573
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3574
	    } else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3575
		OBJ oClass = __Class(anObject);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3576
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3577
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3578
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3579
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3580
		    case BYTEARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3581
		    case WORDARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3582
		    case LONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3583
		    case SWORDARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3584
		    case SLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3585
		    case FLOATARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3586
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3587
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3588
#ifdef __NEED_DOUBLE_ALIGN
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3589
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3590
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3591
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3592
		    case LONGLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3593
		    case SLONGLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3594
#ifdef __NEED_LONGLONG_ALIGN
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3595
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3596
#endif
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3597
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3598
		    default:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3599
			goto bad;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3600
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3601
		extPtr = (char *)0;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3602
		objSize = __Size(anObject) - nInstBytes;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3603
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3604
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3605
		_buffered = (__INST(buffered) == true);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3606
		if (_buffered) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3607
		    __READING__(f);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3608
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3609
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3610
		if (extPtr) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3611
		    __READBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3612
		} else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3613
		    /*
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3614
		     * on interrupt, anObject may be moved to another location.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3615
		     * So we pass anObject, and the offset to the __READBYTES_OBJ__ macro.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3616
		     */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3617
		    offs += nInstBytes;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3618
		    __READBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3619
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3620
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3621
		if (ret > 0) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3622
		    if (__isSmallInteger(__INST(position))) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3623
			INT np = __intVal(__INST(position)) + ret;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3624
			OBJ t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3625
		    } else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3626
			__INST(position) = nil; /* i.e. do not know */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3627
		    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3628
		    RETURN (__mkSmallInteger(ret));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3629
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3630
		if (ret == 0) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3631
		    __INST(hitEOF) = true;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3632
		} else /* ret < 0 */ {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3633
		    __INST(position) = nil;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3634
		    error = __mkSmallInteger(__threadErrno);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3635
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3636
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3637
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3638
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3639
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3640
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3641
    (hitEOF and:[self pastEndRead isNil]) ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3642
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3643
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3644
	^ self readError:error
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3645
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3646
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3647
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3648
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3649
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3650
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3651
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3652
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3653
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3654
nextLong
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3655
    "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
  3656
     The returned value may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3657
     (msb-first for compatibility with other smalltalks)"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3658
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3659
    ^ self nextUnsignedLongMSB:true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3660
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3661
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3662
nextLongMSB:msbFlag
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3663
    "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
  3664
     which may be a LargeInteger.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3665
     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
  3666
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3667
     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
  3668
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3669
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3670
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3671
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3672
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3673
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3674
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3675
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3676
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3677
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3678
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3679
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3680
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3681
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3682
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3683
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3684
	    int value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3685
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3686
		unsigned char buffer[4];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3687
		int intVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3688
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3689
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3690
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3691
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3692
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3693
		__READING__(f)
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3694
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3695
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3696
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3697
	    if (ret == 4) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3698
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3699
		    INT np = __intVal(__INST(position)) + 4;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3700
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3701
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3702
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3703
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3704
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3705
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3706
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3707
#if defined(__MSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3708
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3709
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3710
		    value = (u.buffer[0] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3711
		    value = (value << 8) | (u.buffer[1] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3712
		    value = (value << 8) | (u.buffer[2] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3713
		    value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3714
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3715
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3716
#if defined(__LSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3717
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3718
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3719
		    value = (u.buffer[3] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3720
		    value = (value << 8) | (u.buffer[2] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3721
		    value = (value << 8) | (u.buffer[1] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3722
		    value = (value << 8) | (u.buffer[0] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3723
#endif
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 __POINTER_SIZE__ == 8
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3726
		RETURN ( __mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3727
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3728
		if ((value >= _MIN_INT) && (value <= _MAX_INT)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3729
		    RETURN ( __mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3730
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3731
		RETURN ( __MKLARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3732
#endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3733
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3734
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3735
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3736
		__INST(position) = nil;
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3737
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3738
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3739
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3740
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3741
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3742
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3743
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3744
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3745
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3746
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3747
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3748
    ^ self readError:error.
362
claus
parents: 360
diff changeset
  3749
!
claus
parents: 360
diff changeset
  3750
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3751
nextShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3752
    "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
  3753
     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
  3754
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3755
     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
  3756
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3757
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3758
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3759
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3760
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3761
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3762
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3763
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3764
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3765
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3766
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3767
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3768
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3769
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3770
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3771
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3772
	    short value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3773
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3774
		unsigned char buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3775
		short shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3776
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3777
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3778
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3779
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3780
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3781
		__READING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3782
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3783
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3784
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3785
	    if (ret == 2) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3786
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3787
		    INT np = __intVal(__INST(position)) + 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3788
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3789
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3790
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3791
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3792
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3793
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3794
		if (msbFlag == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3795
#if defined(__MSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3796
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3797
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3798
		    value = ((u.buffer[0] & 0xFF) << 8) | (u.buffer[1] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3799
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3800
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3801
#if defined(__LSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3802
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3803
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3804
		    value = ((u.buffer[1] & 0xFF) << 8) | (u.buffer[0] & 0xFF);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3805
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3806
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3807
		RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3808
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3809
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3810
	    if (ret < 0) {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3811
		__INST(position) = nil; /* i.e. do not know */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3812
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3813
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3814
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3815
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3816
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3817
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3818
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3819
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3820
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3821
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3822
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3823
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3824
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3825
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3826
nextUnsignedLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3827
    "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
  3828
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3829
     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
  3830
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3831
     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
  3832
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3833
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3834
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3835
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3836
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3837
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3838
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3839
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3840
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3841
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3842
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3843
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3844
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3845
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3846
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3847
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3848
	    unsigned INT value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3849
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3850
		unsigned char buffer[4];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3851
		unsigned int intVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3852
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3853
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3854
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3855
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3856
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3857
		__READING__(f)
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3858
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3859
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3860
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3861
	    if (ret == 4) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3862
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3863
		    INT np = __intVal(__INST(position)) + 4;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3864
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3865
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3866
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3867
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3868
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3869
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3870
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3871
#if defined(__MSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3872
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3873
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3874
		    value = u.buffer[0];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3875
		    value = (value << 8) | u.buffer[1];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3876
		    value = (value << 8) | u.buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3877
		    value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3878
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3879
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3880
#if defined(__LSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3881
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3882
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3883
		    value = u.buffer[3];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3884
		    value = (value << 8) | u.buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3885
		    value = (value << 8) | u.buffer[1];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3886
		    value = (value << 8) | u.buffer[0];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3887
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3888
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3889
#if __POINTER_SIZE__ == 8
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3890
		value &= 0xFFFFFFFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3891
		RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3892
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3893
		if (value <= _MAX_INT) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3894
		    RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3895
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3896
		RETURN (__MKULARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3897
#endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3898
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3899
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3900
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3901
		__INST(position) = nil; /* i.e. do not know */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3902
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3903
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3904
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3905
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3906
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3907
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3908
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3909
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3910
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3911
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3912
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3913
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3914
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3915
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3916
nextUnsignedShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3917
    "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
  3918
     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
  3919
     otherwise least-significant byte comes first.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3920
     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
  3921
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3922
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3923
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3924
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3925
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3926
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3927
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3928
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3929
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3930
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3931
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3932
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3933
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3934
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3935
	    FILEPOINTER f;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3936
	    int ret, _buffered;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3937
	    unsigned int value;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3938
	    union {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3939
		unsigned char buffer[2];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3940
		unsigned short shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3941
	    } u;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3942
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3943
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3944
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3945
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3946
		__READING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3947
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3948
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3949
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3950
	    if (ret == 2) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3951
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3952
		    INT np = __intVal(__INST(position)) + 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3953
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3954
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3955
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3956
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3957
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3958
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3959
		if (msbFlag == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3960
#if defined(__MSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3961
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3962
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3963
		    value = (u.buffer[0] << 8) | u.buffer[1];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3964
#endif
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
#if defined(__LSBFIRST__)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3967
		    value = u.shortVal;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3968
#else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3969
		    value = (u.buffer[1] << 8) | u.buffer[0];
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3970
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3971
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3972
		RETURN (__mkSmallInteger(value));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3973
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3974
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3975
	    if (ret < 0) {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3976
		__INST(position) = nil; /* i.e. do not know */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3977
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3978
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3979
		__INST(hitEOF) = true;
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3980
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3981
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3982
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3983
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3984
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3985
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3986
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3987
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3988
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3989
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3990
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3991
nextWord
15452
e2a3b2dc064b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15435
diff changeset
  3992
    <resource: #obsolete>
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3993
    "in text-mode:
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  3994
	 read the alphaNumeric next word (i.e. up to non letter-or-digit).
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  3995
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3996
     in binary-mode:
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  3997
	 read two bytes (msb-first) and return the value as a 16-bit
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  3998
	 unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3999
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4000
    binary ifTrue:[
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  4001
	^ self nextUnsignedShortMSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4002
    ].
14518
7dad78183779 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14440
diff changeset
  4003
    self obsoleteMethodWarning:'use #nextAlphaNumericWord'.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4004
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4005
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4006
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4007
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4008
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4009
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4010
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4011
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4012
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4013
|error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4014
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4015
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4016
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4017
    char c;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4018
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4019
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4020
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4021
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4022
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4023
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4024
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4025
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4026
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4027
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4028
	    && __isSmallInteger(aByteValue)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4029
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4030
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4031
	    c = __intVal(aByteValue);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4032
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4033
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4034
		__WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4035
	    }
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  4036
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4037
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4038
		cnt = __win32_fwrite(&c, 1, 1, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4039
	    } else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  4040
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4041
	    {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4042
		__WRITEBYTE__(cnt, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4043
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4044
	    if (cnt == 1) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4045
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4046
		    INT np = __intVal(__INST(position)) + 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4047
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4048
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4049
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4050
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4051
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4052
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4053
		RETURN (self);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4054
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4055
	    if (cnt < 0) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4056
		__INST(position) = nil; /* i.e. do not know */
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4057
	    }
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4058
	    error = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4059
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4060
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4061
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4062
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4063
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4064
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4065
    self writeError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4066
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4067
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4068
nextPutBytes:count from:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4069
    "write count bytes from an object starting at index start.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4070
     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
  4071
     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
  4072
     (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
  4073
     or an externalBytes object (with known size).
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4074
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4075
     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
  4076
     Warning:
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4077
	in general, you cannot use this method to pass non-byte data to other
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4078
	architectures (unless you prepared the buffer with care),
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4079
	since it does not care for byte order or float representation."
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4080
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4081
    |error|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4082
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4083
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4084
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4085
    int cnt, len, offs, ret;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4086
    int objSize, nInstBytes, _buffered;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4087
    char *extPtr;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4088
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4089
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4090
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4091
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4092
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4093
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4094
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4095
	if (((fp = __INST(handle)) != nil)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4096
	    && (__INST(mode) != @symbol(readonly))
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4097
	    && __bothSmallInteger(count, start)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4098
	) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4099
	    len = __intVal(count);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4100
	    offs = __intVal(start) - 1;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4101
	    f = __FILEVal(fp);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4102
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4103
	    if (__isExternalBytesLike(anObject)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4104
		OBJ sz;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4105
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4106
		nInstBytes = 0;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4107
		extPtr = (char *)__externalBytesAddress(anObject);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4108
		if (extPtr == NULL) goto bad;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4109
		sz = __externalBytesSize(anObject);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4110
		if (__isSmallInteger(sz)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4111
		    objSize = __intVal(sz);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4112
		} else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4113
		    objSize = 0; /* unknown */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4114
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4115
	    } else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4116
		OBJ oClass = __Class(anObject);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4117
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4118
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4119
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4120
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4121
		    case BYTEARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4122
		    case WORDARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4123
		    case LONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4124
		    case SWORDARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4125
		    case SLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4126
		    case FLOATARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4127
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4128
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4129
#ifdef __NEED_DOUBLE_ALIGN
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4130
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4131
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4132
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4133
		    case LONGLONGARRAY:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4134
		    case SLONGLONGARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4135
#ifdef __NEED_LONGLONG_ALIGN
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4136
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4137
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4138
			break;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4139
		    default:
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4140
			goto bad;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4141
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4142
		extPtr = (char *)0;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4143
		objSize = __Size(anObject) - nInstBytes;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4144
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4145
	    if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4146
		if (_buffered = (__INST(buffered) == true)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4147
		    __WRITING__(f)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4148
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4149
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4150
		if (extPtr) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4151
		    __WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered, __INST(handleType));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4152
		} else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4153
		    /*
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4154
		     * on interrupt, anObject may be moved to another location.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4155
		     * So we pass anObject, and the offset to the __WRITEBYTES_OBJ__ macro.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4156
		     */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4157
		    offs += nInstBytes;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4158
		    __WRITEBYTES_OBJ__(cnt, f, anObject, offs, len, _buffered, __INST(handleType));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4159
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4160
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4161
		if (cnt >= 0) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4162
		    if (__isSmallInteger(__INST(position))) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4163
			INT np = __intVal(__INST(position)) + cnt;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4164
			OBJ t;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4165
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4166
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4167
		    } else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4168
			__INST(position) = nil; /* i.e. do not know */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4169
		    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4170
		    RETURN ( __mkSmallInteger(cnt) );
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4171
		} else /* cnt < 0 */ {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4172
		    if (
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4173
#ifdef EWOULDBLOCK
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4174
			(__threadErrno == EWOULDBLOCK) ||
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4175
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4176
			(__threadErrno == EAGAIN)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4177
		    ) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4178
			RETURN ( __mkSmallInteger(0) );
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4179
		    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4180
		    __INST(position) = nil; /* i.e. do not know */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4181
		    error = __mkSmallInteger(__threadErrno);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4182
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4183
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4184
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4185
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4186
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4187
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4188
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4189
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4190
	self writeError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4191
	^ self
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4192
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4193
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4194
    (mode == #readonly) ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4195
    ^ self primitiveFailed
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4198
nextPutLong:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4199
    "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
  4200
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4201
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4202
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4203
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4204
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4205
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4206
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4207
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4208
    union {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4209
	char bytes[4];
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4210
	int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4211
    } u;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4212
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4213
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4214
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4215
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4216
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4217
    if (__isSmallInteger(aNumber)) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4218
	num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4219
    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4220
#if __POINTER_SIZE__ == 8
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4221
	goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4222
#else
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4223
	num = __longIntVal(aNumber);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4224
	if (num == 0) {
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4225
	    num = __signedLongIntVal(aNumber);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4226
	    if (num == 0) {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4227
		/* bad arg or out-of-range integer
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4228
		 * (handled by the fallBack code)
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4229
		 */
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4230
		goto badArg;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4231
	    }
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4232
	}
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4233
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4234
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4235
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4236
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4237
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4238
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4239
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4240
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4241
	 && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4242
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4243
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4244
#if defined(__MSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4245
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4246
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4247
		u.bytes[0] = (num >> 24) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4248
		u.bytes[1] = (num >> 16) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4249
		u.bytes[2] = (num >> 8) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4250
		u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4251
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4252
	    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4253
#if defined(__LSBFIRST__)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4254
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4255
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4256
		u.bytes[3] = (num >> 24) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4257
		u.bytes[2] = (num >> 16) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4258
		u.bytes[1] = (num >> 8) & 0xFF;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4259
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4260
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4261
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4262
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4263
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4264
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4265
		__WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4266
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4267
	    __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4268
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4269
	    if (cnt == 4) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4270
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4271
		    INT np = __intVal(__INST(position)) + 4;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4272
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4273
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4274
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4275
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4276
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4277
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4278
		RETURN ( self );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4279
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4280
	    __INST(position) = nil; /* i.e. do not know */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4281
	    error = __mkSmallInteger(__threadErrno);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4282
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4283
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4284
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4285
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4286
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4287
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4288
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4289
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4290
	self writeError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4291
	^ self
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4292
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4293
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4294
    aNumber isInteger ifTrue:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  4295
	^ super nextPutLong:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4296
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4297
    self argumentMustBeInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4298
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4299
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  4300
nextPutShort:anIntegerOrCharacter MSB:msbFlag
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  4301
    "Write the argument, anIntegerOrCharacter as a short (two bytes). If msbFlag is
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4302
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4303
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4304
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4305
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4306
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4307
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4308
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4309
    union {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4310
	char bytes[2];
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4311
	short shortVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4312
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4313
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4314
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4315
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4316
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4317
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4318
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4319
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4320
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4321
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4322
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4323
	if (((fp = __INST(handle)) != nil)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4324
	    && (__INST(mode) != @symbol(readonly))
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4325
	) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4326
	    if (__isSmallInteger(anIntegerOrCharacter)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4327
		num = __intVal(anIntegerOrCharacter);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4328
	    } else if (__isCharacter(anIntegerOrCharacter)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4329
		num = __smallIntegerVal(__characterVal(anIntegerOrCharacter));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4330
	    } else
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4331
		goto out;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4332
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4333
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4334
#if defined(__MSBFIRST__)
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4335
		u.shortVal = num;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4336
#else
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4337
		u.bytes[0] = (num >> 8) & 0xFF;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4338
		u.bytes[1] = num & 0xFF;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4339
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4340
	    } else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4341
#if defined(__LSBFIRST__)
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4342
		u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4343
#else
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4344
		u.bytes[1] = (num >> 8) & 0xFF;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4345
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4346
#endif
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4347
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4348
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4349
	    f = __FILEVal(fp);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4350
	    if (_buffered = (__INST(buffered) == true)) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4351
		__WRITING__(f)
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4352
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4353
	    __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered, __INST(handleType));
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4354
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4355
	    if (cnt == 2) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4356
		if (__isSmallInteger(__INST(position))) {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4357
		    INT np = __intVal(__INST(position)) + 2;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4358
		    OBJ t;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4359
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4360
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4361
		} else {
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4362
		    __INST(position) = nil; /* i.e. do not know */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4363
		}
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4364
		RETURN ( self );
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4365
	    }
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4366
	    __INST(position) = nil; /* i.e. do not know */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4367
	    error = __mkSmallInteger(__threadErrno);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4368
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4369
    }
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  4370
out:;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4371
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4372
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4373
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4374
	self writeError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4375
	^ self
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4376
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4377
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4378
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4379
    self argumentMustBeInteger
10
claus
parents: 5
diff changeset
  4380
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4381
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4382
!ExternalStream methodsFor:'positioning'!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4383
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4384
position
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4385
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4386
!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4387
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4388
position:index0Based
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4389
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4390
! !
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4391
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4392
!ExternalStream methodsFor:'printing & storing'!
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4393
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4394
printOn:aStream
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4395
    aStream
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4396
	nextPutAll:self className;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4397
	nextPutAll:'(handle:('.
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4398
    handle printOn:aStream.
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4399
    aStream nextPutAll:'))'
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4400
! !
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4401
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4402
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4403
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4404
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4405
    hitEOF := false
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4406
! !
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4407
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4408
!ExternalStream protectedMethodsFor:'private'!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4409
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4410
closeFile
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4411
    "low level close - may be redefined in subclasses
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4412
     Don't send this message, send #close instead"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4413
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4414
    |fp error|
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4415
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4416
%{
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4417
    if ((__INST(handleType) == nil) 
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4418
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4419
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4420
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4421
        if ((fp = __INST(handle)) == nil) {
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4422
            error = @symbol(errorNotOpen);
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4423
        } else {
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4424
            FILEPOINTER f = __FILEVal(fp);
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4425
            int rslt;
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4426
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4427
            // whether the fclose() will be successful or not - the handle is invalid now!
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4428
            __INST(handle) = nil;
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4429
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4430
            if (@global(FileOpenTrace) == true) {
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4431
                fprintf(stderr, "fclose [ExternalStream] %"_lx_"\n", (INT)f);
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4432
            }
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4433
#ifdef WIN32
16302
6e87ae369992 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16300
diff changeset
  4434
            if (__INST(mode) != @symbol(readonly) && __INST(buffered) != false) {
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4435
                // do a fflush() first, so that fclose() doesn't block
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4436
                // we suspect, that EINTR causes problems in fclose()
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4437
                do {
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4438
                    __threadErrno = 0;
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4439
                    rslt = __STX_C_CALL1("fflush", fflush, f);
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4440
                } while((rslt < 0) && (__threadErrno == EINTR));
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4441
            }
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4442
            do {
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4443
                __threadErrno = 0;
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4444
                rslt = __STX_C_NOINT_CALL1("fclose", fclose, f);
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4445
            } while((rslt < 0) && (__threadErrno == EINTR));
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4446
#else
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4447
            __BEGIN_INTERRUPTABLE__
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4448
            rslt = fclose(f);
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4449
            __END_INTERRUPTABLE__
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4450
#endif
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4451
            if (rslt < 0) {
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4452
                error = __mkSmallInteger(__threadErrno);
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4453
                goto out;
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4454
            }
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4455
        }
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4456
        RETURN (self);
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4457
    }
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4458
out:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4459
%}.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4460
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4461
    error notNil ifTrue:[
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4462
        error == #errorNotOpen ifTrue:[
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4463
            self errorNotOpen.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4464
        ].
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4465
        error isInteger ifTrue:[
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4466
            lastErrorNumber := error.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4467
            self writeError:error.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4468
            ^ self.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4469
        ].
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4470
        self primitiveFailed:error.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4471
        ^ self.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4472
    ].
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4473
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4474
    "/ fallback for rel5
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4475
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4476
    fp := handle.
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4477
    fp notNil ifTrue:[
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4478
        handle := nil.
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4479
        self closeFile:fp
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4480
    ]
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4481
! !
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4482
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4483
!ExternalStream methodsFor:'private'!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4484
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4485
closeFile:handle
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4486
    "for rel5 only"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4487
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4488
    self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4489
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4490
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4491
connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4492
    "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
  4493
     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
  4494
     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
  4495
     a Stream object.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4496
     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
  4497
     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
  4498
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4499
    |retVal error openmode|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4500
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4501
    handle notNil ifTrue:[^ self errorAlreadyOpen].
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4502
    mode := modeSymbol.
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4503
    openmode := self fopenMode.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4504
%{
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4505
    FILEPOINTER f = 0;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4506
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4507
    FILE *fdopen();
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4508
    int fd = -2;
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4509
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4510
    if (__isStringLike(openmode)) {
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4511
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4512
	__stxWrapApiEnterCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4513
#endif
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4514
	if (__isSmallInteger(aFileDescriptor)) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4515
	    fd = __intVal(aFileDescriptor);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4516
	}
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4517
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4518
	else if (__isExternalAddressLike(aFileDescriptor)) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4519
	    fd = _open_osfhandle((long)__externalAddressVal(aFileDescriptor), O_BINARY);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4520
	    if (fd < 0) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4521
		if (__threadErrno == 0) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4522
		    // no more file descriptors
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4523
		    __threadErrno = EMFILE;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4524
		}
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4525
		error = __mkSmallInteger(__threadErrno);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4526
		__stxWrapApiLeaveCritical();
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4527
		goto out;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4528
	    }
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4529
	}
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4530
#endif
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4531
	f = (FILEPOINTER) fdopen(fd, (char *)__stringVal(openmode));
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4532
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4533
	__stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4534
#endif
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4535
	if (f == NULL) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4536
	    error =__mkSmallInteger(__threadErrno);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4537
	} else {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4538
	    if (@global(FileOpenTrace) == true) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4539
		fprintf(stderr, "fdopen [ExternalStream] %d (%"_lx_") -> %x\n", fd, fd, (INT)f);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4540
	    }
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4541
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4542
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4543
	    retVal = self;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4544
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4545
    }
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4546
out:;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4547
%}.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4548
    retVal notNil ifTrue:[
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4549
	position := 0.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4550
	buffered isNil ifTrue:[
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4551
	    buffered := true.       "default is buffered"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4552
	].
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4553
	handleType := handleTypeSymbol.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4554
	Lobby register:self.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4555
	^ retVal
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4556
    ].
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4557
    error notNil ifTrue:[
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4558
	OperatingSystem closeFd:aFileDescriptor.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4559
	lastErrorNumber := error.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4560
	position := nil.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4561
	"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4562
	 the open failed for some reason ...
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4563
	"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4564
	^ self openError:error
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4565
    ].
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4566
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4567
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4568
dupFd
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4569
    "duplicate my file descriptor"
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4570
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4571
    |fd dupFd|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4572
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4573
    fd := self fileHandle.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4574
    dupFd := OperatingSystem dup:fd.
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4575
    self setFileHandle:dupFd mode:self fopenMode.
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4576
!
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4577
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4578
fopenMode
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4579
   "answer the mode for fopen.
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4580
    Only used internally"
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4581
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4582
   mode == #readonly ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4583
	^ ReadMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4584
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4585
   mode == #writeonly ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4586
	^ WriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4587
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4588
   mode == #readWrite ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4589
	^ ReadWriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4590
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4591
   mode == #append ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4592
	^ AppendMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4593
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4594
   ^ ReadWriteMode
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4595
!
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4596
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4597
open:aPath withMode:openModeString
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4598
    "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
  4599
     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
  4600
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4601
    |ok error|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4602
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4603
    ok := false.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4604
%{
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4605
    FILE *f;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4606
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4607
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4608
    if (__isStringLike(aPath) && __isStringLike(openModeString)) {
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4609
#ifdef WIN32
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  4610
# if 1
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4611
       f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4612
# else
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4613
	__BEGIN_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4614
	do {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4615
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4616
	} while ((f == NULL) && (__threadErrno == EINTR));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4617
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4618
# endif
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4619
#else /* UNIX */
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4620
	__BEGIN_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4621
	do {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4622
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4623
	} while ((f == NULL) && (__threadErrno == EINTR));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4624
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4625
#endif /* UNIX */
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4626
	if (f == NULL) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4627
	    error = __mkSmallInteger(__threadErrno);
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4628
	} else {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4629
	    if (@global(FileOpenTrace) == true) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4630
		fprintf(stderr, "fopen %s [ExternalStream] -> %"_lx_"\n", __stringVal(aPath), (INT)f);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4631
	    }
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4632
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4633
	    __INST(handleType) = @symbol(filePointer);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4634
	    ok = true;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4635
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4636
    }
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4637
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4638
    ok ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4639
	position := 0.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4640
	Lobby register:self.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4641
	^ self.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4642
    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4643
    error notNil ifTrue:[
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4644
	"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4645
	 the open failed for some reason ...
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4646
	"
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4647
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4648
	self openError:error.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4649
    ].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4650
    self primitiveFailed.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4651
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4652
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4653
reOpen
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4654
    "USERS WILL NEVER INVOKE THIS METHOD
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4655
     sent after snapin to reopen streams.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4656
     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
  4657
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4658
    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
  4659
    handle := nil.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4660
    Lobby unregister:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4661
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4662
    "Modified: 10.1.1997 / 17:50:44 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4663
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4664
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4665
setAccessor:what to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4666
    "set the filePointer/fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4667
     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
  4668
     externally provided handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4669
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4670
    handle := something.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4671
    handleType := what.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4672
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4673
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4674
setFileDescriptor:anInteger mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4675
    "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
  4676
     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
  4677
     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
  4678
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4679
    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
  4680
!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4681
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4682
setFileHandle:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4683
    "set the fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4684
     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
  4685
     externally provided file handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4686
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4687
    self setAccessor:#fileHandle to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4688
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4689
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4690
setFileHandle:anIntegerOrExternalAddress mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4691
    "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
  4692
     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
  4693
     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
  4694
     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
  4695
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4696
%{
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4697
    FILEPOINTER f;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4698
    OBJ fp;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4699
    FILE *fdopen();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4700
    int fd;
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4701
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4702
    if (!__isStringLike(openMode))
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4703
	goto err;
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4704
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4705
#ifdef WIN32
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4706
    __stxWrapApiEnterCritical();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4707
    if (__isExternalAddressLike(anIntegerOrExternalAddress) ) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4708
	HANDLE __fileHandle = (HANDLE)__externalAddressVal(anIntegerOrExternalAddress);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4709
	fd = _open_osfhandle((long)__fileHandle, O_BINARY);      /* should we handle readonly, append or text mode? */
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4710
	if (fd < 0) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4711
	    __stxWrapApiLeaveCritical();
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4712
	    CloseHandle(__fileHandle);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4713
	    goto err;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4714
	}
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4715
    } else
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4716
#endif
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4717
    if (__isSmallInteger(anIntegerOrExternalAddress)) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4718
	fd = __smallIntegerVal(anIntegerOrExternalAddress);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4719
    } else {
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4720
#ifdef WIN32
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4721
	__stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4722
#endif
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4723
	goto err;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4724
    }
10997
8ec53332c725 _fdopen -> fdopen()
Stefan Vogel <sv@exept.de>
parents: 10995
diff changeset
  4725
    f = fdopen(fd, __stringVal(openMode));
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4726
#ifdef WIN32
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4727
    __stxWrapApiLeaveCritical();
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4728
#endif
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4729
    if (f != NULL) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4730
	if (@global(FileOpenTrace) == true) {
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4731
	    fprintf(stderr, "fdopen [ExternalStream] %d -> %"_lx_"\n", fd, (INT)f);
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4732
	}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4733
	fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4734
	__INST(handleType) = @symbol(filePointer);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4735
	RETURN (self);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4736
    }
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4737
err:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4738
%}.
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4739
    ^ self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4740
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4741
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4742
setFilePointer:something
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4743
    "set the filePointer to the given one;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4744
     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
  4745
     externally provided file."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4746
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4747
    self setAccessor:#filePointer to:something
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
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4750
setLastError:aNumber
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4751
    lastErrorNumber := aNumber
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4752
!
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
setSocketHandle:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4755
    "set the socketHandle to the given one;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4756
     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
  4757
     externally provided socket handle."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4758
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4759
    self setAccessor:#socketHandle to:something
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4760
! !
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4761
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4762
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4763
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4764
isBinary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4765
    "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
  4766
     The default when created is false."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4767
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4768
    ^ binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4769
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4770
7804
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4771
isBlocking
15488
80a593f61f73 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15468
diff changeset
  4772
    "return true, if O_NONBLOCK is NOT set in the fileDescriptor (probably UNIX specific)"
7804
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4773
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4774
    handle isNil ifTrue:[^ self errorNotOpen].
7804
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4775
    ^ OperatingSystem isBlockingOn:self fileDescriptor
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4776
!
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4777
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4778
isExternalStream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4779
    "return true, if the receiver is some kind of externalStream;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4780
     true is returned here - the method redefined from Object."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4781
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4782
    ^ true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4783
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4784
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4785
isOpen
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4786
    "return true, if this stream is open"
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4787
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4788
    ^ handle notNil
3863
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4789
!
af67e6995a4a added #isOpen query
Claus Gittinger <cg@exept.de>
parents: 3682
diff changeset
  4790
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4791
isReadable
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4792
    "return true, if this stream can be read from"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4793
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4794
    ^ (mode ~~ #writeonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4795
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4796
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4797
isWritable
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4798
    "return true, if this stream can be written to"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4799
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4800
    ^ (mode ~~ #readonly)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4801
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4802
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4803
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4804
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4805
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4806
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4807
     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
  4808
     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
  4809
     - see #pastEndRead."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4810
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4811
    |c error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4812
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4813
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4814
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4815
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4816
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4817
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4818
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4819
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4820
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4821
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4822
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4823
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4824
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4825
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4826
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4827
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4828
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4829
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4830
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4831
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4832
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4833
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4834
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4835
		pos = __INST(position);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4836
		if (__isSmallInteger(pos)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4837
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4838
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4839
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4840
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4841
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4842
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4843
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4844
		    RETURN ( __mkSmallInteger(ch) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4845
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4846
		RETURN ( __MKCHARACTER(ch) );
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4847
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4848
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4849
	    __INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4850
	    if (ret < 0) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4851
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4852
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4853
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4854
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4855
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4856
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4857
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4858
    hitEOF == true ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4859
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4860
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4861
	^ self readError:error
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4862
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4863
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4864
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4865
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4866
    readAhead notNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4867
	c := readAhead.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4868
	readAhead := nil.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4869
	^ c.
5420
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
    c := self nextByteFromFile:handle.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4872
    c isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4873
	^ self pastEndRead.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  4874
    ].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4875
    binary == true ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4876
	^ c
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4877
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  4878
    ^ Character value:c
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4879
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4880
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4881
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4882
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4883
     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
  4884
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4885
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4886
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4887
    binary ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4888
	coll := ByteArray uninitializedNew:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4889
    ] ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4890
	coll := String new:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4891
    ].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4892
    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
  4893
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4894
    "/ for readStream protocol compatibility,
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4895
    "/ we must raise an exception here.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4896
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4897
    nRead < count ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4898
	^ self pastEndRead
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4899
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4900
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4901
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  4902
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4903
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4904
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4905
nextOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4906
    "return the next element; advance read position.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4907
     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
  4908
     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
  4909
     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
  4910
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4911
    |c error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4912
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4913
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4914
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4915
    OBJ pos, fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4916
    unsigned char ch;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4917
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4918
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4919
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4920
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4921
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4922
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4923
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4924
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4925
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4926
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4927
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4928
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4929
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4930
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4931
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4932
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4933
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4934
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4935
		pos = __INST(position);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4936
		if (__isSmallInteger(pos)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4937
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4938
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4939
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4940
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4941
		    __INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4942
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4943
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4944
		    RETURN ( __mkSmallInteger(ch) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4945
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4946
		RETURN ( __MKCHARACTER(ch) );
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4947
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4948
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4949
	    __INST(position) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4950
	    if (ret < 0) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4951
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4952
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4953
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4954
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4955
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4956
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4957
%}.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4958
    hitEOF == true ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4959
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4960
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4961
	^ self readError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4962
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4963
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4964
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4965
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4966
    readAhead notNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4967
	c := readAhead.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4968
	readAhead := nil.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4969
	^ c.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4970
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4971
    c := self nextByteFromFile:handle.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4972
    c isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4973
	^ nil.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4974
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4975
    binary == true ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4976
	^ c
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4977
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4978
    ^ Character value:c
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4979
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  4980
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4981
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4982
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4983
     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
  4984
     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
  4985
     - see #pastEndRead."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4986
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4987
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4988
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4989
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4990
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  4991
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4992
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4993
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4994
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  4995
    if ((ra = __INST(readAhead)) != nil) {
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4996
	if (__INST(binary) == true) {
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4997
	    RETURN ( ra );
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4998
	}
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  4999
	c = __intVal(ra);
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5000
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5001
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5002
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5003
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5004
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5005
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5006
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5007
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5008
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5009
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5010
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5011
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5012
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5013
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5014
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5015
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5016
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5017
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5018
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5019
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5020
		__UNGETC__(c, f, _buffered);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5021
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5022
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5023
		    RETURN ( __mkSmallInteger(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5024
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5025
		RETURN ( __MKCHARACTER(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5026
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5027
	    if (ret < 0) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5028
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5029
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5030
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5031
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5032
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5033
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  5034
%}.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5035
    hitEOF == true ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5036
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5037
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5038
	^ self readError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5039
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5040
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5041
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5042
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5043
    readAhead isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5044
	readAhead := self nextOrNil.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5045
	readAhead isNil ifTrue:[
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5046
	    ^ self pastEndRead.
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5047
	].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5048
    ].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5049
    ^ readAhead
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5050
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5051
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5052
peekOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5053
    "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
  5054
     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
  5055
     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
  5056
     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
  5057
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5058
    |error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5059
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5060
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5061
    unsigned char c;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5062
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5063
    OBJ fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5064
    OBJ ra;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5065
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5066
    if ((ra = __INST(readAhead)) != nil) {
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5067
	if (__INST(binary) == true) {
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5068
	    RETURN ( ra );
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5069
	}
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5070
	c = __intVal(ra);
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5071
	RETURN ( __MKCHARACTER(c) );
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5072
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5073
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5074
    __INST(lastErrorNumber) = nil;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5075
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5076
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5077
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5078
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5079
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5080
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5081
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5082
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5083
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5084
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5085
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5086
		__READING__(f)
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5087
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5088
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5089
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5090
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5091
		__UNGETC__(c, f, _buffered);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5092
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5093
		if (__INST(binary) == true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5094
		    RETURN ( __mkSmallInteger(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5095
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5096
		RETURN ( __MKCHARACTER(c) );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5097
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5098
	    if (ret < 0) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5099
		error = __mkSmallInteger(__threadErrno);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5100
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5101
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5102
	    }
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5103
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5104
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5105
%}.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5106
    hitEOF == true ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5107
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5108
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5109
	^ self readError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5110
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5111
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5112
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5113
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5114
    readAhead isNil ifTrue:[
10450
bb40b56ed6b6 Remove unused stat() redefinition
Stefan Vogel <sv@exept.de>
parents: 10361
diff changeset
  5115
	readAhead := self nextOrNil.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5116
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5117
    ^ readAhead
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5118
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5119
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5120
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5121
    "return a collection of the elements up-to the end.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5122
     Return nil if the stream-end is reached before."
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5123
6569
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  5124
    |answerStream buffer count|
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  5125
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  5126
    buffer := self contentsSpecies new:4096.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5127
    [self atEnd] whileFalse:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5128
	count := self nextAvailableBytes:4096 into:buffer startingAt:1.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5129
	count ~~ 0 ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5130
	    answerStream isNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5131
		answerStream := WriteStream with:buffer.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5132
		answerStream position:count.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5133
		buffer := self contentsSpecies new:4096.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5134
	    ] ifFalse:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5135
		answerStream nextPutAll:buffer startingAt:1 to:count.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5136
	    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5137
	].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5138
    ].
6758
bc933037a1dc oops - upToEnd failed if already at the end
Claus Gittinger <cg@exept.de>
parents: 6661
diff changeset
  5139
    answerStream isNil ifTrue:[^ self contentsSpecies new].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5140
    ^ answerStream contents
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5141
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5142
    "
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5143
     ('smalltalk.rc' asFilename readStream upToEnd)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5144
     =
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5145
     ('smalltalk.rc' asFilename readStream contentsOfEntireFile)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5146
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5147
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5148
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5149
!ExternalStream methodsFor:'rel5 protocol'!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5150
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5151
atEndFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5152
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5153
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5154
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5155
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5156
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5157
nextByteFromFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5158
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5159
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5160
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5161
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5162
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5163
nextPutByte:aByte toFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5164
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5165
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5166
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5167
! !
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5168
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5169
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5170
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5171
atEnd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5172
    "return true, if position is at end"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5173
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5174
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5175
    FILEPOINTER f;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5176
    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
  5177
    char c;
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  5178
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5179
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5180
    if (__INST(hitEOF) == true) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5181
	RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5182
    }
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5183
    pos = __INST(position);
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5184
    lim = __INST(readLimit);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5185
    if (lim != nil) {
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5186
	off_t _pos, _readLimit;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5187
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5188
	_pos = __signedLongIntVal(pos);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5189
	_pos = _pos - __intVal( @global(PositionableStream:ZeroPosition)) + 1;
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5190
	_readLimit = __signedLongIntVal(lim);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5191
	if (_pos > _readLimit) {
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5192
	    RETURN (true);
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5193
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5194
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5195
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5196
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5197
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5198
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5199
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5200
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5201
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5202
	if ((fp = __INST(handle)) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5203
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5204
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5205
		__READING__(f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5206
	    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5207
		if (__INST(readAhead) != nil) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5208
		    RETURN (false);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5209
		}
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5210
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5211
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5212
	    /*
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5213
	     * read ahead ...
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5214
	     */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5215
	    do {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5216
#ifdef WIN32
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  5217
# if 1
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5218
		__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
  5219
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5220
# else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5221
		__BEGIN_INTERRUPTABLE__
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5222
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5223
		__END_INTERRUPTABLE__
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5224
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5225
#else /* not WIN32 */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5226
		__BEGIN_INTERRUPTABLE__
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5227
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5228
		__END_INTERRUPTABLE__
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  5229
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5230
	    } 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
  5231
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5232
#if defined(WIN32) && defined(EPIPE)
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5233
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5234
		if (__threadErrno == EPIPE) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5235
		    ret = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5236
		    __threadErrno = 0;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5237
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5238
		if (__threadErrno == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5239
		    ret = 0;   /* how comes ? */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5240
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5241
	    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5242
#endif
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5243
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5244
		__UNGETC__(c&0xff, f, _buffered);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5245
		RETURN (false);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5246
	    }
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 (ret == 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5249
		__INST(hitEOF) = true;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5250
		RETURN (true);
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
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5253
	    /* ret < 0 */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5254
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5255
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5256
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5257
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5258
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5259
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5260
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5261
    readAhead notNil ifTrue:[^ false].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5262
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5263
    "/ migration support
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5264
    ^ self
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5265
	atEndFile:handle
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5266
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5267
    "Modified: / 30.10.1998 / 20:16:06 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5268
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5269
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5270
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5271
    "return true, if any data is available for reading (i.e.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5272
     a read operation will not block the smalltalk process), false otherwise."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5273
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5274
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5275
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5276
    readAhead notNil ifTrue:[^ true].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5277
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5278
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5279
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5280
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5281
    ^ OperatingSystem readCheck:fd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5282
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
     |pipe|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5285
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5286
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5287
     pipe canReadWithoutBlocking ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5288
	 Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5289
     ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5290
	 Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5291
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5292
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5293
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5294
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5295
    "Modified: 25.9.1997 / 13:08:45 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5296
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5297
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5298
canWriteWithoutBlocking
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5299
    "return true, if data can be written into the stream
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5300
     (i.e. a write operation will not block the smalltalk process)."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5301
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5302
    |fd|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5303
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5304
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5305
    mode == #readonly ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5306
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5307
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5308
    ^ OperatingSystem writeCheck:fd
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5309
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5310
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5311
gotErrorOrEOF
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5312
    "answerv true, if amn error or eof has been occured on the stream"
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5313
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5314
    ^ hitEOF == true or:[lastErrorNumber notNil]
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5315
!
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5316
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5317
nextError
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5318
    "return the error by trying to read something.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5319
     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
  5320
     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
  5321
     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
  5322
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5323
%{ /*NOCONTEXT*/
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5324
    FILEPOINTER f;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5325
    int ret, _buffered;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5326
    OBJ fp;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5327
    unsigned char ch;
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5328
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5329
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5330
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5331
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5332
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5333
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5334
	    && (__INST(mode) != @symbol(writeonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5335
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5336
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5337
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5338
	    _buffered = (__INST(buffered) == true);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5339
	    if (_buffered) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5340
		__READING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5341
	    }
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5342
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5343
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5344
	    if (ret > 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5345
		RETURN(nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5346
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5347
	    if (ret < 0) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5348
		RETURN(__mkSmallInteger(__threadErrno));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5349
	    } else /* ret == 0 */ {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5350
		RETURN(__mkSmallInteger(0)); /* EOF */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5351
	    }
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5352
	}
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5353
    }
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5354
%}.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5355
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5356
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5357
numAvailable
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5358
    "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
  5359
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5360
    |fd|
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5361
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5362
    handle isNil ifTrue:[^ self errorNotOpen].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5363
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5364
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5365
    fd := self fileDescriptor.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5366
    ^ OperatingSystem numAvailableForReadOn:fd.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5367
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5368
"/    self atEnd ifTrue:[^ 0].
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5369
"/    self canReadWithoutBlocking ifTrue:[
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5370
"/        ^ 1
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5371
"/    ].
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  5372
"/    ^ 0
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5373
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5374
    "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
  5375
    "Modified: / 4.2.1998 / 17:31:11 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5376
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5377
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5378
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5379
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5380
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5381
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5382
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5383
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5384
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5385
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5386
readWaitWithTimeoutMs:timeout
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5387
    "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
  5388
     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
  5389
     If data is already available, return immediate.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5390
     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
  5391
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5392
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5393
    |fd inputSema hasData wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5394
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5395
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5396
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5397
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5398
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5399
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5400
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5401
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5402
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5403
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5404
    hasData := OperatingSystem readCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5405
    hasData ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5406
	inputSema := Semaphore new name:'readWait'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5407
	[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5408
	    timeout notNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5409
		Processor signal:inputSema afterMilliseconds:timeout
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5410
	    ].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5411
	    Processor signal:inputSema onInput:fd.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5412
	    Processor activeProcess state:#ioWait.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5413
	    inputSema wait.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5414
	    Processor disableSemaphore:inputSema.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5415
	    hasData := OperatingSystem readCheck:fd
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5416
	] ifCurtailed:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5417
	    Processor disableSemaphore:inputSema.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5418
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5419
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5420
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5421
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5422
    ^ hasData not
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
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5425
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5426
    "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
  5427
     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
  5428
     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
  5429
     Return immediate if the receiver is already ready.
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5430
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5431
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5432
    |fd sema canReadWrite wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5433
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5434
    handle isNil ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5435
	^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5436
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5437
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5438
    fd := self fileDescriptor.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5439
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5440
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5441
    wasBlocked := OperatingSystem blockInterrupts.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5442
    canReadWrite := OperatingSystem readWriteCheck:fd.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5443
    canReadWrite ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5444
	sema := Semaphore new name:'readWriteWait'.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5445
	[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5446
	    timeout notNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5447
		Processor signal:sema afterMilliseconds:timeout
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5448
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5449
	    Processor signal:sema onOutput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5450
	    Processor signal:sema onInput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5451
	    Processor activeProcess state:#ioWait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5452
	    sema wait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5453
	    Processor disableSemaphore:sema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5454
	    canReadWrite := OperatingSystem readWriteCheck:fd
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5455
	] ifCurtailed:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5456
	    Processor disableSemaphore:sema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5457
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5458
	]
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5459
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5460
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5461
    ^ canReadWrite not
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5462
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5463
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5464
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5465
    "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
  5466
     becomes ready for writing or a timeout (in milliseconds) expired.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5467
     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
  5468
     Return immediate if the receiver is already ready.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5469
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5470
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5471
    |fd outputSema canWrite wasBlocked|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5472
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5473
    handle isNil ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5474
	^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5475
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5476
    mode == #readonly ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5477
	^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5478
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5479
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5480
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5481
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5482
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5483
    wasBlocked := OperatingSystem blockInterrupts.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5484
    canWrite := OperatingSystem writeCheck:fd.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5485
    canWrite ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5486
	outputSema := Semaphore new name:'writeWait'.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5487
	[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5488
	    timeout notNil ifTrue:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5489
		Processor signal:outputSema afterMilliseconds:timeout
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5490
	    ].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5491
	    Processor signal:outputSema onOutput:fd.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5492
	    Processor activeProcess state:#ioWait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5493
	    outputSema wait.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5494
	    Processor disableSemaphore:outputSema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5495
	    canWrite := OperatingSystem writeCheck:fd
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5496
	] ifCurtailed:[
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5497
	    Processor disableSemaphore:outputSema.
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5498
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  5499
	]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5500
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5501
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5502
    ^ canWrite not
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5503
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5504
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5505
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5506
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5507
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5508
    "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
  5509
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5510
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5511
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5512
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5513
    int len, cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5514
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5515
    char *cp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5516
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5517
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5518
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5519
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5520
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5521
	__INST(lastErrorNumber) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5522
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5523
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5524
	    && (__INST(binary) != true)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5525
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5526
	    f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5527
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5528
	    if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5529
		__WRITING__(f)
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5530
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5531
	    {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5532
		OBJ mode = __INST(eolMode);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5533
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5534
		if (mode == @symbol(cr)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5535
		    cp = "\r"; len = 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5536
		} else if (mode == @symbol(crlf)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5537
		    cp = "\r\n"; len = 2;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5538
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5539
		    cp = "\n"; len = 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5540
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5541
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5542
#ifdef WIN32
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5543
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5544
		cnt = __win32_fwrite(cp, 1, len, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5545
	    } else
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5546
#endif
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5547
	    {
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5548
		__WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5549
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5550
	    if (cnt == len) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5551
		if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5552
		    INT np = __intVal(__INST(position)) + len;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5553
		    OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5554
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5555
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5556
		} else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5557
		    __INST(position) = nil; /* i.e: dont know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5558
		}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5559
		RETURN ( self );
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5560
	    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5561
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  5562
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5563
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5564
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5565
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5566
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5567
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5568
    (binary==true) ifTrue:[self errorBinary. ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5569
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5570
    (eolMode == #cr) ifTrue:[self nextPut:(Character return). ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5571
    (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
  5572
    self nextPut:(Character return).
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5573
    self nextPut:(Character nl).
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5574
    ^ self
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5575
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5576
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5577
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5578
    "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
  5579
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5580
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5581
    OBJ fp;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5582
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5583
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5584
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5585
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5586
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5587
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5588
	if ((fp = __INST(handle)) != nil) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5589
	    if (__INST(mode) != @symbol(readonly)) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5590
		if (__INST(buffered) == true) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5591
		    FILEPOINTER f = __FILEVal(fp);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5592
#ifdef WIN32
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5593
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5594
			__win32_fflush(f);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5595
		    } else {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5596
			int rslt;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5597
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5598
			do {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5599
			    __threadErrno = 0;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5600
			    rslt = __STX_C_CALL1("fflush", fflush, f);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5601
			} while((rslt < 0) && (__threadErrno == EINTR));
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5602
		    }
12678
662465401b77 changed:
Stefan Vogel <sv@exept.de>
parents: 12674
diff changeset
  5603
#else /* ! WIN32 */
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5604
		    __BEGIN_INTERRUPTABLE__
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5605
		    FFLUSH(f);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5606
		    __END_INTERRUPTABLE__
12678
662465401b77 changed:
Stefan Vogel <sv@exept.de>
parents: 12674
diff changeset
  5607
#endif /* ! WIN32 */
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5608
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5609
	    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5610
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5611
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5612
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5613
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5614
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5615
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5616
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5617
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5618
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5619
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5620
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5621
    FILEPOINTER f;
8209
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  5622
    unsigned codePoint;
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  5623
    unsigned char c;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5624
    int cnt, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5625
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5626
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5627
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5628
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5629
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5630
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5631
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5632
	if (((fp = __INST(handle)) != nil)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5633
	    && (__INST(mode) != @symbol(readonly))
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5634
	) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5635
	    if (__INST(binary) != true) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5636
		if (__isCharacter(aCharacter)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5637
		    codePoint = __intVal(__characterVal(aCharacter));
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5638
		    if (codePoint <= 0xFF) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5639
			c = codePoint;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5640
    doWrite:
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5641
			f = __FILEVal(fp);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5642
			if (! f) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5643
			    fprintf(stderr, "oops - fileHandle is NULL in nextPut:\n");
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5644
			    __INST(handle) = nil;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5645
			    goto out;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5646
			}
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5647
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5648
			if (_buffered = (__INST(buffered) == true)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5649
			    __WRITING__(f)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5650
			}
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  5651
#ifdef WIN32
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5652
			if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5653
			    cnt = __win32_fwrite(&c, 1, 1, f);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5654
			} else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  5655
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5656
			__WRITEBYTE__(cnt, f, &c, _buffered, __INST(handleType));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5657
			if (cnt == 1) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5658
			    if (__isSmallInteger(__INST(position))) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5659
				INT np = __intVal(__INST(position)) + 1;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5660
				OBJ t;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5661
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5662
				t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5663
			    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5664
				__INST(position) = nil; /* i.e. do not know */
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5665
			    }
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5666
			    RETURN ( self );
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5667
			}
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5668
			error = __mkSmallInteger(__threadErrno);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5669
		    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5670
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5671
	    } else {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5672
		if (__isSmallInteger(aCharacter)) {
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5673
		    c = __intVal(aCharacter);
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5674
		    goto doWrite;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5675
		}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5676
	    }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5677
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5678
    }
7737
616d849b7838 fileHandle check
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  5679
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5680
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5681
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5682
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5683
	self writeError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5684
	^ self
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5685
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5686
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5687
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5688
    binary == true ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5689
	(aCharacter isCharacter not
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5690
	or:[aCharacter codePoint > 16rFF]) ifTrue:[
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5691
	    self argumentMustBeCharacter.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5692
	    ^ self.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5693
	].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5694
    ] ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5695
	aCharacter isInteger ifFalse:[
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5696
	    self argumentMustBeInteger.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5697
	    ^ self.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5698
	].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5699
    ].
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5700
    "/ migration support
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5701
    self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5702
	nextPutByte:aCharacter asInteger
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5703
	toFile:handle
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5704
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5705
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5706
nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5707
    "write all elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5708
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5709
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5710
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5711
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5712
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5713
    FILEPOINTER f;
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
  5714
    INT len, cnt;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5715
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5716
    int _buffered;
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
  5717
    INT o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5718
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5719
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5720
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5721
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5722
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5723
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5724
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5725
	if (((fp = __INST(handle)) != nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5726
	    && (__INST(mode) != @symbol(readonly))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5727
	) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5728
	    f = __FILEVal(fp);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5729
	    if (! f) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5730
		fprintf(stderr, "oops - fileHandle is NULL in nextPutAll:\n");
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5731
		__INST(handle) = nil;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5732
		goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5733
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5734
	    if (_buffered = (__INST(buffered) == true)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5735
		__WRITING__(f)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5736
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5737
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5738
	    if (__isStringLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5739
		len = __stringSize(aCollection);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5740
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5741
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5742
		    cnt = __win32_fwrite(__stringVal(aCollection), 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5743
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5744
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5745
		{
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5746
		    o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5747
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5748
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5749
	    } else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5750
		if (__INST(binary) == true) {
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
  5751
		    INT offs;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5752
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5753
		    if (__isByteArrayLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5754
			offs = 0;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5755
			len = __byteArraySize(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5756
		    } else if (__isBytes(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5757
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5758
			len = __byteArraySize(aCollection) - offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5759
		    } else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5760
			goto out;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5761
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5762
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5763
			cnt = __win32_fwrite(__stringVal(aCollection), 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5764
		    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5765
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5766
		    {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5767
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element) - (char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5768
			o_offs += offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5769
			__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5770
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5771
		} else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5772
		    goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5773
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5774
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5775
	    if (cnt == len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5776
		if (__isSmallInteger(__INST(position))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5777
		    INT np = __intVal(__INST(position)) + len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5778
		    OBJ t;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5779
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5780
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5781
		} else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5782
		    __INST(position) = nil; /* i.e. do not know */
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5783
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5784
		RETURN (self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5785
	    }
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5786
	    error = __mkSmallInteger(__threadErrno);
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5787
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5788
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5789
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5790
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5791
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5792
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5793
	self writeError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5794
	^ self
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5795
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5796
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5797
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5798
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5799
    ^ super nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5800
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5801
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5802
nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5803
    "write a range of elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5804
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5805
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5806
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5807
     |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5808
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5809
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5810
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5811
    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
  5812
    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
  5813
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5814
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5815
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5816
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5817
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5818
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5819
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5820
	if (((fp = __INST(handle)) != nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5821
	    && (__INST(mode) != @symbol(readonly))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5822
	    && __bothSmallInteger(start, stop)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5823
	) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5824
	    f = __FILEVal(fp);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5825
	    if (_buffered = (__INST(buffered) == true)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5826
		__WRITING__(f)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5827
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5828
	    iStart = __intVal(start);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5829
	    iStop = __intVal(stop);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5830
	    if ((iStart < 1) || (iStop < iStart)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5831
		RETURN(self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5832
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5833
	    if (__isStringLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5834
		len = __stringSize(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5835
		if (iStop > len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5836
		    RETURN(self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5837
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5838
		if (iStop > len)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5839
		    iStop = len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5840
		len = iStop - iStart + 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5841
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5842
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5843
		    cnt = __win32_fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5844
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5845
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5846
		{
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5847
		    o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5848
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs+iStart-1, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5849
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5850
	    } else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5851
		if (__INST(binary) == true) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5852
		    int offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5853
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5854
		    if (__isByteArrayLike(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5855
			offs = 0;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5856
			len = __byteArraySize(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5857
		    } else if (__isBytes(aCollection)) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5858
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5859
			len = __byteArraySize(aCollection) - offs;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5860
		    } else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5861
			goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5862
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5863
		    if (iStop > len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5864
			RETURN(self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5865
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5866
		    if (iStop > len)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5867
			iStop = len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5868
		    len = iStop - iStart + 1;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5869
		    offs += iStart - 1;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5870
#ifdef WIN32
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5871
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5872
			cnt = __win32_fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5873
		    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5874
#endif
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5875
		    {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5876
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element)-(char *)__InstPtr(aCollection);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5877
			__WRITEBYTES_OBJ__(cnt, f,  aCollection, o_offs+offs, len, _buffered, __INST(handleType));
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5878
		    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5879
		} else
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5880
		    goto out;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5881
	    }
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5882
	    if (cnt == len) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5883
		if (__isSmallInteger(__INST(position))) {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5884
		    INT np = __intVal(__INST(position)) + len;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5885
		    OBJ t;
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5886
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5887
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5888
		} else {
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5889
		    __INST(position) = nil; /* i.e. do not know */
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5890
		}
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5891
		RETURN (self);
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5892
	    }
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5893
	    error = __mkSmallInteger(__threadErrno);
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5894
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5895
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5896
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5897
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5898
    error notNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5899
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5900
	self writeError:error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5901
	^ self
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5902
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5903
    ^ super nextPutAll:aCollection startingAt:start to:stop
14662
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5904
!
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5905
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5906
nextPutAllUnicode:aString
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5907
    "normal streams can not handle multi-byte characters, so convert them to utf8.
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5908
     This is needed, so that you can do ('something' asUnicode16String errorPrintCR)"
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5909
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5910
    aString do:[:eachCharacter|
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5911
	self nextPutUtf8:eachCharacter.
14662
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5912
    ].
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5913
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5914
    "
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5915
	'Bönnigheim' asUnicode16String errorPrintCR
14662
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5916
    "
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5917
!
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5918
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5919
nextPutUnicode:aCharacter
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5920
    "normal streams can not handle multi-byte characters, so convert them to utf8"
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5921
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  5922
    self nextPutUtf8:aCharacter.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5923
!
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5924
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5925
nextPutUtf16:aCharacter
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5926
    "append my UTF-16 representation to the argument, aStream.
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5927
     UTF-16 can encode only characters with code points between 0 to 16r10FFFF."
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5928
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5929
    |codePoint|
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5930
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5931
    codePoint := aCharacter codePoint.
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5932
    (codePoint <= 16rD7FF
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5933
      or:[codePoint >= 16rE000 and:[codePoint <= 16rFFFF]]) ifTrue:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5934
	self nextPutShort:codePoint MSB:true.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5935
    ] ifFalse:[codePoint <= 16r10FFFF ifTrue:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5936
	|highBits lowBits|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5937
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5938
	codePoint := codePoint - 16r100000.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5939
	highBits := codePoint bitShift:-10.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5940
	lowBits := codePoint bitAnd:16r3FF.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5941
	self nextPutShort:highBits+16rD800 MSB:true.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5942
	self nextPutShort:lowBits+16rDC00 MSB:true.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5943
    ] ifFalse:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5944
	EncodingError raiseWith:aCharacter errorString:'Character cannot be encoded as UTF-16'.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5945
    ]].
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5946
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5947
    "
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5948
	(FileStream newTemporary
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5949
	    nextPutUtf16:$B;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5950
	    nextPutUtf16:$Ä;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5951
	    nextPutUtf16:(Character codePoint:16r10CCCC);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5952
	    reset;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5953
	    binary;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5954
	    contents)
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  5955
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5956
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5957
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  5958
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5959
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5960
version
16302
6e87ae369992 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16300
diff changeset
  5961
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.383 2014-04-04 08:18:36 stefan Exp $'
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5962
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5963
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5964
version_CVS
16302
6e87ae369992 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16300
diff changeset
  5965
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.383 2014-04-04 08:18:36 stefan Exp $'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  5966
! !
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  5967
14603
f73f90e25023 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14518
diff changeset
  5968
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5969
ExternalStream initialize!